The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of LastFM.swift, reference 1.5.4 (0b27c4), with Swift 6.1 for visionOS using Xcode 16.3 on 1 May 2025 04:35:09 UTC.

Swift 6 data race errors: 11

Build Command

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

        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AlbumModuleTests.swift:1113:9: note: sending task-isolated value of non-Sendable type 'AlbumModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
SwiftCompile normal arm64 Compiling\ ChartModuleTests.swift,\ GeoModuleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:299:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:194:10: note: add '@MainActor' to make instance method 'test_getTopTracks_success()' part of global actor 'MainActor'
    func test_getTopTracks_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:370:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:336:10: note: add '@MainActor' to make instance method 'test_getTopTracks_failure()' part of global actor 'MainActor'
    func test_getTopTracks_failure() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:416:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:392:10: note: add '@MainActor' to make instance method 'test_getTopArtists_success()' part of global actor 'MainActor'
    func test_getTopArtists_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:468:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:445:10: note: add '@MainActor' to make instance method 'test_getTopTags_success()' part of global actor 'MainActor'
    func test_getTopTags_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:299:9: warning: sending value of non-Sendable type 'ChartModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:299:9: note: sending task-isolated value of non-Sendable type 'ChartModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:370:9: warning: sending value of non-Sendable type 'ChartModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:370:9: note: sending task-isolated value of non-Sendable type 'ChartModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:416:9: warning: sending value of non-Sendable type 'ChartModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:416:9: note: sending task-isolated value of non-Sendable type 'ChartModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:468:9: warning: sending value of non-Sendable type 'ChartModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:468:9: note: sending task-isolated value of non-Sendable type 'ChartModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:167:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:136:10: note: add '@MainActor' to make instance method 'test_getTopTracks_success()' part of global actor 'MainActor'
    func test_getTopTracks_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:238:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:204:10: note: add '@MainActor' to make instance method 'test_getTopTracks_failure()' part of global actor 'MainActor'
    func test_getTopTracks_failure() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:294:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:270:10: note: add '@MainActor' to make instance method 'test_getTopArtists_success()' part of global actor 'MainActor'
    func test_getTopArtists_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:167:9: warning: sending value of non-Sendable type 'GeoModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:167:9: note: sending task-isolated value of non-Sendable type 'GeoModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:238:9: warning: sending value of non-Sendable type 'GeoModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:238:9: note: sending task-isolated value of non-Sendable type 'GeoModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:294:9: warning: sending value of non-Sendable type 'GeoModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:294:9: note: sending task-isolated value of non-Sendable type 'GeoModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ LastFMTests.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/LastFMTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/DerivedSources/resource_bundle_accessor.swift (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AlbumModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AlbumModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AlbumModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AlbumModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ChartModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/GeoModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Constants.swift /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/TestUtils/Constants.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/TestUtils/Constants.swift (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Mock.swift /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Protocols/Mock.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Protocols/Mock.swift (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Utils.swift /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/TestUtils/Utils.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/TestUtils/Utils.swift (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ LibraryModuleTests.swift,\ TagModuleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift:116:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift:96:10: note: add '@MainActor' to make instance method 'test_getArtists_success()' part of global actor 'MainActor'
    func test_getArtists_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift:116:9: warning: sending value of non-Sendable type 'LibraryModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/LibraryModuleTests.swift:116:9: note: sending task-isolated value of non-Sendable type 'LibraryModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:109:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:88:10: note: add '@MainActor' to make instance method 'test_getTopTracks_success()' part of global actor 'MainActor'
    func test_getTopTracks_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:233:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:209:10: note: add '@MainActor' to make instance method 'test_getTopArtists_success()' part of global actor 'MainActor'
    func test_getTopArtists_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:331:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:311:10: note: add '@MainActor' to make instance method 'test_getTopAlbums_success()' part of global actor 'MainActor'
    func test_getTopAlbums_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:402:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:379:10: note: add '@MainActor' to make instance method 'test_getInfo()' part of global actor 'MainActor'
    func test_getInfo() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:471:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:448:10: note: add '@MainActor' to make instance method 'test_getWeeklyChartList_success()' part of global actor 'MainActor'
    func test_getWeeklyChartList_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:544:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:521:10: note: add '@MainActor' to make instance method 'test_getSimilar_success()' part of global actor 'MainActor'
    func test_getSimilar_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:620:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:594:10: note: add '@MainActor' to make instance method 'test_getTopTags_success()' part of global actor 'MainActor'
    func test_getTopTags_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:109:9: warning: sending value of non-Sendable type 'TagModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:109:9: note: sending task-isolated value of non-Sendable type 'TagModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:233:9: warning: sending value of non-Sendable type 'TagModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:233:9: note: sending task-isolated value of non-Sendable type 'TagModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:331:9: warning: sending value of non-Sendable type 'TagModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:331:9: note: sending task-isolated value of non-Sendable type 'TagModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:402:9: warning: sending value of non-Sendable type 'TagModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:402:9: note: sending task-isolated value of non-Sendable type 'TagModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:471:9: warning: sending value of non-Sendable type 'TagModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:471:9: note: sending task-isolated value of non-Sendable type 'TagModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:544:9: warning: sending value of non-Sendable type 'TagModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:544:9: note: sending task-isolated value of non-Sendable type 'TagModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:620:9: warning: sending value of non-Sendable type 'TagModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TagModuleTests.swift:620:9: note: sending task-isolated value of non-Sendable type 'TagModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
SwiftCompile normal arm64 Compiling\ UserModuleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:78:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:48:10: note: add '@MainActor' to make instance method 'test_invalidAPIKey()' part of global actor 'MainActor'
    func test_invalidAPIKey() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:133:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:104:10: note: add '@MainActor' to make instance method 'test_withInvalidPageNumber()' part of global actor 'MainActor'
    func test_withInvalidPageNumber() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:311:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:287:10: note: add '@MainActor' to make instance method 'test_getRecentTracks_success()' part of global actor 'MainActor'
    func test_getRecentTracks_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:353:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:336:10: note: add '@MainActor' to make instance method 'test_getRecentTracks_failure()' part of global actor 'MainActor'
    func test_getRecentTracks_failure() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:616:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:585:10: note: add '@MainActor' to make instance method 'test_getExtendedRecentTracks_success()' part of global actor 'MainActor'
    func test_getExtendedRecentTracks_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:658:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:641:10: note: add '@MainActor' to make instance method 'test_getExtendedRecentTracks_failure()' part of global actor 'MainActor'
    func test_getExtendedRecentTracks_failure() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:766:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:735:10: note: add '@MainActor' to make instance method 'test_getTopTracks_success()' part of global actor 'MainActor'
    func test_getTopTracks_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:828:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:800:10: note: add '@MainActor' to make instance method 'test_getTopTracks_failure()' part of global actor 'MainActor'
    func test_getTopTracks_failure() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:912:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:887:10: note: add '@MainActor' to make instance method 'test_getWeeklyTrackChart_success()' part of global actor 'MainActor'
    func test_getWeeklyTrackChart_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:961:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:941:10: note: add '@MainActor' to make instance method 'test_getWeeklyTrackChart_failure()' part of global actor 'MainActor'
    func test_getWeeklyTrackChart_failure() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1060:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1040:10: note: add '@MainActor' to make instance method 'test_getLovedTracks_success()' part of global actor 'MainActor'
    func test_getLovedTracks_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1101:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1085:10: note: add '@MainActor' to make instance method 'test_getLovedTracks_failure()' part of global actor 'MainActor'
    func test_getLovedTracks_failure() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1181:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1161:10: note: add '@MainActor' to make instance method 'test_getTopArtists_success()' part of global actor 'MainActor'
    func test_getTopArtists_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1222:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1206:10: note: add '@MainActor' to make instance method 'test_getTopArtists_failure()' part of global actor 'MainActor'
    func test_getTopArtists_failure() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1292:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1267:10: note: add '@MainActor' to make instance method 'test_getWeeklyArtistChart_success()' part of global actor 'MainActor'
    func test_getWeeklyArtistChart_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1392:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1372:10: note: add '@MainActor' to make instance method 'test_getTopAlbums_success()' part of global actor 'MainActor'
    func test_getTopAlbums_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1481:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1456:10: note: add '@MainActor' to make instance method 'test_getWeeklyAlbumChart()' part of global actor 'MainActor'
    func test_getWeeklyAlbumChart() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1590:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1568:10: note: add '@MainActor' to make instance method 'test_getInfo()' part of global actor 'MainActor'
    func test_getInfo() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1712:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1689:10: note: add '@MainActor' to make instance method 'test_getInfoBySessionKey()' part of global actor 'MainActor'
    func test_getInfoBySessionKey() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1841:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1817:10: note: add '@MainActor' to make instance method 'test_getFriends_success()' part of global actor 'MainActor'
    func test_getFriends_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1911:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1888:10: note: add '@MainActor' to make instance method 'test_getWeeklyChartList_success()' part of global actor 'MainActor'
    func test_getWeeklyChartList_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:78:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:78:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:133:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:133:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:311:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:311:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:353:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:353:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:616:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:616:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:658:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:658:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:766:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:766:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:828:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:828:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:912:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:912:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:961:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:961:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1060:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1060:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1101:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1101:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1181:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1181:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1222:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1222:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1292:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1292:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1392:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1392:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1481:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1481:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1590:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1590:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1712:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1712:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1841:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1841:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1911:9: warning: sending value of non-Sendable type 'UserTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/UserModuleTests.swift:1911:9: note: sending task-isolated value of non-Sendable type 'UserTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
SwiftDriverJobDiscovery normal arm64 Compiling SearchResults.swift, ServiceSession.swift, SimilarTag.swift, SimpleWiki.swift, TagInfo.swift, TagTopAlbum.swift, TagTopArtist.swift, TagTopTrack.swift, TokenResponse.swift, TopGlobalTag.swift, TopTag.swift (in target 'LastFM' from project 'LastFM.swift')
SwiftCompile normal arm64 Compiling\ TrackModuleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:118:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:88:10: note: add '@MainActor' to make instance method 'test_scrobble_success()' part of global actor 'MainActor'
    func test_scrobble_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:329:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:271:10: note: add '@MainActor' to make instance method 'test_multiple_scrobble_success()' part of global actor 'MainActor'
    func test_multiple_scrobble_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:396:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:369:10: note: add '@MainActor' to make instance method 'test_invalid_sessionkey()' part of global actor 'MainActor'
    func test_invalid_sessionkey() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:481:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:458:10: note: add '@MainActor' to make instance method 'test_scrobble_ignored()' part of global actor 'MainActor'
    func test_scrobble_ignored() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:538:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:518:10: note: add '@MainActor' to make instance method 'test_love_success()' part of global actor 'MainActor'
    func test_love_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:614:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:594:10: note: add '@MainActor' to make instance method 'test_unlove_success()' part of global actor 'MainActor'
    func test_unlove_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:725:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:693:10: note: add '@MainActor' to make instance method 'test_update_now_playing_success()' part of global actor 'MainActor'
    func test_update_now_playing_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:834:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:804:10: note: add '@MainActor' to make instance method 'test_getTrackInfo_by_artist_name_no_username_and_no_mbid_in_response()' part of global actor 'MainActor'
    func test_getTrackInfo_by_artist_name_no_username_and_no_mbid_in_response() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:908:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:878:10: note: add '@MainActor' to make instance method 'test_getTrackInfo_no_album()' part of global actor 'MainActor'
    func test_getTrackInfo_no_album() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1007:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:977:10: note: add '@MainActor' to make instance method 'test_getTrackInfo_by_artist_name_with_username_and_no_mbid_in_response()' part of global actor 'MainActor'
    func test_getTrackInfo_by_artist_name_with_username_and_no_mbid_in_response() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1126:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1102:10: note: add '@MainActor' to make instance method 'test_getTrackInfo_by_mbid_no_username()' part of global actor 'MainActor'
    func test_getTrackInfo_by_mbid_no_username() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1245:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1221:10: note: add '@MainActor' to make instance method 'test_getTrackInfo_by_mbid_with_username()' part of global actor 'MainActor'
    func test_getTrackInfo_by_mbid_with_username() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1351:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1321:10: note: add '@MainActor' to make instance method 'test_search_success()' part of global actor 'MainActor'
    func test_search_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1421:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1399:10: note: add '@MainActor' to make instance method 'test_addTags_success()' part of global actor 'MainActor'
    func test_addTags_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1500:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1479:10: note: add '@MainActor' to make instance method 'test_removeTag_success()' part of global actor 'MainActor'
    func test_removeTag_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1593:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1570:10: note: add '@MainActor' to make instance method 'test_getCorrection_success()' part of global actor 'MainActor'
    func test_getCorrection_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1703:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1673:10: note: add '@MainActor' to make instance method 'test_getSimilar_success()' part of global actor 'MainActor'
    func test_getSimilar_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1774:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1745:10: note: add '@MainActor' to make instance method 'test_getSimilarByMBID_success()' part of global actor 'MainActor'
    func test_getSimilarByMBID_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1859:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1829:10: note: add '@MainActor' to make instance method 'test_getTags_success()' part of global actor 'MainActor'
    func test_getTags_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1930:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1901:10: note: add '@MainActor' to make instance method 'test_getTagsByMBID_success()' part of global actor 'MainActor'
    func test_getTagsByMBID_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:2013:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1985:10: note: add '@MainActor' to make instance method 'test_getTopTags_success()' part of global actor 'MainActor'
    func test_getTopTags_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:2072:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:2049:10: note: add '@MainActor' to make instance method 'test_getTopTagsByMBID_success()' part of global actor 'MainActor'
    func test_getTopTagsByMBID_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:118:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:118:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:329:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:329:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:396:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:396:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:481:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:481:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:538:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:538:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:614:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:614:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:725:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:725:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:834:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:834:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:908:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:908:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1007:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1007:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1126:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1126:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1245:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1245:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1351:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1351:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1421:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1421:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1500:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1500:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1593:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1593:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1703:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1703:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1774:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1774:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1859:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1859:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1930:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:1930:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:2013:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:2013:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:2072:9: warning: sending value of non-Sendable type 'TrackModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/TrackModuleTests.swift:2072:9: note: sending task-isolated value of non-Sendable type 'TrackModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
SwiftDriverJobDiscovery normal arm64 Compiling StringCodingKeys.swift, RuntimeError.swift, ScrobbleError.swift, KeyedDecodingContainer+StringDecoding.swift, String+encodeURIComponent.swift, SwiftRestClient+APIClient.swift, URLComponents+lastFMUrl.swift, LastFM.swift, AlbumInfo.swift, AlbumInfoTrack.swift, AlbumSearchResult.swift (in target 'LastFM' from project 'LastFM.swift')
SwiftCompile normal arm64 Compiling\ ArtistModuleTests.swift,\ AuthModuleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:550:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:520:10: note: add '@MainActor' to make instance method 'test_corrected_getTopTracks_success()' part of global actor 'MainActor'
    func test_corrected_getTopTracks_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:621:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:591:10: note: add '@MainActor' to make instance method 'test_corrected_getTopTracksByMBID_success()' part of global actor 'MainActor'
    func test_corrected_getTopTracksByMBID_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:694:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:664:10: note: add '@MainActor' to make instance method 'test_non_corrected_getTopTracks_success()' part of global actor 'MainActor'
    func test_non_corrected_getTopTracks_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:765:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:731:10: note: add '@MainActor' to make instance method 'test_getTopTracks_failure()' part of global actor 'MainActor'
    func test_getTopTracks_failure() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:831:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:800:10: note: add '@MainActor' to make instance method 'test_getSimilar_success()' part of global actor 'MainActor'
    func test_getSimilar_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:902:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:871:10: note: add '@MainActor' to make instance method 'test_getSimilarByMBID_success()' part of global actor 'MainActor'
    func test_getSimilarByMBID_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:965:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:941:10: note: add '@MainActor' to make instance method 'test_search()' part of global actor 'MainActor'
    func test_search() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1026:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1002:10: note: add '@MainActor' to make instance method 'test_getTopAlbums_success()' part of global actor 'MainActor'
    func test_getTopAlbums_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1085:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1061:10: note: add '@MainActor' to make instance method 'test_getTopAlbumsByMBID_success()' part of global actor 'MainActor'
    func test_getTopAlbumsByMBID_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1160:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1129:10: note: add '@MainActor' to make instance method 'test_getInfo_with_username()' part of global actor 'MainActor'
    func test_getInfo_with_username() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1233:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1203:10: note: add '@MainActor' to make instance method 'test_getInfo_no_username()' part of global actor 'MainActor'
    func test_getInfo_no_username() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1309:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1278:10: note: add '@MainActor' to make instance method 'test_getInfo_byMBID_with_username()' part of global actor 'MainActor'
    func test_getInfo_byMBID_with_username() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1367:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1352:10: note: add '@MainActor' to make instance method 'test_addTags_success()' part of global actor 'MainActor'
    func test_addTags_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1437:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1422:10: note: add '@MainActor' to make instance method 'test_removeTag_success()' part of global actor 'MainActor'
    func test_removeTag_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1510:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1487:10: note: add '@MainActor' to make instance method 'test_getCorrection_success()' part of global actor 'MainActor'
    func test_getCorrection_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1583:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1554:10: note: add '@MainActor' to make instance method 'test_getTags_success()' part of global actor 'MainActor'
    func test_getTags_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1654:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1625:10: note: add '@MainActor' to make instance method 'test_getTagsByMBID_success()' part of global actor 'MainActor'
    func test_getTagsByMBID_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1715:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1692:10: note: add '@MainActor' to make instance method 'test_getTopTags_success()' part of global actor 'MainActor'
    func test_getTopTags_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1776:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1753:10: note: add '@MainActor' to make instance method 'test_getTopTagsByMBID_success()' part of global actor 'MainActor'
    func test_getTopTagsByMBID_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:550:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:550:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:621:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:621:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:694:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:694:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:765:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:765:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:831:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:831:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:902:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:902:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:965:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:965:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1026:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1026:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1085:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1085:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1160:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1160:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1233:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1233:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1309:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1309:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1367:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1367:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1437:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1437:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1510:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1510:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1583:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1583:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1654:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1654:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1715:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1715:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1776:9: warning: sending value of non-Sendable type 'ArtistModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/ArtistModuleTests.swift:1776:9: note: sending task-isolated value of non-Sendable type 'ArtistModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:6:24: warning: static property 'lastFM' is not concurrency-safe because non-'Sendable' type 'LastFM' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let lastFM = LastFM(
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/LastFM/LastFM.swift:1:20: note: class 'LastFM' does not conform to the 'Sendable' protocol
final public class LastFM {
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'LastFM'
@testable import LastFM
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:6:24: note: add '@MainActor' to make static property 'lastFM' part of global actor 'MainActor'
    private static let lastFM = LastFM(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let lastFM = LastFM(
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:80:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:57:10: note: add '@MainActor' to make instance method 'test_getSession_success()' part of global actor 'MainActor'
    func test_getSession_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:140:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:117:10: note: add '@MainActor' to make instance method 'test_getToken_success()' part of global actor 'MainActor'
    func test_getToken_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:165:42: warning: 'getMobileSession(username:password:)' is deprecated: Last.FM: This method has other parameters which are now deprecated and should not be used.
        let session = try await instance.getMobileSession(username: "pepiro", password: "436tggdsgh")
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:207:22: warning: 'getMobileSession(username:password:onCompletion:)' is deprecated: Last.FM: This method has other parameters which are now deprecated and should not be used.
        try instance.getMobileSession(username: "pepiro", password: "436tggdsgh") { result in
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:218:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:193:10: note: add '@MainActor' to make instance method 'test_getMobileSession_success()' part of global actor 'MainActor'
    func test_getMobileSession_success() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:80:9: warning: sending value of non-Sendable type 'AuthModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:80:9: note: sending task-isolated value of non-Sendable type 'AuthModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:140:9: warning: sending value of non-Sendable type 'AuthModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:140:9: note: sending task-isolated value of non-Sendable type 'AuthModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:218:9: warning: sending value of non-Sendable type 'AuthModuleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Modules/AuthModuleTests.swift:218:9: note: sending task-isolated value of non-Sendable type 'AuthModuleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 3)
        ^
SwiftDriverJobDiscovery normal arm64 Compiling Mock.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftDriver\ Compilation LastFM normal arm64 com.apple.xcode.tools.swift.compiler (in target 'LastFM' from project 'LastFM.swift')
    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 LastFM -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/LastFM.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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/LastFM-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/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/LastFM.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/LastFM.swift.build/Debug-xros/LastFM.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/LastFM_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.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/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/LastFM-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Constants.swift (in target 'LastFMTests' from project 'LastFM.swift')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftRestClient.o (in target 'SwiftRestClient' from project 'SwiftRestClient')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftRestClient
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftRestClient.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFM.o normal (in target 'LastFM' from project 'LastFM.swift')
    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-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/LastFM.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/LastFM_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/LastFM_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/LastFM.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFM.o
SwiftDriverJobDiscovery normal arm64 Emitting module for LastFMTests (in target 'LastFMTests' from project 'LastFM.swift')
SwiftDriver\ Compilation\ Requirements LastFMTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'LastFMTests' from project 'LastFM.swift')
    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 LastFMTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests-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/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -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-xros/LastFMTests.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.swiftmodule (in target 'LastFMTests' from project 'LastFM.swift')
    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/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.swiftdoc (in target 'LastFMTests' from project 'LastFM.swift')
    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/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.swiftmodule/arm64-apple-xros.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.abi.json (in target 'LastFMTests' from project 'LastFM.swift')
    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/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.swiftsourceinfo (in target 'LastFMTests' from project 'LastFM.swift')
    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/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
ExtractAppIntentsMetadata (in target 'LastFM' from project 'LastFM.swift')
    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 LastFM --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.LastFM --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFM.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFM.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/LastFM_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/LastFM.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/LastFM.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/LastFM.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/LastFM.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 21:35:07.031 appintentsmetadataprocessor[795:4490] Starting appintentsmetadataprocessor export
2025-04-30 21:35:07.067 appintentsmetadataprocessor[795:4490] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling Utils.swift (in target 'LastFMTests' from project 'LastFM.swift')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFM.o (in target 'LastFM' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFM.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/empty-LastFMTests.plist (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/empty-LastFMTests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -format binary -platform xros -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest/Info.plist
CpResource /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest/LastFM.swift_LastFMTests.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFM.swift_LastFMTests.bundle (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFM.swift_LastFMTests.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, LastFMTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftDriverJobDiscovery normal arm64 Compiling ChartModuleTests.swift, GeoModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftDriverJobDiscovery normal arm64 Compiling LibraryModuleTests.swift, TagModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftDriverJobDiscovery normal arm64 Compiling APIClientMock.swift, AlbumModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftDriverJobDiscovery normal arm64 Compiling UserModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftDriverJobDiscovery normal arm64 Compiling ArtistModuleTests.swift, AuthModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftDriverJobDiscovery normal arm64 Compiling TrackModuleTests.swift (in target 'LastFMTests' from project 'LastFM.swift')
SwiftDriver\ Compilation LastFMTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'LastFMTests' from project 'LastFM.swift')
    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 LastFMTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests-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/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -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/Products/Debug-xros/LastFMTests.xctest/LastFMTests normal (in target 'LastFMTests' from project 'LastFM.swift')
    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-xros1.0 -bundle -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.LinkFileList -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest/LastFMTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftRestClient.build/Debug-xros/SwiftRestClient.build/Objects-normal/arm64/SwiftRestClient.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFM.build/Objects-normal/arm64/LastFM.swiftmodule
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest/LastFMTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest/Extensions --platform xros --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os
Ignoring --strip-bitcode because --sign was not passed
ExtractAppIntentsMetadata (in target 'LastFMTests' from project 'LastFM.swift')
    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 LastFMTests --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.LastFMTests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest/LastFMTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/LastFMTests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/LastFMTests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LastFM.swift.build/Debug-xros/LastFMTests.build/Objects-normal/arm64/LastFMTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 21:35:08.397 appintentsmetadataprocessor[798:4531] Starting appintentsmetadataprocessor export
2025-04-30 21:35:08.399 appintentsmetadataprocessor[798:4531] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateDSYMFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest.dSYM /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest/LastFMTests (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest/LastFMTests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest.dSYM
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest (in target 'LastFMTests' from project 'LastFM.swift')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LastFMTests.xctest
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swiftrestclient",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.7.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/duhnnie/SwiftRestClient"
    }
  ],
  "manifest_display_name" : "LastFM.swift",
  "name" : "LastFM.swift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    },
    {
      "name" : "tvos",
      "version" : "11.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "LastFM",
      "targets" : [
        "LastFM"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "LastFMTests",
      "module_type" : "SwiftTarget",
      "name" : "LastFMTests",
      "path" : "Tests/LastFMTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/LastFMTests/Resources",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "LastFMTests.swift",
        "Mocks/APIClientMock.swift",
        "Modules/AlbumModuleTests.swift",
        "Modules/ArtistModuleTests.swift",
        "Modules/AuthModuleTests.swift",
        "Modules/ChartModuleTests.swift",
        "Modules/GeoModuleTests.swift",
        "Modules/LibraryModuleTests.swift",
        "Modules/TagModuleTests.swift",
        "Modules/TrackModuleTests.swift",
        "Modules/UserModuleTests.swift",
        "Protocols/Mock.swift",
        "TestUtils/Constants.swift",
        "TestUtils/Utils.swift"
      ],
      "target_dependencies" : [
        "LastFM"
      ],
      "type" : "test"
    },
    {
      "c99name" : "LastFM",
      "module_type" : "SwiftTarget",
      "name" : "LastFM",
      "path" : "Sources/LastFM",
      "product_dependencies" : [
        "SwiftRestClient"
      ],
      "product_memberships" : [
        "LastFM"
      ],
      "sources" : [
        "Common/StringCodingKeys.swift",
        "Errors/RuntimeError.swift",
        "Errors/ScrobbleError.swift",
        "Extensions/KeyedDecodingContainer+StringDecoding.swift",
        "Extensions/String+encodeURIComponent.swift",
        "Extensions/SwiftRestClient+APIClient.swift",
        "Extensions/URLComponents+lastFMUrl.swift",
        "LastFM.swift",
        "Models/AlbumInfo.swift",
        "Models/AlbumInfoTrack.swift",
        "Models/AlbumSearchResult.swift",
        "Models/ArtistCorrection.swift",
        "Models/ArtistInfo.swift",
        "Models/ArtistInfoStats.swift",
        "Models/ArtistSearchResult.swift",
        "Models/ArtistSimilar.swift",
        "Models/ArtistTopAlbum.swift",
        "Models/ArtistTopTrack.swift",
        "Models/ChartDateRange.swift",
        "Models/ChartTopArtist.swift",
        "Models/ChartTopTag.swift",
        "Models/ChartTopTrack.swift",
        "Models/CollectionList.swift",
        "Models/CollectionPage.swift",
        "Models/Core/LastFMEntity.swift",
        "Models/Core/LastFMExtendedEntity.swift",
        "Models/Core/LastFMMBEntity.swift",
        "Models/Core/LastFMMBExtendedEntity.swift",
        "Models/Core/LastFMOptionalMBEntity.swift",
        "Models/Core/MBEntity.swift",
        "Models/Core/Streamable.swift",
        "Models/ExtendedRecentTrack.swift",
        "Models/GeoTopArtist.swift",
        "Models/GeoTopTrack.swift",
        "Models/LastFMError.swift",
        "Models/LastFMImages.swift",
        "Models/LibraryArtists.swift",
        "Models/LovedTrack.swift",
        "Models/Params/AlbumAddTagsParams.swift",
        "Models/Params/AlbumGetTagsParams.swift",
        "Models/Params/AlbumInfoByMBIDParams.swift",
        "Models/Params/AlbumInfoParams.swift",
        "Models/Params/ArtistInfoParams.swift",
        "Models/Params/ArtistSimilarParams.swift",
        "Models/Params/ArtistTagsParams.swift",
        "Models/Params/ArtistTopItemsParams.swift",
        "Models/Params/ChartTopitemsParams.swift",
        "Models/Params/GeoTopTracksParams.swift",
        "Models/Params/InfoByMBIDParams.swift",
        "Models/Params/MBIDListParams.swift",
        "Models/Params/MBIDPageParams.swift",
        "Models/Params/RecentTracksParams.swift",
        "Models/Params/ScrobbleParams.swift",
        "Models/Params/ScrobbleParamsItem.swift",
        "Models/Params/SearchParams.swift",
        "Models/Params/TrackInfoParams.swift",
        "Models/Params/TrackNowPlayingParams.swift",
        "Models/Params/TrackParams.swift",
        "Models/Params/TrackSearchParams.swift",
        "Models/Params/TrackSimilarParams.swift",
        "Models/Params/TrackTagsParams.swift",
        "Models/Params/UserTopItemsParams.swift",
        "Models/Params/UserWeeklyChartParams.swift",
        "Models/RecentTrack.swift",
        "Models/ScrobbleList.swift",
        "Models/ScrobbledTrack.swift",
        "Models/SearchResults.swift",
        "Models/ServiceSession.swift",
        "Models/SimilarTag.swift",
        "Models/SimpleWiki.swift",
        "Models/TagInfo.swift",
        "Models/TagTopAlbum.swift",
        "Models/TagTopArtist.swift",
        "Models/TagTopTrack.swift",
        "Models/TokenResponse.swift",
        "Models/TopGlobalTag.swift",
        "Models/TopTag.swift",
        "Models/TrackCorrection.swift",
        "Models/TrackInfo.swift",
        "Models/TrackInfoAlbum.swift",
        "Models/TrackPlayingNow.swift",
        "Models/TrackSearchResult.swift",
        "Models/TrackSimilar.swift",
        "Models/UserInfo.swift",
        "Models/UserPublicInfo.swift",
        "Models/UserTopAlbum.swift",
        "Models/UserTopArtist.swift",
        "Models/UserTopTrack.swift",
        "Models/UserWeeklyAlbumChart.swift",
        "Models/UserWeeklyArtistChart .swift",
        "Models/UserWeeklyTrackChart.swift",
        "Models/Wiki.swift",
        "Modules/AlbumModule.swift",
        "Modules/ArtistModule.swift",
        "Modules/AuthModule.swift",
        "Modules/ChartModule.swift",
        "Modules/GeoModule.swift",
        "Modules/LibraryModule.swift",
        "Modules/TagModule.swift",
        "Modules/TrackModule.swift",
        "Modules/UserModule.swift",
        "Protocols/APIClient.swift",
        "Protocols/MBeable.swift",
        "Protocols/MethodKey.swift",
        "Protocols/Nameable.swift",
        "Protocols/Params.swift",
        "Protocols/Requester.swift",
        "Utils/Crypto.swift",
        "Utils/RequestUtils.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.