The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Carlos, reference master (26ca89), with Swift 6.1 for watchOS using Xcode 16.3 on 26 Apr 2025 22:57:40 UTC.

Swift 6 data race errors: 12

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Carlos -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

========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/spring-media/Carlos.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/spring-media/Carlos
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 26ca894 Merge pull request #196 from spring-media/feature/migrate-to-action
Cloned https://github.com/spring-media/Carlos.git
Revision (git rev-parse @):
26ca894e3cef48a15b6da20803c31e5386ac45bd
SUCCESS checkout https://github.com/spring-media/Carlos.git at master
========================================
Build
========================================
Selected platform:         watchOS
Swift version:             6.1
Building package at path:  $PWD
https://github.com/spring-media/Carlos.git
https://github.com/spring-media/Carlos.git
{
  "dependencies" : [
    {
      "identity" : "quick",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.0.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Quick.git"
    },
    {
      "identity" : "nimble",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "9.2.0",
            "upper_bound" : "10.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Nimble.git"
    }
  ],
  "manifest_display_name" : "Carlos",
  "name" : "Carlos",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Carlos",
      "targets" : [
        "Carlos"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "CarlosTests",
      "module_type" : "SwiftTarget",
      "name" : "CarlosTests",
      "path" : "Tests/CarlosTests",
      "product_dependencies" : [
        "Quick",
        "Nimble"
      ],
      "sources" : [
        "BasicCacheTests.swift",
        "BasicFetcherTests.swift",
        "BatchTests.swift",
        "CacheProviderTests.swift",
        "CompositionTests.swift",
        "ConditionedCacheTests.swift",
        "ConditionedOneWayTransformationBoxTests.swift",
        "ConditionedOutputProcessingTests.swift",
        "ConditionedTransformersTests.swift",
        "ConditionedTwoWayTransformationBoxTests.swift",
        "ConditionedValueTransformationTests.swift",
        "DiskCacheTests.swift",
        "Fakes/Base64EncodedImage.swift",
        "Fakes/CacheLevelFake.swift",
        "Fakes/FetcherFake.swift",
        "FetcherValueTransformationTests.swift",
        "ImageTransformerTests.swift",
        "JSONTransformerTests.swift",
        "KeyTransformationTests.swift",
        "MKDistanceFormatterTransformerTests.swift",
        "MemoryCacheLevelTests.swift",
        "MemoryWarningNotificationTests.swift",
        "NSDateFormatterTransformerTests.swift",
        "NSNumberFormatterTransformerTests.swift",
        "NSUserDefaultsCacheLevelTests.swift",
        "NetworkFetcherTests.swift",
        "NormalizationTests.swift",
        "OneWayTransformationBoxTests.swift",
        "OneWayTransformerCompositionTests.swift",
        "PoolCacheTests.swift",
        "PostProcessTests.swift",
        "StringConvertibleTests.swift",
        "StringTransformerTests.swift",
        "SwitchCacheTests.swift",
        "TwoWayTransformationBoxTests.swift",
        "TwoWayTransformerCompositionTests.swift",
        "ValueTransformationTests.swift"
      ],
      "target_dependencies" : [
        "Carlos"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Carlos",
      "module_type" : "SwiftTarget",
      "name" : "Carlos",
      "path" : "Sources/Carlos",
      "product_memberships" : [
        "Carlos"
      ],
      "sources" : [
        "CacheLevels/BatchAllCache.swift",
        "CacheLevels/Composed.swift",
        "CacheLevels/Conditioned.swift",
        "CacheLevels/DiskCacheLevel.swift",
        "CacheLevels/Fetcher.swift",
        "CacheLevels/MemoryCacheLevel.swift",
        "CacheLevels/NSUserDefaultsCacheLevel.swift",
        "CacheLevels/NetworkFetcher.swift",
        "CacheLevels/PoolCache.swift",
        "CacheProvider.swift",
        "Carlos.swift",
        "Core/BasicCache.swift",
        "Core/BasicFetcher.swift",
        "Core/Errors.swift",
        "Core/ExpensiveObject.swift",
        "Core/Extensions.swift",
        "Core/FetcherValueTransformation.swift",
        "Core/FunctionComposition.swift",
        "Core/Logger.swift",
        "Core/MemoryWarning.swift",
        "Core/StringConvertible.swift",
        "Core/UnfairLock.swift",
        "Operations/CacheLevel+Batch.swift",
        "Operations/KeyTransformation.swift",
        "Operations/Normalize.swift",
        "Operations/PostProcess.swift",
        "Operations/SwitchCache.swift",
        "Operations/ValueTransformation.swift",
        "Transformers/ComposedOneWayTransformer.swift",
        "Transformers/ComposedTwoWayTransformer.swift",
        "Transformers/ConditionedOneWayTransformer.swift",
        "Transformers/ConditionedOutputProcessing.swift",
        "Transformers/ConditionedTwoWayTransformer.swift",
        "Transformers/ConditionedValueTransformation.swift",
        "Transformers/ImageTransformer.swift",
        "Transformers/JSONTransformer.swift",
        "Transformers/OneWayTransformer.swift",
        "Transformers/StringTransformer.swift",
        "Transformers/Transformers.swift",
        "Transformers/TwoWayTransformer.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Fetching from https://github.com/Quick/Quick.git
Fetching from https://github.com/Quick/Nimble.git
Creating working copy of package ‘Quick’
Checking out 3.0.0 of package ‘Quick’
Creating working copy of package ‘Nimble’
Checking out 8.1.2 of package ‘Nimble’
Resolved source packages:
  Nimble: https://github.com/Quick/Nimble.git @ 8.1.2
  Quick: https://github.com/Quick/Quick.git @ 3.0.0
resolved source packages: Nimble, Quick
{
  "dependencies" : [
    {
      "identity" : "quick",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.0.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Quick.git"
    },
    {
      "identity" : "nimble",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "9.2.0",
            "upper_bound" : "10.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Nimble.git"
    }
  ],
  "manifest_display_name" : "Carlos",
  "name" : "Carlos",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Carlos",
      "targets" : [
        "Carlos"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "CarlosTests",
      "module_type" : "SwiftTarget",
      "name" : "CarlosTests",
      "path" : "Tests/CarlosTests",
      "product_dependencies" : [
        "Quick",
        "Nimble"
      ],
      "sources" : [
        "BasicCacheTests.swift",
        "BasicFetcherTests.swift",
        "BatchTests.swift",
        "CacheProviderTests.swift",
        "CompositionTests.swift",
        "ConditionedCacheTests.swift",
        "ConditionedOneWayTransformationBoxTests.swift",
        "ConditionedOutputProcessingTests.swift",
        "ConditionedTransformersTests.swift",
        "ConditionedTwoWayTransformationBoxTests.swift",
        "ConditionedValueTransformationTests.swift",
        "DiskCacheTests.swift",
        "Fakes/Base64EncodedImage.swift",
        "Fakes/CacheLevelFake.swift",
        "Fakes/FetcherFake.swift",
        "FetcherValueTransformationTests.swift",
        "ImageTransformerTests.swift",
        "JSONTransformerTests.swift",
        "KeyTransformationTests.swift",
        "MKDistanceFormatterTransformerTests.swift",
        "MemoryCacheLevelTests.swift",
        "MemoryWarningNotificationTests.swift",
        "NSDateFormatterTransformerTests.swift",
        "NSNumberFormatterTransformerTests.swift",
        "NSUserDefaultsCacheLevelTests.swift",
        "NetworkFetcherTests.swift",
        "NormalizationTests.swift",
        "OneWayTransformationBoxTests.swift",
        "OneWayTransformerCompositionTests.swift",
        "PoolCacheTests.swift",
        "PostProcessTests.swift",
        "StringConvertibleTests.swift",
        "StringTransformerTests.swift",
        "SwitchCacheTests.swift",
        "TwoWayTransformationBoxTests.swift",
        "TwoWayTransformerCompositionTests.swift",
        "ValueTransformationTests.swift"
      ],
      "target_dependencies" : [
        "Carlos"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Carlos",
      "module_type" : "SwiftTarget",
      "name" : "Carlos",
      "path" : "Sources/Carlos",
      "product_memberships" : [
        "Carlos"
      ],
      "sources" : [
        "CacheLevels/BatchAllCache.swift",
        "CacheLevels/Composed.swift",
        "CacheLevels/Conditioned.swift",
        "CacheLevels/DiskCacheLevel.swift",
        "CacheLevels/Fetcher.swift",
        "CacheLevels/MemoryCacheLevel.swift",
        "CacheLevels/NSUserDefaultsCacheLevel.swift",
        "CacheLevels/NetworkFetcher.swift",
        "CacheLevels/PoolCache.swift",
        "CacheProvider.swift",
        "Carlos.swift",
        "Core/BasicCache.swift",
        "Core/BasicFetcher.swift",
        "Core/Errors.swift",
        "Core/ExpensiveObject.swift",
        "Core/Extensions.swift",
        "Core/FetcherValueTransformation.swift",
        "Core/FunctionComposition.swift",
        "Core/Logger.swift",
        "Core/MemoryWarning.swift",
        "Core/StringConvertible.swift",
        "Core/UnfairLock.swift",
        "Operations/CacheLevel+Batch.swift",
        "Operations/KeyTransformation.swift",
        "Operations/Normalize.swift",
        "Operations/PostProcess.swift",
        "Operations/SwitchCache.swift",
        "Operations/ValueTransformation.swift",
        "Transformers/ComposedOneWayTransformer.swift",
        "Transformers/ComposedTwoWayTransformer.swift",
        "Transformers/ConditionedOneWayTransformer.swift",
        "Transformers/ConditionedOutputProcessing.swift",
        "Transformers/ConditionedTwoWayTransformer.swift",
        "Transformers/ConditionedValueTransformation.swift",
        "Transformers/ImageTransformer.swift",
        "Transformers/JSONTransformer.swift",
        "Transformers/OneWayTransformer.swift",
        "Transformers/StringTransformer.swift",
        "Transformers/Transformers.swift",
        "Transformers/TwoWayTransformer.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
{
  "project" : {
    "configurations" : [
      "Debug",
      "Release"
    ],
    "name" : "Carlos",
    "schemes" : [
      "Carlos iOS",
      "Carlos macOS",
      "Carlos tvOS",
      "Carlos watchOS"
    ],
    "targets" : [
      "Carlos iOS",
      "Carlos iOS Tests",
      "Carlos macOS",
      "Carlos macOS Tests",
      "Carlos tvOS",
      "Carlos tvOS Tests",
      "Carlos watchOS"
    ]
  }
}
{
  "workspace" : {
    "name" : "spi-builder-workspace",
    "schemes" : [
      "Carlos"
    ]
  }
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Carlos -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
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme Carlos -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 settings from command line:
    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
Resolve Package Graph
Resolve Package Graph
Resolved source packages:
  Carlos: /Users/admin/builder/spi-builder-workspace
  Nimble: https://github.com/Quick/Nimble.git @ 9.2.1
  Quick: https://github.com/Quick/Quick.git @ 4.0.0
  CwlCatchException: https://github.com/mattgallagher/CwlCatchException.git @ 2.2.1
  CwlPreconditionTesting: https://github.com/mattgallagher/CwlPreconditionTesting.git @ 2.2.2
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (2 targets)
    Target 'Carlos' in project 'Carlos'
        ➜ Explicit dependency on target 'Carlos' in project 'Carlos'
    Target 'Carlos' in project 'Carlos' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: f30d652d74204f39b534a73b458ef282
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/f30d652d74204f39b534a73b458ef282.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.SwiftFileList (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.SwiftFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.LinkFileList (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.SwiftFileList (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.SwiftFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos_const_extract_protocols.json (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos_const_extract_protocols.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.LinkFileList (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos-OutputFileMap.json (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos-OutputFileMap.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos_const_extract_protocols.json (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos_const_extract_protocols.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.SwiftConstValuesFileList (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.SwiftConstValuesFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.SwiftConstValuesFileList (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.SwiftConstValuesFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos-OutputFileMap.json (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos-OutputFileMap.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos_const_extract_protocols.json (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos_const_extract_protocols.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.SwiftFileList (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.SwiftFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.SwiftConstValuesFileList (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.SwiftConstValuesFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.LinkFileList (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos-OutputFileMap.json (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos-OutputFileMap.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Carlos.modulemap (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Carlos.modulemap
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Carlos.DependencyStaticMetadataFileList (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Carlos.DependencyStaticMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Carlos.DependencyMetadataFileList (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Carlos.DependencyMetadataFileList
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Carlos.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Carlos.modulemap (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Carlos.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos
SwiftDriver Carlos normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Carlos -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos-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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.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/Carlos.build/Debug-watchos/Carlos.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos_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/Carlos.build/Debug-watchos/Carlos.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver Carlos normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Carlos -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos-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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.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/Carlos.build/Debug-watchos/Carlos.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos_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/Carlos.build/Debug-watchos/Carlos.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver Carlos normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Carlos -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos-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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.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/Carlos.build/Debug-watchos/Carlos.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos_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/Carlos.build/Debug-watchos/Carlos.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal armv7k Emitting\ module\ for\ Carlos (in target 'Carlos' from project 'Carlos')
EmitSwiftModule normal armv7k (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:24:9: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
        self.controlCapacity()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: warning: static property 'sharedDataCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, NSData>' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: note: add '@MainActor' to make static property 'sharedDataCache' part of global actor 'MainActor'
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: warning: static property 'sharedJSONCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, AnyObject>' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: note: add '@MainActor' to make static property 'sharedJSONCache' part of global actor 'MainActor'
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: warning: static property 'sharedImageCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, CarlosImage>' (aka 'BasicCache<URL, UIImage>') may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: note: add '@MainActor' to make static property 'sharedImageCache' part of global actor 'MainActor'
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: warning: static property 'output' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: convert 'output' to a 'let' constant to make 'Sendable' shared state immutable
  public static var output: (String, Level) -> Void = { msg, level in
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: add '@MainActor' to make static property 'output' part of global actor 'MainActor'
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:20:25: warning: capture of 'level' with non-sendable type 'Logger.Level' in a '@Sendable' closure
      print("[Carlos][\(level.rawValue)]: \(msg)")
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:6:15: note: consider making enum 'Level' conform to the 'Sendable' protocol
  public enum Level: String {
              ^
                           , Sendable
SwiftCompile normal armv7k Compiling\ BatchAllCache.swift,\ Composed.swift,\ Conditioned.swift,\ DiskCacheLevel.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/BatchAllCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Composed.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Conditioned.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/BatchAllCache.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Composed.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Conditioned.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:24:9: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
        self.controlCapacity()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:57:7: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
      self.calculateSize()
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:100:42: warning: 'unarchiveTopLevelObjectWithData' was deprecated in watchOS 5.0: Use unarchivedObject(ofClass:from:) instead
        let obj = try? NSKeyedUnarchiver.unarchiveTopLevelObjectWithData(data) as? T
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:150:7: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
      self.itemsInDirectory(self.path).forEach { filePath in
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:151:18: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in an isolated closure; this is an error in the Swift 6 language mode
        _ = try? self.fileManager.removeItem(atPath: filePath)
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:161:7: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
      self.removeFileAtPath(self.pathForKey(key))
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:161:45: warning: capture of 'key' with non-sendable type 'K' in a '@Sendable' closure
      self.removeFileAtPath(self.pathForKey(key))
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:35: note: consider making generic parameter 'K' conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                                  ^
                                                      , Sendable
SwiftCompile normal armv7k Compiling\ PoolCache.swift,\ CacheProvider.swift,\ Carlos.swift,\ BasicCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/PoolCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Carlos.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/PoolCache.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: warning: static property 'sharedDataCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, NSData>' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: note: add '@MainActor' to make static property 'sharedDataCache' part of global actor 'MainActor'
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: warning: static property 'sharedJSONCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, AnyObject>' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: note: add '@MainActor' to make static property 'sharedJSONCache' part of global actor 'MainActor'
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: warning: static property 'sharedImageCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, CarlosImage>' (aka 'BasicCache<URL, UIImage>') may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: note: add '@MainActor' to make static property 'sharedImageCache' part of global actor 'MainActor'
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
  nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Carlos.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ BasicFetcher.swift,\ Errors.swift,\ ExpensiveObject.swift,\ Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicFetcher.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/ExpensiveObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Extensions.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicFetcher.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Errors.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/ExpensiveObject.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Extensions.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Fetcher.swift,\ MemoryCacheLevel.swift,\ NSUserDefaultsCacheLevel.swift,\ NetworkFetcher.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Fetcher.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/MemoryCacheLevel.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NSUserDefaultsCacheLevel.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NetworkFetcher.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Fetcher.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/MemoryCacheLevel.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NSUserDefaultsCacheLevel.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NSUserDefaultsCacheLevel.swift:99:57: warning: 'unarchiveTopLevelObjectWithData' was deprecated in watchOS 5.0: Use unarchivedObject(ofClass:from:) instead
        if let unencodedObject = try? NSKeyedUnarchiver.unarchiveTopLevelObjectWithData(cachedValue) as? T {
                                                        ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NetworkFetcher.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ StringConvertible.swift,\ UnfairLock.swift,\ CacheLevel+Batch.swift,\ KeyTransformation.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/StringConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/UnfairLock.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/CacheLevel+Batch.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/KeyTransformation.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/StringConvertible.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/UnfairLock.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/CacheLevel+Batch.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/KeyTransformation.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ ComposedOneWayTransformer.swift,\ ComposedTwoWayTransformer.swift,\ ConditionedOneWayTransformer.swift,\ ConditionedOutputProcessing.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ComposedOneWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ComposedTwoWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedOneWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedOutputProcessing.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ComposedOneWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ComposedTwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedOneWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedOutputProcessing.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Normalize.swift,\ PostProcess.swift,\ SwitchCache.swift,\ ValueTransformation.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/Normalize.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/PostProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/SwitchCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/ValueTransformation.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/Normalize.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/PostProcess.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/SwitchCache.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/ValueTransformation.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ ConditionedTwoWayTransformer.swift,\ ConditionedValueTransformation.swift,\ ImageTransformer.swift,\ JSONTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedTwoWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedValueTransformation.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ImageTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/JSONTransformer.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedTwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedValueTransformation.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ImageTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/JSONTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ Carlos (in target 'Carlos' from project 'Carlos')
EmitSwiftModule normal arm64 (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:24:9: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
        self.controlCapacity()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: warning: static property 'sharedDataCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, NSData>' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: note: add '@MainActor' to make static property 'sharedDataCache' part of global actor 'MainActor'
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: warning: static property 'sharedJSONCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, AnyObject>' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: note: add '@MainActor' to make static property 'sharedJSONCache' part of global actor 'MainActor'
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: warning: static property 'sharedImageCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, CarlosImage>' (aka 'BasicCache<URL, UIImage>') may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: note: add '@MainActor' to make static property 'sharedImageCache' part of global actor 'MainActor'
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: warning: static property 'output' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: convert 'output' to a 'let' constant to make 'Sendable' shared state immutable
  public static var output: (String, Level) -> Void = { msg, level in
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: add '@MainActor' to make static property 'output' part of global actor 'MainActor'
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:20:25: warning: capture of 'level' with non-sendable type 'Logger.Level' in a '@Sendable' closure
      print("[Carlos][\(level.rawValue)]: \(msg)")
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:6:15: note: consider making enum 'Level' conform to the 'Sendable' protocol
  public enum Level: String {
              ^
                           , Sendable
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Carlos (in target 'Carlos' from project 'Carlos')
EmitSwiftModule normal arm64_32 (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:24:9: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
        self.controlCapacity()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: warning: static property 'sharedDataCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, NSData>' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: note: add '@MainActor' to make static property 'sharedDataCache' part of global actor 'MainActor'
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: warning: static property 'sharedJSONCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, AnyObject>' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: note: add '@MainActor' to make static property 'sharedJSONCache' part of global actor 'MainActor'
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: warning: static property 'sharedImageCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, CarlosImage>' (aka 'BasicCache<URL, UIImage>') may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: note: add '@MainActor' to make static property 'sharedImageCache' part of global actor 'MainActor'
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: warning: static property 'output' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: convert 'output' to a 'let' constant to make 'Sendable' shared state immutable
  public static var output: (String, Level) -> Void = { msg, level in
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: add '@MainActor' to make static property 'output' part of global actor 'MainActor'
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:20:25: warning: capture of 'level' with non-sendable type 'Logger.Level' in a '@Sendable' closure
      print("[Carlos][\(level.rawValue)]: \(msg)")
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:6:15: note: consider making enum 'Level' conform to the 'Sendable' protocol
  public enum Level: String {
              ^
                           , Sendable
SwiftDriverJobDiscovery normal arm64 Emitting module for Carlos (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 Compiling\ Normalize.swift,\ PostProcess.swift,\ SwitchCache.swift,\ ValueTransformation.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/Normalize.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/PostProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/SwitchCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/ValueTransformation.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/Normalize.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/PostProcess.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/SwitchCache.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/ValueTransformation.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Emitting module for Carlos (in target 'Carlos' from project 'Carlos')
SwiftDriver\ Compilation\ Requirements Carlos normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Carlos -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos-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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.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/Carlos.build/Debug-watchos/Carlos.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos_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/Carlos.build/Debug-watchos/Carlos.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling ComposedOneWayTransformer.swift, ComposedTwoWayTransformer.swift, ConditionedOneWayTransformer.swift, ConditionedOutputProcessing.swift (in target 'Carlos' from project 'Carlos')
SwiftDriver\ Compilation\ Requirements Carlos normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Carlos -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos-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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.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/Carlos.build/Debug-watchos/Carlos.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos_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/Carlos.build/Debug-watchos/Carlos.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64_32 Compiling\ BasicFetcher.swift,\ Errors.swift,\ ExpensiveObject.swift,\ Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicFetcher.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/ExpensiveObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Extensions.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicFetcher.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Errors.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/ExpensiveObject.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Extensions.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Fetcher.swift,\ MemoryCacheLevel.swift,\ NSUserDefaultsCacheLevel.swift,\ NetworkFetcher.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Fetcher.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/MemoryCacheLevel.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NSUserDefaultsCacheLevel.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NetworkFetcher.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Fetcher.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/MemoryCacheLevel.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NSUserDefaultsCacheLevel.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NSUserDefaultsCacheLevel.swift:99:57: warning: 'unarchiveTopLevelObjectWithData' was deprecated in watchOS 5.0: Use unarchivedObject(ofClass:from:) instead
        if let unencodedObject = try? NSKeyedUnarchiver.unarchiveTopLevelObjectWithData(cachedValue) as? T {
                                                        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NetworkFetcher.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling StringConvertible.swift, UnfairLock.swift, CacheLevel+Batch.swift, KeyTransformation.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 Compiling\ ConditionedTwoWayTransformer.swift,\ ConditionedValueTransformation.swift,\ ImageTransformer.swift,\ JSONTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedTwoWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedValueTransformation.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ImageTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/JSONTransformer.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedTwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedValueTransformation.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ImageTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/JSONTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling Normalize.swift, PostProcess.swift, SwitchCache.swift, ValueTransformation.swift (in target 'Carlos' from project 'Carlos')
SwiftDriverJobDiscovery normal armv7k Compiling BatchAllCache.swift, Composed.swift, Conditioned.swift, DiskCacheLevel.swift (in target 'Carlos' from project 'Carlos')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.swiftmodule (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.swiftdoc (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.abi.json (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.swiftmodule (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.swiftdoc (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.abi.json (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/arm64-apple-watchos.abi.json
SwiftDriverJobDiscovery normal armv7k Compiling Fetcher.swift, MemoryCacheLevel.swift, NSUserDefaultsCacheLevel.swift, NetworkFetcher.swift (in target 'Carlos' from project 'Carlos')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.swiftsourceinfo (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.swiftsourceinfo (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ ComposedOneWayTransformer.swift,\ ComposedTwoWayTransformer.swift,\ ConditionedOneWayTransformer.swift,\ ConditionedOutputProcessing.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ComposedOneWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ComposedTwoWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedOneWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedOutputProcessing.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ComposedOneWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ComposedTwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedOneWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedOutputProcessing.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ PoolCache.swift,\ CacheProvider.swift,\ Carlos.swift,\ BasicCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/PoolCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Carlos.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/PoolCache.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: warning: static property 'sharedDataCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, NSData>' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: note: add '@MainActor' to make static property 'sharedDataCache' part of global actor 'MainActor'
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: warning: static property 'sharedJSONCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, AnyObject>' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: note: add '@MainActor' to make static property 'sharedJSONCache' part of global actor 'MainActor'
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: warning: static property 'sharedImageCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, CarlosImage>' (aka 'BasicCache<URL, UIImage>') may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: note: add '@MainActor' to make static property 'sharedImageCache' part of global actor 'MainActor'
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
  nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Carlos.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ BatchAllCache.swift,\ Composed.swift,\ Conditioned.swift,\ DiskCacheLevel.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/BatchAllCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Composed.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Conditioned.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/BatchAllCache.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Composed.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Conditioned.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:24:9: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
        self.controlCapacity()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:57:7: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
      self.calculateSize()
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:100:42: warning: 'unarchiveTopLevelObjectWithData' was deprecated in watchOS 5.0: Use unarchivedObject(ofClass:from:) instead
        let obj = try? NSKeyedUnarchiver.unarchiveTopLevelObjectWithData(data) as? T
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:150:7: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
      self.itemsInDirectory(self.path).forEach { filePath in
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:151:18: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in an isolated closure; this is an error in the Swift 6 language mode
        _ = try? self.fileManager.removeItem(atPath: filePath)
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:161:7: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
      self.removeFileAtPath(self.pathForKey(key))
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:161:45: warning: capture of 'key' with non-sendable type 'K' in a '@Sendable' closure
      self.removeFileAtPath(self.pathForKey(key))
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:35: note: consider making generic parameter 'K' conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                                  ^
                                                      , Sendable
SwiftDriverJobDiscovery normal armv7k Compiling PoolCache.swift, CacheProvider.swift, Carlos.swift, BasicCache.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 Compiling\ BasicFetcher.swift,\ Errors.swift,\ ExpensiveObject.swift,\ Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicFetcher.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/ExpensiveObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Extensions.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicFetcher.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Errors.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/ExpensiveObject.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Extensions.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling BasicFetcher.swift, Errors.swift, ExpensiveObject.swift, Extensions.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 Compiling\ Normalize.swift,\ PostProcess.swift,\ SwitchCache.swift,\ ValueTransformation.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/Normalize.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/PostProcess.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/SwitchCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/ValueTransformation.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/Normalize.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/PostProcess.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/SwitchCache.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/ValueTransformation.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling ConditionedTwoWayTransformer.swift, ConditionedValueTransformation.swift, ImageTransformer.swift, JSONTransformer.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal armv7k Compiling\ OneWayTransformer.swift,\ StringTransformer.swift,\ Transformers.swift,\ TwoWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/OneWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/StringTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/Transformers.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/TwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/OneWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/StringTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/Transformers.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/TwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Normalize.swift, PostProcess.swift, SwitchCache.swift, ValueTransformation.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 Compiling\ ComposedOneWayTransformer.swift,\ ComposedTwoWayTransformer.swift,\ ConditionedOneWayTransformer.swift,\ ConditionedOutputProcessing.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ComposedOneWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ComposedTwoWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedOneWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedOutputProcessing.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ComposedOneWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ComposedTwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedOneWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedOutputProcessing.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling PoolCache.swift, CacheProvider.swift, Carlos.swift, BasicCache.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 Compiling\ PoolCache.swift,\ CacheProvider.swift,\ Carlos.swift,\ BasicCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/PoolCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Carlos.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/PoolCache.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: warning: static property 'sharedDataCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, NSData>' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: note: add '@MainActor' to make static property 'sharedDataCache' part of global actor 'MainActor'
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:6:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedDataCache: BasicCache<URL, NSData> = CacheProvider.dataCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: warning: static property 'sharedJSONCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, AnyObject>' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: note: add '@MainActor' to make static property 'sharedJSONCache' part of global actor 'MainActor'
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:9:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedJSONCache: BasicCache<URL, AnyObject> = CacheProvider.JSONCache()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: warning: static property 'sharedImageCache' is not concurrency-safe because non-'Sendable' type 'BasicCache<URL, CarlosImage>' (aka 'BasicCache<URL, UIImage>') may have shared mutable state; this is an error in the Swift 6 language mode
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift:5:20: note: generic class 'BasicCache' does not conform to the 'Sendable' protocol
public final class BasicCache<A, B>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: note: add '@MainActor' to make static property 'sharedImageCache' part of global actor 'MainActor'
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheProvider.swift:12:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let sharedImageCache: BasicCache<URL, CarlosImage> = CacheProvider.imageCache()
                    ^
  nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Carlos.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/BasicCache.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Fetcher.swift, MemoryCacheLevel.swift, NSUserDefaultsCacheLevel.swift, NetworkFetcher.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 Compiling\ BatchAllCache.swift,\ Composed.swift,\ Conditioned.swift,\ DiskCacheLevel.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/BatchAllCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Composed.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Conditioned.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/BatchAllCache.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Composed.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Conditioned.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:24:9: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
        self.controlCapacity()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:57:7: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
      self.calculateSize()
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:100:42: warning: 'unarchiveTopLevelObjectWithData' was deprecated in watchOS 5.0: Use unarchivedObject(ofClass:from:) instead
        let obj = try? NSKeyedUnarchiver.unarchiveTopLevelObjectWithData(data) as? T
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:150:7: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
      self.itemsInDirectory(self.path).forEach { filePath in
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:151:18: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in an isolated closure; this is an error in the Swift 6 language mode
        _ = try? self.fileManager.removeItem(atPath: filePath)
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:161:7: warning: capture of 'self' with non-sendable type 'DiskCacheLevel<K, T>' in a '@Sendable' closure
      self.removeFileAtPath(self.pathForKey(key))
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:20: note: generic class 'DiskCacheLevel' does not conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:161:45: warning: capture of 'key' with non-sendable type 'K' in a '@Sendable' closure
      self.removeFileAtPath(self.pathForKey(key))
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/DiskCacheLevel.swift:9:35: note: consider making generic parameter 'K' conform to the 'Sendable' protocol
public final class DiskCacheLevel<K: StringConvertible, T: NSCoding>: CacheLevel {
                                  ^
                                                      , Sendable
SwiftDriverJobDiscovery normal arm64 Compiling BasicFetcher.swift, Errors.swift, ExpensiveObject.swift, Extensions.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 Compiling\ FetcherValueTransformation.swift,\ FunctionComposition.swift,\ Logger.swift,\ MemoryWarning.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/FetcherValueTransformation.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/FunctionComposition.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/MemoryWarning.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/FetcherValueTransformation.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/FunctionComposition.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: warning: static property 'output' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: convert 'output' to a 'let' constant to make 'Sendable' shared state immutable
  public static var output: (String, Level) -> Void = { msg, level in
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: add '@MainActor' to make static property 'output' part of global actor 'MainActor'
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:20:25: warning: capture of 'level' with non-sendable type 'Logger.Level' in a '@Sendable' closure
      print("[Carlos][\(level.rawValue)]: \(msg)")
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:6:15: note: consider making enum 'Level' conform to the 'Sendable' protocol
  public enum Level: String {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:33:28: warning: sending 'level' risks causing data races; this is an error in the Swift 6 language mode
      self.output(message, level)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:33:28: note: task-isolated 'level' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
      self.output(message, level)
                           ^~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/MemoryWarning.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling ConditionedTwoWayTransformer.swift, ConditionedValueTransformation.swift, ImageTransformer.swift, JSONTransformer.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 Compiling\ OneWayTransformer.swift,\ StringTransformer.swift,\ Transformers.swift,\ TwoWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/OneWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/StringTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/Transformers.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/TwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/OneWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/StringTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/Transformers.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/TwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling ComposedOneWayTransformer.swift, ComposedTwoWayTransformer.swift, ConditionedOneWayTransformer.swift, ConditionedOutputProcessing.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 Compiling\ OneWayTransformer.swift,\ StringTransformer.swift,\ Transformers.swift,\ TwoWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/OneWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/StringTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/Transformers.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/TwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/OneWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/StringTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/Transformers.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/TwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling BatchAllCache.swift, Composed.swift, Conditioned.swift, DiskCacheLevel.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 Compiling\ FetcherValueTransformation.swift,\ FunctionComposition.swift,\ Logger.swift,\ MemoryWarning.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/FetcherValueTransformation.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/FunctionComposition.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/MemoryWarning.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/FetcherValueTransformation.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/FunctionComposition.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: warning: static property 'output' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: convert 'output' to a 'let' constant to make 'Sendable' shared state immutable
  public static var output: (String, Level) -> Void = { msg, level in
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: add '@MainActor' to make static property 'output' part of global actor 'MainActor'
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:20:25: warning: capture of 'level' with non-sendable type 'Logger.Level' in a '@Sendable' closure
      print("[Carlos][\(level.rawValue)]: \(msg)")
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:6:15: note: consider making enum 'Level' conform to the 'Sendable' protocol
  public enum Level: String {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:33:28: warning: sending 'level' risks causing data races; this is an error in the Swift 6 language mode
      self.output(message, level)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:33:28: note: task-isolated 'level' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
      self.output(message, level)
                           ^~~~~
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/MemoryWarning.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling OneWayTransformer.swift, StringTransformer.swift, Transformers.swift, TwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 Compiling\ StringConvertible.swift,\ UnfairLock.swift,\ CacheLevel+Batch.swift,\ KeyTransformation.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/StringConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/UnfairLock.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/CacheLevel+Batch.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/KeyTransformation.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/StringConvertible.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/UnfairLock.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/CacheLevel+Batch.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/KeyTransformation.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling FetcherValueTransformation.swift, FunctionComposition.swift, Logger.swift, MemoryWarning.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 Compiling\ Fetcher.swift,\ MemoryCacheLevel.swift,\ NSUserDefaultsCacheLevel.swift,\ NetworkFetcher.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Fetcher.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/MemoryCacheLevel.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NSUserDefaultsCacheLevel.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NetworkFetcher.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/Fetcher.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/MemoryCacheLevel.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NSUserDefaultsCacheLevel.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NSUserDefaultsCacheLevel.swift:99:57: warning: 'unarchiveTopLevelObjectWithData' was deprecated in watchOS 5.0: Use unarchivedObject(ofClass:from:) instead
        if let unencodedObject = try? NSKeyedUnarchiver.unarchiveTopLevelObjectWithData(cachedValue) as? T {
                                                        ^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/CacheLevels/NetworkFetcher.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling OneWayTransformer.swift, StringTransformer.swift, Transformers.swift, TwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 Compiling\ StringConvertible.swift,\ UnfairLock.swift,\ CacheLevel+Batch.swift,\ KeyTransformation.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/StringConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/UnfairLock.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/CacheLevel+Batch.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/KeyTransformation.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/StringConvertible.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/UnfairLock.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/CacheLevel+Batch.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Operations/KeyTransformation.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Emitting module for Carlos (in target 'Carlos' from project 'Carlos')
SwiftDriver\ Compilation\ Requirements Carlos normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Carlos -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos-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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.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/Carlos.build/Debug-watchos/Carlos.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos_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/Carlos.build/Debug-watchos/Carlos.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling StringConvertible.swift, UnfairLock.swift, CacheLevel+Batch.swift, KeyTransformation.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 Compiling\ ConditionedTwoWayTransformer.swift,\ ConditionedValueTransformation.swift,\ ImageTransformer.swift,\ JSONTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedTwoWayTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedValueTransformation.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ImageTransformer.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/JSONTransformer.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedTwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ConditionedValueTransformation.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/ImageTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Transformers/JSONTransformer.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Carlos-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos-Swift.h (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Carlos-Swift.h
SwiftDriverJobDiscovery normal arm64_32 Compiling Normalize.swift, PostProcess.swift, SwitchCache.swift, ValueTransformation.swift (in target 'Carlos' from project 'Carlos')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.swiftmodule (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.swiftdoc (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.abi.json (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/arm64_32-apple-watchos.abi.json
SwiftDriverJobDiscovery normal arm64_32 Compiling StringConvertible.swift, UnfairLock.swift, CacheLevel+Batch.swift, KeyTransformation.swift (in target 'Carlos' from project 'Carlos')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.swiftsourceinfo (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftDriver\ Compilation Carlos normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Carlos -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos-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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.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/Carlos.build/Debug-watchos/Carlos.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos_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/Carlos.build/Debug-watchos/Carlos.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal armv7k Compiling\ FetcherValueTransformation.swift,\ FunctionComposition.swift,\ Logger.swift,\ MemoryWarning.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/FetcherValueTransformation.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/FunctionComposition.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/MemoryWarning.swift (in target 'Carlos' from project 'Carlos')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/FetcherValueTransformation.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/FunctionComposition.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: warning: static property 'output' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: convert 'output' to a 'let' constant to make 'Sendable' shared state immutable
  public static var output: (String, Level) -> Void = { msg, level in
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: add '@MainActor' to make static property 'output' part of global actor 'MainActor'
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:18:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var output: (String, Level) -> Void = { msg, level in
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:20:25: warning: capture of 'level' with non-sendable type 'Logger.Level' in a '@Sendable' closure
      print("[Carlos][\(level.rawValue)]: \(msg)")
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:6:15: note: consider making enum 'Level' conform to the 'Sendable' protocol
  public enum Level: String {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:33:28: warning: sending 'level' risks causing data races; this is an error in the Swift 6 language mode
      self.output(message, level)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/Logger.swift:33:28: note: task-isolated 'level' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
      self.output(message, level)
                           ^~~~~
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Carlos/Core/MemoryWarning.swift (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling ComposedOneWayTransformer.swift, ComposedTwoWayTransformer.swift, ConditionedOneWayTransformer.swift, ConditionedOutputProcessing.swift (in target 'Carlos' from project 'Carlos')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Binary/Carlos.o normal arm64 (in target 'Carlos' from project 'Carlos')
    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-watchos6.0 -r -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 -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -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 -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos_dependency_info.dat -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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Binary/Carlos.o
SwiftDriverJobDiscovery normal arm64_32 Compiling BatchAllCache.swift, Composed.swift, Conditioned.swift, DiskCacheLevel.swift (in target 'Carlos' from project 'Carlos')
SwiftDriverJobDiscovery normal arm64_32 Compiling Fetcher.swift, MemoryCacheLevel.swift, NSUserDefaultsCacheLevel.swift, NetworkFetcher.swift (in target 'Carlos' from project 'Carlos')
SwiftDriverJobDiscovery normal arm64_32 Compiling FetcherValueTransformation.swift, FunctionComposition.swift, Logger.swift, MemoryWarning.swift (in target 'Carlos' from project 'Carlos')
SwiftDriverJobDiscovery normal arm64_32 Compiling PoolCache.swift, CacheProvider.swift, Carlos.swift, BasicCache.swift (in target 'Carlos' from project 'Carlos')
SwiftDriverJobDiscovery normal arm64_32 Compiling BasicFetcher.swift, Errors.swift, ExpensiveObject.swift, Extensions.swift (in target 'Carlos' from project 'Carlos')
SwiftDriverJobDiscovery normal arm64_32 Compiling OneWayTransformer.swift, StringTransformer.swift, Transformers.swift, TwoWayTransformer.swift (in target 'Carlos' from project 'Carlos')
SwiftDriverJobDiscovery normal arm64_32 Compiling ConditionedTwoWayTransformer.swift, ConditionedValueTransformation.swift, ImageTransformer.swift, JSONTransformer.swift (in target 'Carlos' from project 'Carlos')
SwiftDriver\ Compilation Carlos normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Carlos -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos-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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.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/Carlos.build/Debug-watchos/Carlos.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos_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/Carlos.build/Debug-watchos/Carlos.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Binary/Carlos.o normal arm64_32 (in target 'Carlos' from project 'Carlos')
    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-watchos6.0 -r -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 -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -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 -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos_dependency_info.dat -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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Binary/Carlos.o
SwiftDriverJobDiscovery normal armv7k Compiling FetcherValueTransformation.swift, FunctionComposition.swift, Logger.swift, MemoryWarning.swift (in target 'Carlos' from project 'Carlos')
SwiftDriver\ Compilation Carlos normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Carlos -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.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 -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos-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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.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/Carlos.build/Debug-watchos/Carlos.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos_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/Carlos.build/Debug-watchos/Carlos.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Binary/Carlos.o normal armv7k (in target 'Carlos' from project 'Carlos')
    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-watchos6.0 -r -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 -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -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 -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos_dependency_info.dat -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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Binary/Carlos.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.o normal arm64\ armv7k\ arm64_32 (in target 'Carlos' from project 'Carlos')
    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/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Binary/Carlos.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Binary/Carlos.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Binary/Carlos.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.o
ExtractAppIntentsMetadata (in target 'Carlos' from project 'Carlos')
    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 Carlos --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 6.0 --bundle-identifier spi-builder-workspace.Carlos --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.appintents --target-triple arm64-apple-watchos6.0 --target-triple armv7k-apple-watchos6.0 --target-triple arm64_32-apple-watchos6.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Carlos.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Carlos.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64/Carlos.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/armv7k/Carlos.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Carlos.build/Debug-watchos/Carlos.build/Objects-normal/arm64_32/Carlos.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 15:57:40.048 appintentsmetadataprocessor[1053:5462] Starting appintentsmetadataprocessor export
2025-04-26 15:57:40.088 appintentsmetadataprocessor[1053:5462] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.o (in target 'Carlos' from project 'Carlos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Carlos.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "quick",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.0.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Quick.git"
    },
    {
      "identity" : "nimble",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "9.2.0",
            "upper_bound" : "10.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Nimble.git"
    }
  ],
  "manifest_display_name" : "Carlos",
  "name" : "Carlos",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Carlos",
      "targets" : [
        "Carlos"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "CarlosTests",
      "module_type" : "SwiftTarget",
      "name" : "CarlosTests",
      "path" : "Tests/CarlosTests",
      "product_dependencies" : [
        "Quick",
        "Nimble"
      ],
      "sources" : [
        "BasicCacheTests.swift",
        "BasicFetcherTests.swift",
        "BatchTests.swift",
        "CacheProviderTests.swift",
        "CompositionTests.swift",
        "ConditionedCacheTests.swift",
        "ConditionedOneWayTransformationBoxTests.swift",
        "ConditionedOutputProcessingTests.swift",
        "ConditionedTransformersTests.swift",
        "ConditionedTwoWayTransformationBoxTests.swift",
        "ConditionedValueTransformationTests.swift",
        "DiskCacheTests.swift",
        "Fakes/Base64EncodedImage.swift",
        "Fakes/CacheLevelFake.swift",
        "Fakes/FetcherFake.swift",
        "FetcherValueTransformationTests.swift",
        "ImageTransformerTests.swift",
        "JSONTransformerTests.swift",
        "KeyTransformationTests.swift",
        "MKDistanceFormatterTransformerTests.swift",
        "MemoryCacheLevelTests.swift",
        "MemoryWarningNotificationTests.swift",
        "NSDateFormatterTransformerTests.swift",
        "NSNumberFormatterTransformerTests.swift",
        "NSUserDefaultsCacheLevelTests.swift",
        "NetworkFetcherTests.swift",
        "NormalizationTests.swift",
        "OneWayTransformationBoxTests.swift",
        "OneWayTransformerCompositionTests.swift",
        "PoolCacheTests.swift",
        "PostProcessTests.swift",
        "StringConvertibleTests.swift",
        "StringTransformerTests.swift",
        "SwitchCacheTests.swift",
        "TwoWayTransformationBoxTests.swift",
        "TwoWayTransformerCompositionTests.swift",
        "ValueTransformationTests.swift"
      ],
      "target_dependencies" : [
        "Carlos"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Carlos",
      "module_type" : "SwiftTarget",
      "name" : "Carlos",
      "path" : "Sources/Carlos",
      "product_memberships" : [
        "Carlos"
      ],
      "sources" : [
        "CacheLevels/BatchAllCache.swift",
        "CacheLevels/Composed.swift",
        "CacheLevels/Conditioned.swift",
        "CacheLevels/DiskCacheLevel.swift",
        "CacheLevels/Fetcher.swift",
        "CacheLevels/MemoryCacheLevel.swift",
        "CacheLevels/NSUserDefaultsCacheLevel.swift",
        "CacheLevels/NetworkFetcher.swift",
        "CacheLevels/PoolCache.swift",
        "CacheProvider.swift",
        "Carlos.swift",
        "Core/BasicCache.swift",
        "Core/BasicFetcher.swift",
        "Core/Errors.swift",
        "Core/ExpensiveObject.swift",
        "Core/Extensions.swift",
        "Core/FetcherValueTransformation.swift",
        "Core/FunctionComposition.swift",
        "Core/Logger.swift",
        "Core/MemoryWarning.swift",
        "Core/StringConvertible.swift",
        "Core/UnfairLock.swift",
        "Operations/CacheLevel+Batch.swift",
        "Operations/KeyTransformation.swift",
        "Operations/Normalize.swift",
        "Operations/PostProcess.swift",
        "Operations/SwitchCache.swift",
        "Operations/ValueTransformation.swift",
        "Transformers/ComposedOneWayTransformer.swift",
        "Transformers/ComposedTwoWayTransformer.swift",
        "Transformers/ConditionedOneWayTransformer.swift",
        "Transformers/ConditionedOutputProcessing.swift",
        "Transformers/ConditionedTwoWayTransformer.swift",
        "Transformers/ConditionedValueTransformation.swift",
        "Transformers/ImageTransformer.swift",
        "Transformers/JSONTransformer.swift",
        "Transformers/OneWayTransformer.swift",
        "Transformers/StringTransformer.swift",
        "Transformers/Transformers.swift",
        "Transformers/TwoWayTransformer.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
Done.