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 Mixpanel, reference master (e8c878), with Swift 6.1 for watchOS using Xcode 16.3 on 31 May 2025 12:57:21 UTC.

Swift 6 data race errors: 33

Build Command

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

  static var properties: InternalProperties = {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:22:14: note: convert 'properties' to a 'let' constant to make 'Sendable' shared state immutable
  static var properties: InternalProperties = {
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:22:14: note: add '@MainActor' to make static property 'properties' part of global actor 'MainActor'
  static var properties: InternalProperties = {
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:22:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var properties: InternalProperties = {
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:78:14: warning: static property 'peopleProperties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  static var peopleProperties: InternalProperties = {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:78:14: note: convert 'peopleProperties' to a 'let' constant to make 'Sendable' shared state immutable
  static var peopleProperties: InternalProperties = {
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:78:14: note: add '@MainActor' to make static property 'peopleProperties' part of global actor 'MainActor'
  static var peopleProperties: InternalProperties = {
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:78:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var peopleProperties: InternalProperties = {
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Constants.swift:16:14: warning: static property 'queueSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  static var queueSize = 5000
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Constants.swift:16:14: note: convert 'queueSize' to a 'let' constant to make 'Sendable' shared state immutable
  static var queueSize = 5000
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/Constants.swift:16:14: note: add '@MainActor' to make static property 'queueSize' part of global actor 'MainActor'
  static var queueSize = 5000
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Constants.swift:16:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var queueSize = 5000
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:12:8: warning: associated value 'invalidType(type:)' of 'Sendable'-conforming enum 'PropertyError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case invalidType(type: Any)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:16:14: warning: static property 'assertClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  static var assertClosure = swiftAssertClosure
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:16:14: note: convert 'assertClosure' to a 'let' constant to make 'Sendable' shared state immutable
  static var assertClosure = swiftAssertClosure
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:16:14: note: add '@MainActor' to make static property 'assertClosure' part of global actor 'MainActor'
  static var assertClosure = swiftAssertClosure
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:16:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var assertClosure = swiftAssertClosure
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:17:14: warning: static property 'swiftAssertClosure' is not concurrency-safe because non-'Sendable' type '(Bool, String, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
  static let swiftAssertClosure = { Swift.assert($0, $1, file: $2, line: $3) }
             ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:17:14: note: add '@MainActor' to make static property 'swiftAssertClosure' part of global actor 'MainActor'
  static let swiftAssertClosure = { Swift.assert($0, $1, file: $2, line: $3) }
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:17:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let swiftAssertClosure = { Swift.assert($0, $1, file: $2, line: $3) }
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:289:14: warning: static property 'sharedInstance' is not concurrency-safe because non-'Sendable' type 'MixpanelManager' may have shared mutable state; this is an error in the Swift 6 language mode
  static let sharedInstance = MixpanelManager()
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:287:13: note: class 'MixpanelManager' does not conform to the 'Sendable' protocol
final class MixpanelManager {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:289:14: note: add '@MainActor' to make static property 'sharedInstance' part of global actor 'MainActor'
  static let sharedInstance = MixpanelManager()
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:289:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let sharedInstance = MixpanelManager()
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: warning: static property 'loggers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  private static var loggers = [MixpanelLogging]()
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: note: convert 'loggers' to a 'let' constant to make 'Sendable' shared state immutable
  private static var loggers = [MixpanelLogging]()
                 ~~~ ^
                 let
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: note: add '@MainActor' to make static property 'loggers' part of global actor 'MainActor'
  private static var loggers = [MixpanelLogging]()
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static var loggers = [MixpanelLogging]()
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: warning: static property 'enabledLevels' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  private static var enabledLevels = Set<MixpanelLogLevel>()
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: note: convert 'enabledLevels' to a 'let' constant to make 'Sendable' shared state immutable
  private static var enabledLevels = Set<MixpanelLogLevel>()
                 ~~~ ^
                 let
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: note: add '@MainActor' to make static property 'enabledLevels' part of global actor 'MainActor'
  private static var enabledLevels = Set<MixpanelLogLevel>()
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static var enabledLevels = Set<MixpanelLogLevel>()
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:62:22: warning: static property 'readWriteLock' is not concurrency-safe because non-'Sendable' type 'ReadWriteLock' may have shared mutable state; this is an error in the Swift 6 language mode
  private static let readWriteLock: ReadWriteLock = ReadWriteLock(label: "loggerLock")
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ReadWriteLock.swift:10:7: note: class 'ReadWriteLock' does not conform to the 'Sendable' protocol
class ReadWriteLock {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:62:22: note: add '@MainActor' to make static property 'readWriteLock' part of global actor 'MainActor'
  private static let readWriteLock: ReadWriteLock = ReadWriteLock(label: "loggerLock")
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:62:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static let readWriteLock: ReadWriteLock = ReadWriteLock(label: "loggerLock")
                     ^
  nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ MixpanelPersistence.swift,\ MixpanelType.swift /Users/admin/builder/spi-builder-workspace/Sources/MixpanelPersistence.swift /Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MixpanelPersistence.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 Compiling\ FlushRequest.swift,\ Group.swift,\ JSONHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/FlushRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/Group.swift /Users/admin/builder/spi-builder-workspace/Sources/JSONHandler.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FlushRequest.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Group.swift:54:21: warning: capture of 'self' with non-sendable type 'Group' in a '@Sendable' closure
      r["$token"] = self.apiToken
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Group.swift:13:12: note: class 'Group' does not conform to the 'Sendable' protocol
open class Group {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Group.swift:59:21: warning: capture of 'properties' with non-sendable type 'InternalProperties' (aka 'Dictionary<String, Any>') in a '@Sendable' closure
        r[action] = properties["$properties"]
                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/JSONHandler.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Network.swift,\ People.swift /Users/admin/builder/spi-builder-workspace/Sources/Network.swift /Users/admin/builder/spi-builder-workspace/Sources/People.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Network.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:83:11: warning: capture of 'failure' with non-sendable type '(Reason, Data?, URLResponse?) -> Void' in a '@Sendable' closure
          failure(.other(hasError), data, response)
          ^
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:83:11: note: a function type must be marked '@Sendable' to conform to 'Sendable'
          failure(.other(hasError), data, response)
          ^
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:97:26: warning: capture of 'resource' with non-sendable type 'Resource<A>' in a '@Sendable' closure
      guard let result = resource.parse(responseData) else {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:35:8: note: consider making generic struct 'Resource' conform to the 'Sendable' protocol
struct Resource<A> {
       ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:102:7: warning: capture of 'success' with non-sendable type '(A, URLResponse?) -> Void' in a '@Sendable' closure
      success(result, response)
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:102:7: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      success(result, response)
      ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/People.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/People.swift:53:24: warning: capture of 'self' with non-sendable type 'People?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/People.swift:13:12: note: class 'People' does not conform to the 'Sendable' protocol
open class People {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/People.swift:65:21: warning: capture of 'properties' with non-sendable type 'InternalProperties' (aka 'Dictionary<String, Any>') in a '@Sendable' closure
        r[action] = properties["$properties"]
                    ^
SwiftDriverJobDiscovery normal armv7k Emitting module for Mixpanel (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 Compiling\ resource_bundle_accessor.swift,\ AutomaticEvents.swift,\ AutomaticProperties.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/AutomaticEvents.swift /Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources/resource_bundle_accessor.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:20:14: warning: static property 'automaticPropertiesLock' is not concurrency-safe because non-'Sendable' type 'ReadWriteLock' may have shared mutable state; this is an error in the Swift 6 language mode
  static let automaticPropertiesLock = ReadWriteLock(label: "automaticPropertiesLock")
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ReadWriteLock.swift:10:7: note: class 'ReadWriteLock' does not conform to the 'Sendable' protocol
class ReadWriteLock {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:20:14: note: add '@MainActor' to make static property 'automaticPropertiesLock' part of global actor 'MainActor'
  static let automaticPropertiesLock = ReadWriteLock(label: "automaticPropertiesLock")
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:20:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let automaticPropertiesLock = ReadWriteLock(label: "automaticPropertiesLock")
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:22:14: warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  static var properties: InternalProperties = {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:22:14: note: convert 'properties' to a 'let' constant to make 'Sendable' shared state immutable
  static var properties: InternalProperties = {
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:22:14: note: add '@MainActor' to make static property 'properties' part of global actor 'MainActor'
  static var properties: InternalProperties = {
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:22:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var properties: InternalProperties = {
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:78:14: warning: static property 'peopleProperties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  static var peopleProperties: InternalProperties = {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:78:14: note: convert 'peopleProperties' to a 'let' constant to make 'Sendable' shared state immutable
  static var peopleProperties: InternalProperties = {
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:78:14: note: add '@MainActor' to make static property 'peopleProperties' part of global actor 'MainActor'
  static var peopleProperties: InternalProperties = {
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:78:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var peopleProperties: InternalProperties = {
             ^
  nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Emitting module for Mixpanel (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriverJobDiscovery normal arm64 Emitting module for Mixpanel (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriver\ Compilation\ Requirements Mixpanel normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Mixpanel' from project 'Mixpanel')
    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 Mixpanel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.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-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel-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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.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/Mixpanel.build/Debug-watchos/Mixpanel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel_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/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling Network.swift, People.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriver\ Compilation\ Requirements Mixpanel normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Mixpanel' from project 'Mixpanel')
    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 Mixpanel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.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-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel-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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.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/Mixpanel.build/Debug-watchos/Mixpanel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel_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/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements Mixpanel normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Mixpanel' from project 'Mixpanel')
    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 Mixpanel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.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-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel-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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.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/Mixpanel.build/Debug-watchos/Mixpanel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel_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/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.swiftmodule (in target 'Mixpanel' from project 'Mixpanel')
    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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/armv7k-apple-watchos.swiftmodule
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Mixpanel-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel-Swift.h (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Mixpanel-Swift.h
SwiftDriverJobDiscovery normal armv7k Compiling PrintLogging.swift, ReadWriteLock.swift (in target 'Mixpanel' from project 'Mixpanel')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.swiftdoc (in target 'Mixpanel' from project 'Mixpanel')
    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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.abi.json (in target 'Mixpanel' from project 'Mixpanel')
    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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.swiftmodule (in target 'Mixpanel' from project 'Mixpanel')
    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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/arm64_32-apple-watchos.swiftmodule
SwiftDriverJobDiscovery normal armv7k Compiling MixpanelPersistence.swift, MixpanelType.swift (in target 'Mixpanel' from project 'Mixpanel')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.swiftdoc (in target 'Mixpanel' from project 'Mixpanel')
    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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.abi.json (in target 'Mixpanel' from project 'Mixpanel')
    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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftmodule (in target 'Mixpanel' from project 'Mixpanel')
    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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftdoc (in target 'Mixpanel' from project 'Mixpanel')
    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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.abi.json (in target 'Mixpanel' from project 'Mixpanel')
    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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.swiftsourceinfo (in target 'Mixpanel' from project 'Mixpanel')
    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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.swiftsourceinfo (in target 'Mixpanel' from project 'Mixpanel')
    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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftsourceinfo (in target 'Mixpanel' from project 'Mixpanel')
    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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ FeatureFlags.swift,\ FileLogging.swift,\ Flush.swift /Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift /Users/admin/builder/spi-builder-workspace/Sources/FileLogging.swift /Users/admin/builder/spi-builder-workspace/Sources/Flush.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:214:7: warning: capture of 'self' with non-sendable type 'FeatureFlagManager?' in a '@Sendable' closure
      self?._fetchFlagsIfNeeded(completion: nil)
      ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:181:7: note: class 'FeatureFlagManager' does not conform to the 'Sendable' protocol
class FeatureFlagManager: Network, MixpanelFlags {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:266:24: warning: capture of 'self' with non-sendable type 'FeatureFlagManager?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:181:7: note: class 'FeatureFlagManager' does not conform to the 'Sendable' protocol
class FeatureFlagManager: Network, MixpanelFlags {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:285:37: warning: capture of 'fallback' with non-sendable type 'MixpanelFlagVariant' in a '@Sendable' closure
        let result = flagVariant ?? fallback
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:33:15: note: consider making struct 'MixpanelFlagVariant' conform to the 'Sendable' protocol
public struct MixpanelFlagVariant: Decodable {
              ^
                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:291:36: warning: capture of 'completion' with non-sendable type '(MixpanelFlagVariant) -> Void' in a '@Sendable' closure
        DispatchQueue.main.async { completion(result) }
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:291:36: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        DispatchQueue.main.async { completion(result) }
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:285:37: warning: implicit capture of 'fallback' requires that 'MixpanelFlagVariant' conforms to 'Sendable'; this is an error in the Swift 6 language mode
        let result = flagVariant ?? fallback
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:33:15: note: consider making struct 'MixpanelFlagVariant' conform to the 'Sendable' protocol
public struct MixpanelFlagVariant: Decodable {
              ^
                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:302:62: warning: capture of 'fallback' with non-sendable type 'MixpanelFlagVariant' in an isolated closure; this is an error in the Swift 6 language mode
            result = self.getVariantSync(flagName, fallback: fallback)
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:33:15: note: consider making struct 'MixpanelFlagVariant' conform to the 'Sendable' protocol
public struct MixpanelFlagVariant: Decodable {
              ^
                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:308:38: warning: capture of 'completion' with non-sendable type '(MixpanelFlagVariant) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
          DispatchQueue.main.async { completion(result) }
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:308:38: note: a function type must be marked '@Sendable' to conform to 'Sendable'
          DispatchQueue.main.async { completion(result) }
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:385:9: warning: capture of 'self' with non-sendable type 'FeatureFlagManager?' in a '@Sendable' closure
        self?._performFetchRequest()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:181:7: note: class 'FeatureFlagManager' does not conform to the 'Sendable' protocol
class FeatureFlagManager: Network, MixpanelFlags {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:440:11: warning: capture of 'self' with non-sendable type 'FeatureFlagManager?' in a '@Sendable' closure
          self?._completeFetch(success: false)
          ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:181:7: note: class 'FeatureFlagManager' does not conform to the 'Sendable' protocol
class FeatureFlagManager: Network, MixpanelFlags {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:440:11: warning: reference to captured var 'self' in concurrently-executing code
          self?._completeFetch(success: false)
          ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:448:28: warning: capture of 'self' with non-sendable type 'FeatureFlagManager?' in a '@Sendable' closure
          guard let self = self else { return }
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:181:7: note: class 'FeatureFlagManager' does not conform to the 'Sendable' protocol
class FeatureFlagManager: Network, MixpanelFlags {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:450:24: warning: capture of 'flagsResponse' with non-sendable type 'FlagsResponse' in a '@Sendable' closure
          self.flags = flagsResponse.flags ?? [:]
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:66:8: note: consider making struct 'FlagsResponse' conform to the 'Sendable' protocol
struct FlagsResponse: Decodable {
       ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:496:7: warning: sending 'delegate' risks causing data races; this is an error in the Swift 6 language mode
      delegate.track(event: "$experiment_started", properties: properties)
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:496:7: note: task-isolated 'delegate' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
      delegate.track(event: "$experiment_started", properties: properties)
      ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:308:38: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
          DispatchQueue.main.async { completion(result) }
                                   ~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:308:38: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
          DispatchQueue.main.async { completion(result) }
                                     ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:308:49: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
          DispatchQueue.main.async { completion(result) }
                                   ~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:308:49: note: task-isolated 'result' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
          DispatchQueue.main.async { completion(result) }
                                                ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:465:7: warning: sending 'handlers' risks causing data races; this is an error in the Swift 6 language mode
      handlers.forEach { $0(success) }
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:465:7: note: task-isolated 'handlers' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
      handlers.forEach { $0(success) }
      ^~~~~~~~
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/FileLogging.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Flush.swift:120:9: warning: sending 'timer' risks causing data races; this is an error in the Swift 6 language mode
        timer.invalidate()
~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Flush.swift:120:9: note: task-isolated 'timer' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
        timer.invalidate()
        ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Flush.swift:121:9: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
        self?.timer = nil
~~~~~~~~^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Flush.swift:121:9: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
        self?.timer = nil
        ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/Flush.swift:97:24: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
      guard let self = self else {
~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Flush.swift:97:24: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
      guard let self = self else {
                       ^~~~
SwiftCompile normal arm64_32 Compiling\ SessionMetadata.swift,\ Track.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/Track.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SessionMetadata.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SessionMetadata.swift:24:24: warning: capture of 'self' with non-sendable type 'SessionMetadata?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SessionMetadata.swift:11:7: note: class 'SessionMetadata' does not conform to the 'Sendable' protocol
class SessionMetadata {
      ^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Track.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling FeatureFlags.swift, FileLogging.swift, Flush.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 Compiling\ Network.swift,\ People.swift /Users/admin/builder/spi-builder-workspace/Sources/Network.swift /Users/admin/builder/spi-builder-workspace/Sources/People.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Network.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:83:11: warning: capture of 'failure' with non-sendable type '(Reason, Data?, URLResponse?) -> Void' in a '@Sendable' closure
          failure(.other(hasError), data, response)
          ^
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:83:11: note: a function type must be marked '@Sendable' to conform to 'Sendable'
          failure(.other(hasError), data, response)
          ^
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:97:26: warning: capture of 'resource' with non-sendable type 'Resource<A>' in a '@Sendable' closure
      guard let result = resource.parse(responseData) else {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:35:8: note: consider making generic struct 'Resource' conform to the 'Sendable' protocol
struct Resource<A> {
       ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:102:7: warning: capture of 'success' with non-sendable type '(A, URLResponse?) -> Void' in a '@Sendable' closure
      success(result, response)
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:102:7: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      success(result, response)
      ^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/People.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/People.swift:53:24: warning: capture of 'self' with non-sendable type 'People?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/People.swift:13:12: note: class 'People' does not conform to the 'Sendable' protocol
open class People {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/People.swift:65:21: warning: capture of 'properties' with non-sendable type 'InternalProperties' (aka 'Dictionary<String, Any>') in a '@Sendable' closure
        r[action] = properties["$properties"]
                    ^
SwiftCompile normal arm64_32 Compiling\ FlushRequest.swift,\ Group.swift,\ JSONHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/FlushRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/Group.swift /Users/admin/builder/spi-builder-workspace/Sources/JSONHandler.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/FlushRequest.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Group.swift:54:21: warning: capture of 'self' with non-sendable type 'Group' in a '@Sendable' closure
      r["$token"] = self.apiToken
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Group.swift:13:12: note: class 'Group' does not conform to the 'Sendable' protocol
open class Group {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Group.swift:59:21: warning: capture of 'properties' with non-sendable type 'InternalProperties' (aka 'Dictionary<String, Any>') in a '@Sendable' closure
        r[action] = properties["$properties"]
                    ^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/JSONHandler.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ MixpanelPersistence.swift,\ MixpanelType.swift /Users/admin/builder/spi-builder-workspace/Sources/MixpanelPersistence.swift /Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MixpanelPersistence.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 Compiling\ PrintLogging.swift,\ ReadWriteLock.swift /Users/admin/builder/spi-builder-workspace/Sources/PrintLogging.swift /Users/admin/builder/spi-builder-workspace/Sources/ReadWriteLock.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PrintLogging.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling FlushRequest.swift, Group.swift, JSONHandler.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 Compiling\ Network.swift,\ People.swift /Users/admin/builder/spi-builder-workspace/Sources/Network.swift /Users/admin/builder/spi-builder-workspace/Sources/People.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Network.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:83:11: warning: capture of 'failure' with non-sendable type '(Reason, Data?, URLResponse?) -> Void' in a '@Sendable' closure
          failure(.other(hasError), data, response)
          ^
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:83:11: note: a function type must be marked '@Sendable' to conform to 'Sendable'
          failure(.other(hasError), data, response)
          ^
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:97:26: warning: capture of 'resource' with non-sendable type 'Resource<A>' in a '@Sendable' closure
      guard let result = resource.parse(responseData) else {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:35:8: note: consider making generic struct 'Resource' conform to the 'Sendable' protocol
struct Resource<A> {
       ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:102:7: warning: capture of 'success' with non-sendable type '(A, URLResponse?) -> Void' in a '@Sendable' closure
      success(result, response)
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Network.swift:102:7: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      success(result, response)
      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/People.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/People.swift:53:24: warning: capture of 'self' with non-sendable type 'People?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/People.swift:13:12: note: class 'People' does not conform to the 'Sendable' protocol
open class People {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/People.swift:65:21: warning: capture of 'properties' with non-sendable type 'InternalProperties' (aka 'Dictionary<String, Any>') in a '@Sendable' closure
        r[action] = properties["$properties"]
                    ^
SwiftDriverJobDiscovery normal armv7k Compiling FlushRequest.swift, Group.swift, JSONHandler.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriverJobDiscovery normal arm64 Compiling MixpanelPersistence.swift, MixpanelType.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 Compiling\ MPDB.swift,\ Mixpanel.swift,\ MixpanelInstance.swift /Users/admin/builder/spi-builder-workspace/Sources/MPDB.swift /Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift /Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MPDB.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:289:14: warning: static property 'sharedInstance' is not concurrency-safe because non-'Sendable' type 'MixpanelManager' may have shared mutable state; this is an error in the Swift 6 language mode
  static let sharedInstance = MixpanelManager()
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:287:13: note: class 'MixpanelManager' does not conform to the 'Sendable' protocol
final class MixpanelManager {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:289:14: note: add '@MainActor' to make static property 'sharedInstance' part of global actor 'MainActor'
  static let sharedInstance = MixpanelManager()
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:289:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let sharedInstance = MixpanelManager()
             ^
  nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:786:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:793:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:842:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:798:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:841:27: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
      if let completion = completion {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:841:27: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      if let completion = completion {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:880:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:888:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:896:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:905:47: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
            DispatchQueue.main.async(execute: completion)
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:949:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:903:26: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
        guard let self = self else {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:904:31: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
          if let completion = completion {
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:904:31: note: a function type must be marked '@Sendable' to conform to 'Sendable'
          if let completion = completion {
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:982:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:963:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:981:27: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
      if let completion = completion {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:981:27: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      if let completion = completion {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1064:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1071:45: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
          DispatchQueue.main.async(execute: completion)
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1078:45: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
          DispatchQueue.main.async(execute: completion)
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1101:47: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
            DispatchQueue.main.async(execute: completion)
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1110:45: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
          DispatchQueue.main.async(execute: completion)
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1069:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1070:29: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
        if let completion = completion {
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1070:29: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        if let completion = completion {
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1099:26: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
        guard let self = self else {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1100:31: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
          if let completion = completion {
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1100:31: note: a function type must be marked '@Sendable' to conform to 'Sendable'
          if let completion = completion {
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1105:25: warning: capture of 'eventQueue' with non-sendable type '[InternalProperties]' (aka 'Array<Dictionary<String, Any>>') in a '@Sendable' closure
        self.flushQueue(eventQueue, type: .events)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1106:25: warning: capture of 'peopleQueue' with non-sendable type '[InternalProperties]' (aka 'Array<Dictionary<String, Any>>') in a '@Sendable' closure
        self.flushQueue(peopleQueue, type: .people)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1107:25: warning: capture of 'groupsQueue' with non-sendable type '[InternalProperties]' (aka 'Array<Dictionary<String, Any>>') in a '@Sendable' closure
        self.flushQueue(groupsQueue, type: .groups)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1140:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1169:17: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self else {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1192:21: warning: capture of 'properties' with non-sendable type 'Properties?' (aka 'Optional<Dictionary<String, any MixpanelType>>') in a '@Sendable' closure
        properties: properties,
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1290:19: warning: result of call to 'write(closure:)' is unused
    readWriteLock.write {
                  ^     ~
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1324:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1356:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1372:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1398:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1418:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1420:9: warning: capture of 'properties' with non-sendable type 'Properties' (aka 'Dictionary<String, any MixpanelType>') in a '@Sendable' closure
        properties,
        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1447:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1449:9: warning: capture of 'properties' with non-sendable type 'Properties' (aka 'Dictionary<String, any MixpanelType>') in a '@Sendable' closure
        properties,
        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1451:23: warning: capture of 'defaultValue' with non-sendable type '(any MixpanelType)?' in a '@Sendable' closure
        defaultValue: defaultValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1477:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1500:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1503:9: warning: capture of 'update' with non-sendable type '(inout InternalProperties) -> Void' (aka '(inout Dictionary<String, Any>) -> ()') in a '@Sendable' closure
        update,
        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1503:9: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        update,
        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1619:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1665:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1675:48: warning: capture of 'properties' with non-sendable type 'Properties?' (aka 'Optional<Dictionary<String, any MixpanelType>>') in a '@Sendable' closure
      self.track(event: "$opt_in", properties: properties)
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
SwiftDriverJobDiscovery normal armv7k Compiling Constants.swift, Data+Compression.swift, Error.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 Compiling\ SessionMetadata.swift,\ Track.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/Track.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionMetadata.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SessionMetadata.swift:24:24: warning: capture of 'self' with non-sendable type 'SessionMetadata?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SessionMetadata.swift:11:7: note: class 'SessionMetadata' does not conform to the 'Sendable' protocol
class SessionMetadata {
      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Track.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling resource_bundle_accessor.swift, AutomaticEvents.swift, AutomaticProperties.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 Compiling\ Constants.swift,\ Data+Compression.swift,\ Error.swift /Users/admin/builder/spi-builder-workspace/Sources/Constants.swift /Users/admin/builder/spi-builder-workspace/Sources/Data+Compression.swift /Users/admin/builder/spi-builder-workspace/Sources/Error.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Constants.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Constants.swift:16:14: warning: static property 'queueSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  static var queueSize = 5000
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Constants.swift:16:14: note: convert 'queueSize' to a 'let' constant to make 'Sendable' shared state immutable
  static var queueSize = 5000
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/Constants.swift:16:14: note: add '@MainActor' to make static property 'queueSize' part of global actor 'MainActor'
  static var queueSize = 5000
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Constants.swift:16:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var queueSize = 5000
             ^
  nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Data+Compression.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:12:8: warning: associated value 'invalidType(type:)' of 'Sendable'-conforming enum 'PropertyError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case invalidType(type: Any)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:16:14: warning: static property 'assertClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  static var assertClosure = swiftAssertClosure
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:16:14: note: convert 'assertClosure' to a 'let' constant to make 'Sendable' shared state immutable
  static var assertClosure = swiftAssertClosure
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:16:14: note: add '@MainActor' to make static property 'assertClosure' part of global actor 'MainActor'
  static var assertClosure = swiftAssertClosure
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:16:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var assertClosure = swiftAssertClosure
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:17:14: warning: static property 'swiftAssertClosure' is not concurrency-safe because non-'Sendable' type '(Bool, String, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
  static let swiftAssertClosure = { Swift.assert($0, $1, file: $2, line: $3) }
             ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:17:14: note: add '@MainActor' to make static property 'swiftAssertClosure' part of global actor 'MainActor'
  static let swiftAssertClosure = { Swift.assert($0, $1, file: $2, line: $3) }
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:17:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let swiftAssertClosure = { Swift.assert($0, $1, file: $2, line: $3) }
             ^
  nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling resource_bundle_accessor.swift, AutomaticEvents.swift, AutomaticProperties.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 Compiling\ FeatureFlags.swift,\ FileLogging.swift,\ Flush.swift /Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift /Users/admin/builder/spi-builder-workspace/Sources/FileLogging.swift /Users/admin/builder/spi-builder-workspace/Sources/Flush.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:214:7: warning: capture of 'self' with non-sendable type 'FeatureFlagManager?' in a '@Sendable' closure
      self?._fetchFlagsIfNeeded(completion: nil)
      ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:181:7: note: class 'FeatureFlagManager' does not conform to the 'Sendable' protocol
class FeatureFlagManager: Network, MixpanelFlags {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:266:24: warning: capture of 'self' with non-sendable type 'FeatureFlagManager?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:181:7: note: class 'FeatureFlagManager' does not conform to the 'Sendable' protocol
class FeatureFlagManager: Network, MixpanelFlags {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:285:37: warning: capture of 'fallback' with non-sendable type 'MixpanelFlagVariant' in a '@Sendable' closure
        let result = flagVariant ?? fallback
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:33:15: note: consider making struct 'MixpanelFlagVariant' conform to the 'Sendable' protocol
public struct MixpanelFlagVariant: Decodable {
              ^
                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:291:36: warning: capture of 'completion' with non-sendable type '(MixpanelFlagVariant) -> Void' in a '@Sendable' closure
        DispatchQueue.main.async { completion(result) }
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:291:36: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        DispatchQueue.main.async { completion(result) }
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:285:37: warning: implicit capture of 'fallback' requires that 'MixpanelFlagVariant' conforms to 'Sendable'; this is an error in the Swift 6 language mode
        let result = flagVariant ?? fallback
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:33:15: note: consider making struct 'MixpanelFlagVariant' conform to the 'Sendable' protocol
public struct MixpanelFlagVariant: Decodable {
              ^
                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:302:62: warning: capture of 'fallback' with non-sendable type 'MixpanelFlagVariant' in an isolated closure; this is an error in the Swift 6 language mode
            result = self.getVariantSync(flagName, fallback: fallback)
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:33:15: note: consider making struct 'MixpanelFlagVariant' conform to the 'Sendable' protocol
public struct MixpanelFlagVariant: Decodable {
              ^
                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:308:38: warning: capture of 'completion' with non-sendable type '(MixpanelFlagVariant) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
          DispatchQueue.main.async { completion(result) }
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:308:38: note: a function type must be marked '@Sendable' to conform to 'Sendable'
          DispatchQueue.main.async { completion(result) }
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:385:9: warning: capture of 'self' with non-sendable type 'FeatureFlagManager?' in a '@Sendable' closure
        self?._performFetchRequest()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:181:7: note: class 'FeatureFlagManager' does not conform to the 'Sendable' protocol
class FeatureFlagManager: Network, MixpanelFlags {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:440:11: warning: capture of 'self' with non-sendable type 'FeatureFlagManager?' in a '@Sendable' closure
          self?._completeFetch(success: false)
          ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:181:7: note: class 'FeatureFlagManager' does not conform to the 'Sendable' protocol
class FeatureFlagManager: Network, MixpanelFlags {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:440:11: warning: reference to captured var 'self' in concurrently-executing code
          self?._completeFetch(success: false)
          ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:448:28: warning: capture of 'self' with non-sendable type 'FeatureFlagManager?' in a '@Sendable' closure
          guard let self = self else { return }
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:181:7: note: class 'FeatureFlagManager' does not conform to the 'Sendable' protocol
class FeatureFlagManager: Network, MixpanelFlags {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:450:24: warning: capture of 'flagsResponse' with non-sendable type 'FlagsResponse' in a '@Sendable' closure
          self.flags = flagsResponse.flags ?? [:]
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:66:8: note: consider making struct 'FlagsResponse' conform to the 'Sendable' protocol
struct FlagsResponse: Decodable {
       ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:496:7: warning: sending 'delegate' risks causing data races; this is an error in the Swift 6 language mode
      delegate.track(event: "$experiment_started", properties: properties)
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:496:7: note: task-isolated 'delegate' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
      delegate.track(event: "$experiment_started", properties: properties)
      ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:308:38: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
          DispatchQueue.main.async { completion(result) }
                                   ~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:308:38: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
          DispatchQueue.main.async { completion(result) }
                                     ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:308:49: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
          DispatchQueue.main.async { completion(result) }
                                   ~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:308:49: note: task-isolated 'result' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
          DispatchQueue.main.async { completion(result) }
                                                ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:465:7: warning: sending 'handlers' risks causing data races; this is an error in the Swift 6 language mode
      handlers.forEach { $0(success) }
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/FeatureFlags.swift:465:7: note: task-isolated 'handlers' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
      handlers.forEach { $0(success) }
      ^~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileLogging.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Flush.swift:120:9: warning: sending 'timer' risks causing data races; this is an error in the Swift 6 language mode
        timer.invalidate()
~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Flush.swift:120:9: note: task-isolated 'timer' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
        timer.invalidate()
        ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Flush.swift:121:9: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
        self?.timer = nil
~~~~~~~~^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Flush.swift:121:9: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
        self?.timer = nil
        ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/Flush.swift:97:24: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
      guard let self = self else {
~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Flush.swift:97:24: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
      guard let self = self else {
                       ^~~~
SwiftDriverJobDiscovery normal arm64 Compiling PrintLogging.swift, ReadWriteLock.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 Compiling\ MixpanelLogger.swift,\ MixpanelOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift /Users/admin/builder/spi-builder-workspace/Sources/MixpanelOptions.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: warning: static property 'loggers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  private static var loggers = [MixpanelLogging]()
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: note: convert 'loggers' to a 'let' constant to make 'Sendable' shared state immutable
  private static var loggers = [MixpanelLogging]()
                 ~~~ ^
                 let
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: note: add '@MainActor' to make static property 'loggers' part of global actor 'MainActor'
  private static var loggers = [MixpanelLogging]()
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static var loggers = [MixpanelLogging]()
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: warning: static property 'enabledLevels' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  private static var enabledLevels = Set<MixpanelLogLevel>()
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: note: convert 'enabledLevels' to a 'let' constant to make 'Sendable' shared state immutable
  private static var enabledLevels = Set<MixpanelLogLevel>()
                 ~~~ ^
                 let
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: note: add '@MainActor' to make static property 'enabledLevels' part of global actor 'MainActor'
  private static var enabledLevels = Set<MixpanelLogLevel>()
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static var enabledLevels = Set<MixpanelLogLevel>()
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:62:22: warning: static property 'readWriteLock' is not concurrency-safe because non-'Sendable' type 'ReadWriteLock' may have shared mutable state; this is an error in the Swift 6 language mode
  private static let readWriteLock: ReadWriteLock = ReadWriteLock(label: "loggerLock")
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ReadWriteLock.swift:10:7: note: class 'ReadWriteLock' does not conform to the 'Sendable' protocol
class ReadWriteLock {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:62:22: note: add '@MainActor' to make static property 'readWriteLock' part of global actor 'MainActor'
  private static let readWriteLock: ReadWriteLock = ReadWriteLock(label: "loggerLock")
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:62:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static let readWriteLock: ReadWriteLock = ReadWriteLock(label: "loggerLock")
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:73:19: warning: result of call to 'write(closure:)' is unused
    readWriteLock.write {
                  ^     ~
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:80:19: warning: result of call to 'write(closure:)' is unused
    readWriteLock.write {
                  ^     ~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MixpanelOptions.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling SessionMetadata.swift, Track.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 Compiling\ Constants.swift,\ Data+Compression.swift,\ Error.swift /Users/admin/builder/spi-builder-workspace/Sources/Constants.swift /Users/admin/builder/spi-builder-workspace/Sources/Data+Compression.swift /Users/admin/builder/spi-builder-workspace/Sources/Error.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Constants.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Constants.swift:16:14: warning: static property 'queueSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  static var queueSize = 5000
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Constants.swift:16:14: note: convert 'queueSize' to a 'let' constant to make 'Sendable' shared state immutable
  static var queueSize = 5000
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/Constants.swift:16:14: note: add '@MainActor' to make static property 'queueSize' part of global actor 'MainActor'
  static var queueSize = 5000
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Constants.swift:16:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var queueSize = 5000
             ^
  nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Data+Compression.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:12:8: warning: associated value 'invalidType(type:)' of 'Sendable'-conforming enum 'PropertyError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case invalidType(type: Any)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:16:14: warning: static property 'assertClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  static var assertClosure = swiftAssertClosure
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:16:14: note: convert 'assertClosure' to a 'let' constant to make 'Sendable' shared state immutable
  static var assertClosure = swiftAssertClosure
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:16:14: note: add '@MainActor' to make static property 'assertClosure' part of global actor 'MainActor'
  static var assertClosure = swiftAssertClosure
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:16:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var assertClosure = swiftAssertClosure
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:17:14: warning: static property 'swiftAssertClosure' is not concurrency-safe because non-'Sendable' type '(Bool, String, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
  static let swiftAssertClosure = { Swift.assert($0, $1, file: $2, line: $3) }
             ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:17:14: note: add '@MainActor' to make static property 'swiftAssertClosure' part of global actor 'MainActor'
  static let swiftAssertClosure = { Swift.assert($0, $1, file: $2, line: $3) }
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Error.swift:17:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let swiftAssertClosure = { Swift.assert($0, $1, file: $2, line: $3) }
             ^
  nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Network.swift, People.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 Compiling\ MixpanelLogger.swift,\ MixpanelOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift /Users/admin/builder/spi-builder-workspace/Sources/MixpanelOptions.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: warning: static property 'loggers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  private static var loggers = [MixpanelLogging]()
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: note: convert 'loggers' to a 'let' constant to make 'Sendable' shared state immutable
  private static var loggers = [MixpanelLogging]()
                 ~~~ ^
                 let
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: note: add '@MainActor' to make static property 'loggers' part of global actor 'MainActor'
  private static var loggers = [MixpanelLogging]()
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static var loggers = [MixpanelLogging]()
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: warning: static property 'enabledLevels' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  private static var enabledLevels = Set<MixpanelLogLevel>()
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: note: convert 'enabledLevels' to a 'let' constant to make 'Sendable' shared state immutable
  private static var enabledLevels = Set<MixpanelLogLevel>()
                 ~~~ ^
                 let
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: note: add '@MainActor' to make static property 'enabledLevels' part of global actor 'MainActor'
  private static var enabledLevels = Set<MixpanelLogLevel>()
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static var enabledLevels = Set<MixpanelLogLevel>()
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:62:22: warning: static property 'readWriteLock' is not concurrency-safe because non-'Sendable' type 'ReadWriteLock' may have shared mutable state; this is an error in the Swift 6 language mode
  private static let readWriteLock: ReadWriteLock = ReadWriteLock(label: "loggerLock")
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ReadWriteLock.swift:10:7: note: class 'ReadWriteLock' does not conform to the 'Sendable' protocol
class ReadWriteLock {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:62:22: note: add '@MainActor' to make static property 'readWriteLock' part of global actor 'MainActor'
  private static let readWriteLock: ReadWriteLock = ReadWriteLock(label: "loggerLock")
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:62:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static let readWriteLock: ReadWriteLock = ReadWriteLock(label: "loggerLock")
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:73:19: warning: result of call to 'write(closure:)' is unused
    readWriteLock.write {
                  ^     ~
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:80:19: warning: result of call to 'write(closure:)' is unused
    readWriteLock.write {
                  ^     ~
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MixpanelOptions.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Network.swift, People.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal armv7k Compiling\ SessionMetadata.swift,\ Track.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionMetadata.swift /Users/admin/builder/spi-builder-workspace/Sources/Track.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/SessionMetadata.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SessionMetadata.swift:24:24: warning: capture of 'self' with non-sendable type 'SessionMetadata?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/SessionMetadata.swift:11:7: note: class 'SessionMetadata' does not conform to the 'Sendable' protocol
class SessionMetadata {
      ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Track.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling FlushRequest.swift, Group.swift, JSONHandler.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 Compiling\ MPDB.swift,\ Mixpanel.swift,\ MixpanelInstance.swift /Users/admin/builder/spi-builder-workspace/Sources/MPDB.swift /Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift /Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MPDB.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:289:14: warning: static property 'sharedInstance' is not concurrency-safe because non-'Sendable' type 'MixpanelManager' may have shared mutable state; this is an error in the Swift 6 language mode
  static let sharedInstance = MixpanelManager()
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:287:13: note: class 'MixpanelManager' does not conform to the 'Sendable' protocol
final class MixpanelManager {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:289:14: note: add '@MainActor' to make static property 'sharedInstance' part of global actor 'MainActor'
  static let sharedInstance = MixpanelManager()
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:289:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let sharedInstance = MixpanelManager()
             ^
  nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:786:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:793:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:842:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:798:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:841:27: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
      if let completion = completion {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:841:27: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      if let completion = completion {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:880:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:888:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:896:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:905:47: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
            DispatchQueue.main.async(execute: completion)
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:949:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:903:26: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
        guard let self = self else {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:904:31: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
          if let completion = completion {
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:904:31: note: a function type must be marked '@Sendable' to conform to 'Sendable'
          if let completion = completion {
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:982:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:963:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:981:27: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
      if let completion = completion {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:981:27: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      if let completion = completion {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1064:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1071:45: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
          DispatchQueue.main.async(execute: completion)
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1078:45: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
          DispatchQueue.main.async(execute: completion)
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1101:47: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
            DispatchQueue.main.async(execute: completion)
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1110:45: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
          DispatchQueue.main.async(execute: completion)
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1069:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1070:29: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
        if let completion = completion {
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1070:29: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        if let completion = completion {
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1099:26: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
        guard let self = self else {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1100:31: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
          if let completion = completion {
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1100:31: note: a function type must be marked '@Sendable' to conform to 'Sendable'
          if let completion = completion {
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1105:25: warning: capture of 'eventQueue' with non-sendable type '[InternalProperties]' (aka 'Array<Dictionary<String, Any>>') in a '@Sendable' closure
        self.flushQueue(eventQueue, type: .events)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1106:25: warning: capture of 'peopleQueue' with non-sendable type '[InternalProperties]' (aka 'Array<Dictionary<String, Any>>') in a '@Sendable' closure
        self.flushQueue(peopleQueue, type: .people)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1107:25: warning: capture of 'groupsQueue' with non-sendable type '[InternalProperties]' (aka 'Array<Dictionary<String, Any>>') in a '@Sendable' closure
        self.flushQueue(groupsQueue, type: .groups)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1140:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1169:17: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self else {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1192:21: warning: capture of 'properties' with non-sendable type 'Properties?' (aka 'Optional<Dictionary<String, any MixpanelType>>') in a '@Sendable' closure
        properties: properties,
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1290:19: warning: result of call to 'write(closure:)' is unused
    readWriteLock.write {
                  ^     ~
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1324:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1356:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1372:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1398:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1418:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1420:9: warning: capture of 'properties' with non-sendable type 'Properties' (aka 'Dictionary<String, any MixpanelType>') in a '@Sendable' closure
        properties,
        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1447:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1449:9: warning: capture of 'properties' with non-sendable type 'Properties' (aka 'Dictionary<String, any MixpanelType>') in a '@Sendable' closure
        properties,
        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1451:23: warning: capture of 'defaultValue' with non-sendable type '(any MixpanelType)?' in a '@Sendable' closure
        defaultValue: defaultValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1477:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1500:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1503:9: warning: capture of 'update' with non-sendable type '(inout InternalProperties) -> Void' (aka '(inout Dictionary<String, Any>) -> ()') in a '@Sendable' closure
        update,
        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1503:9: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        update,
        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1619:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1665:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1675:48: warning: capture of 'properties' with non-sendable type 'Properties?' (aka 'Optional<Dictionary<String, any MixpanelType>>') in a '@Sendable' closure
      self.track(event: "$opt_in", properties: properties)
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
SwiftDriverJobDiscovery normal arm64 Compiling SessionMetadata.swift, Track.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal armv7k Compiling\ MixpanelLogger.swift,\ MixpanelOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift /Users/admin/builder/spi-builder-workspace/Sources/MixpanelOptions.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: warning: static property 'loggers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  private static var loggers = [MixpanelLogging]()
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: note: convert 'loggers' to a 'let' constant to make 'Sendable' shared state immutable
  private static var loggers = [MixpanelLogging]()
                 ~~~ ^
                 let
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: note: add '@MainActor' to make static property 'loggers' part of global actor 'MainActor'
  private static var loggers = [MixpanelLogging]()
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:60:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static var loggers = [MixpanelLogging]()
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: warning: static property 'enabledLevels' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  private static var enabledLevels = Set<MixpanelLogLevel>()
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: note: convert 'enabledLevels' to a 'let' constant to make 'Sendable' shared state immutable
  private static var enabledLevels = Set<MixpanelLogLevel>()
                 ~~~ ^
                 let
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: note: add '@MainActor' to make static property 'enabledLevels' part of global actor 'MainActor'
  private static var enabledLevels = Set<MixpanelLogLevel>()
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:61:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static var enabledLevels = Set<MixpanelLogLevel>()
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:62:22: warning: static property 'readWriteLock' is not concurrency-safe because non-'Sendable' type 'ReadWriteLock' may have shared mutable state; this is an error in the Swift 6 language mode
  private static let readWriteLock: ReadWriteLock = ReadWriteLock(label: "loggerLock")
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ReadWriteLock.swift:10:7: note: class 'ReadWriteLock' does not conform to the 'Sendable' protocol
class ReadWriteLock {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:62:22: note: add '@MainActor' to make static property 'readWriteLock' part of global actor 'MainActor'
  private static let readWriteLock: ReadWriteLock = ReadWriteLock(label: "loggerLock")
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:62:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static let readWriteLock: ReadWriteLock = ReadWriteLock(label: "loggerLock")
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:73:19: warning: result of call to 'write(closure:)' is unused
    readWriteLock.write {
                  ^     ~
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelLogger.swift:80:19: warning: result of call to 'write(closure:)' is unused
    readWriteLock.write {
                  ^     ~
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MixpanelOptions.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling FeatureFlags.swift, FileLogging.swift, Flush.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ AutomaticEvents.swift,\ AutomaticProperties.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/AutomaticEvents.swift /Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources/resource_bundle_accessor.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:20:14: warning: static property 'automaticPropertiesLock' is not concurrency-safe because non-'Sendable' type 'ReadWriteLock' may have shared mutable state; this is an error in the Swift 6 language mode
  static let automaticPropertiesLock = ReadWriteLock(label: "automaticPropertiesLock")
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ReadWriteLock.swift:10:7: note: class 'ReadWriteLock' does not conform to the 'Sendable' protocol
class ReadWriteLock {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:20:14: note: add '@MainActor' to make static property 'automaticPropertiesLock' part of global actor 'MainActor'
  static let automaticPropertiesLock = ReadWriteLock(label: "automaticPropertiesLock")
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:20:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let automaticPropertiesLock = ReadWriteLock(label: "automaticPropertiesLock")
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:22:14: warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  static var properties: InternalProperties = {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:22:14: note: convert 'properties' to a 'let' constant to make 'Sendable' shared state immutable
  static var properties: InternalProperties = {
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:22:14: note: add '@MainActor' to make static property 'properties' part of global actor 'MainActor'
  static var properties: InternalProperties = {
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:22:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var properties: InternalProperties = {
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:78:14: warning: static property 'peopleProperties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  static var peopleProperties: InternalProperties = {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:78:14: note: convert 'peopleProperties' to a 'let' constant to make 'Sendable' shared state immutable
  static var peopleProperties: InternalProperties = {
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:78:14: note: add '@MainActor' to make static property 'peopleProperties' part of global actor 'MainActor'
  static var peopleProperties: InternalProperties = {
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AutomaticProperties.swift:78:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var peopleProperties: InternalProperties = {
             ^
  nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling MixpanelLogger.swift, MixpanelOptions.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal armv7k Compiling\ MPDB.swift,\ Mixpanel.swift,\ MixpanelInstance.swift /Users/admin/builder/spi-builder-workspace/Sources/MPDB.swift /Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift /Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MPDB.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:289:14: warning: static property 'sharedInstance' is not concurrency-safe because non-'Sendable' type 'MixpanelManager' may have shared mutable state; this is an error in the Swift 6 language mode
  static let sharedInstance = MixpanelManager()
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:287:13: note: class 'MixpanelManager' does not conform to the 'Sendable' protocol
final class MixpanelManager {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:289:14: note: add '@MainActor' to make static property 'sharedInstance' part of global actor 'MainActor'
  static let sharedInstance = MixpanelManager()
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel.swift:289:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let sharedInstance = MixpanelManager()
             ^
  nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:786:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:793:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:842:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:798:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:841:27: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
      if let completion = completion {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:841:27: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      if let completion = completion {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:880:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:888:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:896:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:905:47: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
            DispatchQueue.main.async(execute: completion)
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:949:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:903:26: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
        guard let self = self else {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:904:31: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
          if let completion = completion {
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:904:31: note: a function type must be marked '@Sendable' to conform to 'Sendable'
          if let completion = completion {
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:982:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:963:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:981:27: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
      if let completion = completion {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:981:27: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      if let completion = completion {
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1064:43: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
        DispatchQueue.main.async(execute: completion)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1071:45: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
          DispatchQueue.main.async(execute: completion)
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1078:45: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
          DispatchQueue.main.async(execute: completion)
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1101:47: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
            DispatchQueue.main.async(execute: completion)
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1110:45: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
          DispatchQueue.main.async(execute: completion)
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1069:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1070:29: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
        if let completion = completion {
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1070:29: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        if let completion = completion {
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1099:26: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
        guard let self = self else {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1100:31: warning: capture of 'completion' with non-sendable type '(() -> Void)?' in a '@Sendable' closure
          if let completion = completion {
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1100:31: note: a function type must be marked '@Sendable' to conform to 'Sendable'
          if let completion = completion {
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1105:25: warning: capture of 'eventQueue' with non-sendable type '[InternalProperties]' (aka 'Array<Dictionary<String, Any>>') in a '@Sendable' closure
        self.flushQueue(eventQueue, type: .events)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1106:25: warning: capture of 'peopleQueue' with non-sendable type '[InternalProperties]' (aka 'Array<Dictionary<String, Any>>') in a '@Sendable' closure
        self.flushQueue(peopleQueue, type: .people)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1107:25: warning: capture of 'groupsQueue' with non-sendable type '[InternalProperties]' (aka 'Array<Dictionary<String, Any>>') in a '@Sendable' closure
        self.flushQueue(groupsQueue, type: .groups)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1140:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1169:17: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self else {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1192:21: warning: capture of 'properties' with non-sendable type 'Properties?' (aka 'Optional<Dictionary<String, any MixpanelType>>') in a '@Sendable' closure
        properties: properties,
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1290:19: warning: result of call to 'write(closure:)' is unused
    readWriteLock.write {
                  ^     ~
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1324:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1356:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1372:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1398:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1418:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1420:9: warning: capture of 'properties' with non-sendable type 'Properties' (aka 'Dictionary<String, any MixpanelType>') in a '@Sendable' closure
        properties,
        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1447:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1449:9: warning: capture of 'properties' with non-sendable type 'Properties' (aka 'Dictionary<String, any MixpanelType>') in a '@Sendable' closure
        properties,
        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1451:23: warning: capture of 'defaultValue' with non-sendable type '(any MixpanelType)?' in a '@Sendable' closure
        defaultValue: defaultValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1477:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1500:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1503:9: warning: capture of 'update' with non-sendable type '(inout InternalProperties) -> Void' (aka '(inout Dictionary<String, Any>) -> ()') in a '@Sendable' closure
        update,
        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1503:9: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        update,
        ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1619:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1665:24: warning: capture of 'self' with non-sendable type 'MixpanelInstance?' in a '@Sendable' closure
      guard let self = self else { return }
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:75:12: note: class 'MixpanelInstance' does not conform to the 'Sendable' protocol
open class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate, AEDelegate,
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelInstance.swift:1675:48: warning: capture of 'properties' with non-sendable type 'Properties?' (aka 'Optional<Dictionary<String, any MixpanelType>>') in a '@Sendable' closure
      self.track(event: "$opt_in", properties: properties)
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/MixpanelType.swift:14:17: note: protocol 'MixpanelType' does not conform to the 'Sendable' protocol
public protocol MixpanelType: Any {
                ^
SwiftDriverJobDiscovery normal arm64_32 Compiling MixpanelLogger.swift, MixpanelOptions.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 Compiling\ PrintLogging.swift,\ ReadWriteLock.swift /Users/admin/builder/spi-builder-workspace/Sources/PrintLogging.swift /Users/admin/builder/spi-builder-workspace/Sources/ReadWriteLock.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/PrintLogging.swift (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64_32 Compiling MixpanelPersistence.swift, MixpanelType.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriverJobDiscovery normal arm64_32 Compiling Constants.swift, Data+Compression.swift, Error.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriverJobDiscovery normal arm64 Compiling FeatureFlags.swift, FileLogging.swift, Flush.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriverJobDiscovery normal armv7k Compiling MixpanelLogger.swift, MixpanelOptions.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriverJobDiscovery normal armv7k Compiling SessionMetadata.swift, Track.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriverJobDiscovery normal arm64_32 Compiling PrintLogging.swift, ReadWriteLock.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriverJobDiscovery normal arm64 Compiling Constants.swift, Data+Compression.swift, Error.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriverJobDiscovery normal arm64 Compiling MPDB.swift, Mixpanel.swift, MixpanelInstance.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, AutomaticEvents.swift, AutomaticProperties.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriver\ Compilation Mixpanel normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Mixpanel' from project 'Mixpanel')
    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 Mixpanel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.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-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel-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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.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/Mixpanel.build/Debug-watchos/Mixpanel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel_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/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel-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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Binary/Mixpanel.o normal arm64 (in target 'Mixpanel' from project 'Mixpanel')
    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-watchos4.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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel_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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Binary/Mixpanel.o
SwiftDriverJobDiscovery normal arm64_32 Compiling MPDB.swift, Mixpanel.swift, MixpanelInstance.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriver\ Compilation Mixpanel normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Mixpanel' from project 'Mixpanel')
    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 Mixpanel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.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-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel-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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.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/Mixpanel.build/Debug-watchos/Mixpanel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel_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/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel-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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Binary/Mixpanel.o normal arm64_32 (in target 'Mixpanel' from project 'Mixpanel')
    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-watchos4.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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel_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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Binary/Mixpanel.o
SwiftDriverJobDiscovery normal armv7k Compiling MPDB.swift, Mixpanel.swift, MixpanelInstance.swift (in target 'Mixpanel' from project 'Mixpanel')
SwiftDriver\ Compilation Mixpanel normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Mixpanel' from project 'Mixpanel')
    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 Mixpanel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.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-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel-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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.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/Mixpanel.build/Debug-watchos/Mixpanel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel_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/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel-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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Binary/Mixpanel.o normal armv7k (in target 'Mixpanel' from project 'Mixpanel')
    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-watchos4.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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel_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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Binary/Mixpanel.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.o normal arm64\ armv7k\ arm64_32 (in target 'Mixpanel' from project 'Mixpanel')
    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/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Binary/Mixpanel.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Binary/Mixpanel.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Binary/Mixpanel.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.o
ExtractAppIntentsMetadata (in target 'Mixpanel' from project 'Mixpanel')
    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 Mixpanel --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 4.0 --bundle-identifier spi-builder-workspace.Mixpanel --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.appintents --target-triple arm64-apple-watchos4.0 --target-triple armv7k-apple-watchos4.0 --target-triple arm64_32-apple-watchos4.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Mixpanel.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Mixpanel.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64/Mixpanel.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/armv7k/Mixpanel.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mixpanel.build/Debug-watchos/Mixpanel.build/Objects-normal/arm64_32/Mixpanel.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-05-31 05:57:20.576 appintentsmetadataprocessor[748:4517] Starting appintentsmetadataprocessor export
2025-05-31 05:57:20.619 appintentsmetadataprocessor[748:4517] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.o (in target 'Mixpanel' from project 'Mixpanel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Mixpanel.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Mixpanel",
  "name" : "Mixpanel",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "11.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    }
  ],
  "products" : [
    {
      "name" : "Mixpanel",
      "targets" : [
        "Mixpanel"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Mixpanel",
      "module_type" : "SwiftTarget",
      "name" : "Mixpanel",
      "path" : "Sources",
      "product_memberships" : [
        "Mixpanel"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Mixpanel/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "AutomaticEvents.swift",
        "AutomaticProperties.swift",
        "Constants.swift",
        "Data+Compression.swift",
        "Error.swift",
        "FeatureFlags.swift",
        "FileLogging.swift",
        "Flush.swift",
        "FlushRequest.swift",
        "Group.swift",
        "JSONHandler.swift",
        "MPDB.swift",
        "Mixpanel.swift",
        "MixpanelInstance.swift",
        "MixpanelLogger.swift",
        "MixpanelOptions.swift",
        "MixpanelPersistence.swift",
        "MixpanelType.swift",
        "Network.swift",
        "People.swift",
        "PrintLogging.swift",
        "ReadWriteLock.swift",
        "SessionMetadata.swift",
        "Track.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.