Build Information
Successful build of Harmony, reference master (a00a49
), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 29 Apr 2025 15:30:36 UTC.
Swift 6 data race errors: 62
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Harmony-Package -destination platform=macOS,arch=arm64 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
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ Harmony (in target 'Harmony' from project 'Harmony')
EmitSwiftModule normal arm64 (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Error/ClassError.swift:43:12: warning: non-final class 'ClassError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
open class ClassError: Error, CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Error/CoreError.swift:29:18: warning: non-final class 'Unknown' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class Unknown: ClassError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Error/CoreError.swift:40:18: warning: non-final class 'NotFound' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class NotFound: ClassError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Error/CoreError.swift:47:18: warning: non-final class 'IllegalArgument' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class IllegalArgument: ClassError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Error/CoreError.swift:54:18: warning: non-final class 'NotImplemented' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class NotImplemented: ClassError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Error/CoreError.swift:61:18: warning: non-final class 'NotValid' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class NotValid: ClassError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Error/CoreError.swift:68:18: warning: non-final class 'Failed' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class Failed: ClassError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Error/CoreError.swift:74:18: warning: non-final class 'QueryNotSupported' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class QueryNotSupported: ClassError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Error/CoreError.swift:80:18: warning: non-final class 'DataSerialization' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class DataSerialization: ClassError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Error/CoreError.swift:89:11: warning: non-final class 'NSError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class NSError: Unknown {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Error/CoreError.swift:107:11: warning: non-final class 'OSStatusFailure' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class OSStatusFailure: Failed {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/Data+Extensions.swift:41:27: warning: static property 'upperCase' is not concurrency-safe because non-'Sendable' type 'Data.HexEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let upperCase = HexEncodingOptions(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/Data+Extensions.swift:35:12: note: consider making struct 'HexEncodingOptions' conform to the 'Sendable' protocol
struct HexEncodingOptions: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/Data+Extensions.swift:41:27: note: add '@MainActor' to make static property 'upperCase' part of global actor 'MainActor'
public static let upperCase = HexEncodingOptions(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/Data+Extensions.swift:41:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let upperCase = HexEncodingOptions(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:60:27: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LinkRecognizer.Options' may have shared mutable state; this is an error in the Swift 6 language mode
public static let none = Options([])
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:53:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
public struct Options: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:60:27: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
public static let none = Options([])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:60:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let none = Options([])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:61:27: warning: static property 'anchoredStart' is not concurrency-safe because non-'Sendable' type 'LinkRecognizer.Options' may have shared mutable state; this is an error in the Swift 6 language mode
public static let anchoredStart = Options(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:53:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
public struct Options: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:61:27: note: add '@MainActor' to make static property 'anchoredStart' part of global actor 'MainActor'
public static let anchoredStart = Options(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:61:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let anchoredStart = Options(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:62:27: warning: static property 'anchoredEnd' is not concurrency-safe because non-'Sendable' type 'LinkRecognizer.Options' may have shared mutable state; this is an error in the Swift 6 language mode
public static let anchoredEnd = Options(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:53:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
public struct Options: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:62:27: note: add '@MainActor' to make static property 'anchoredEnd' part of global actor 'MainActor'
public static let anchoredEnd = Options(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:62:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let anchoredEnd = Options(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:63:27: warning: static property 'caseInsensitive' is not concurrency-safe because non-'Sendable' type 'LinkRecognizer.Options' may have shared mutable state; this is an error in the Swift 6 language mode
public static let caseInsensitive = Options(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:53:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
public struct Options: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:63:27: note: add '@MainActor' to make static property 'caseInsensitive' part of global actor 'MainActor'
public static let caseInsensitive = Options(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/LinkRecognizer.swift:63:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let caseInsensitive = Options(rawValue: 1 << 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:58:13: warning: let 'objectLockProvider' is not concurrency-safe because non-'Sendable' type 'MapTableLockProvider<AnyObject>' may have shared mutable state; this is an error in the Swift 6 language mode
private let objectLockProvider = MapTableLockProvider<AnyObject>()
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:24:15: note: generic class 'MapTableLockProvider' does not conform to the 'Sendable' protocol
private class MapTableLockProvider<T>: LockProvider where T: AnyObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:58:13: note: add '@MainActor' to make let 'objectLockProvider' part of global actor 'MainActor'
private let objectLockProvider = MapTableLockProvider<AnyObject>()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:58:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let objectLockProvider = MapTableLockProvider<AnyObject>()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:59:13: warning: let 'stringLockProvider' is not concurrency-safe because non-'Sendable' type 'DictionaryLockProvider<String>' may have shared mutable state; this is an error in the Swift 6 language mode
private let stringLockProvider = DictionaryLockProvider<String>()
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:41:15: note: generic class 'DictionaryLockProvider' does not conform to the 'Sendable' protocol
private class DictionaryLockProvider<T>: LockProvider where T: Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:59:13: note: add '@MainActor' to make let 'stringLockProvider' part of global actor 'MainActor'
private let stringLockProvider = DictionaryLockProvider<String>()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:59:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let stringLockProvider = DictionaryLockProvider<String>()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:60:13: warning: let 'integerLockProvider' is not concurrency-safe because non-'Sendable' type 'DictionaryLockProvider<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
private let integerLockProvider = DictionaryLockProvider<Int>()
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:41:15: note: generic class 'DictionaryLockProvider' does not conform to the 'Sendable' protocol
private class DictionaryLockProvider<T>: LockProvider where T: Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:60:13: note: add '@MainActor' to make let 'integerLockProvider' part of global actor 'MainActor'
private let integerLockProvider = DictionaryLockProvider<Int>()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:60:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let integerLockProvider = DictionaryLockProvider<Int>()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:61:13: warning: let 'typeLockProvider' is not concurrency-safe because non-'Sendable' type 'DictionaryLockProvider<String>' may have shared mutable state; this is an error in the Swift 6 language mode
private let typeLockProvider = DictionaryLockProvider<String>()
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:41:15: note: generic class 'DictionaryLockProvider' does not conform to the 'Sendable' protocol
private class DictionaryLockProvider<T>: LockProvider where T: Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:61:13: note: add '@MainActor' to make let 'typeLockProvider' part of global actor 'MainActor'
private let typeLockProvider = DictionaryLockProvider<String>()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/ScopeLock/ScopeLock.swift:61:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let typeLockProvider = DictionaryLockProvider<String>()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:26:17: warning: non-sendable type 'T' cannot be returned from actor-isolated implementation to caller of protocol requirement 'get'; this is an error in the Swift 6 language mode
public func get(_ query: Query) async throws -> T {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:20:38: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncInMemoryDataSource<T>: AsyncGetDataSource, AsyncPutDataSource, AsyncDeleteDataSource {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:26:17: warning: non-sendable parameter type 'any Query' cannot be sent from caller of protocol requirement 'get' into actor-isolated implementation; this is an error in the Swift 6 language mode
public func get(_ query: Query) async throws -> T {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Query/Query.swift:22:17: note: protocol 'Query' does not conform to the 'Sendable' protocol
public protocol Query {}
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:38:17: warning: non-sendable type '[T]' cannot be returned from actor-isolated implementation to caller of protocol requirement 'getAll'; this is an error in the Swift 6 language mode
public func getAll(_ query: Query) async throws -> [T] {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:20:38: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncInMemoryDataSource<T>: AsyncGetDataSource, AsyncPutDataSource, AsyncDeleteDataSource {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:38:17: warning: non-sendable parameter type 'any Query' cannot be sent from caller of protocol requirement 'getAll' into actor-isolated implementation; this is an error in the Swift 6 language mode
public func getAll(_ query: Query) async throws -> [T] {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Query/Query.swift:22:17: note: protocol 'Query' does not conform to the 'Sendable' protocol
public protocol Query {}
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:60:17: warning: non-sendable type 'T' cannot be returned from actor-isolated implementation to caller of protocol requirement 'put(_:in:)'; this is an error in the Swift 6 language mode
public func put(_ value: T?, in query: Query) async throws -> T {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:20:38: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncInMemoryDataSource<T>: AsyncGetDataSource, AsyncPutDataSource, AsyncDeleteDataSource {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:60:17: warning: non-sendable parameter type 'Self.T?' cannot be sent from caller of protocol requirement 'put(_:in:)' into actor-isolated implementation; this is an error in the Swift 6 language mode
public func put(_ value: T?, in query: Query) async throws -> T {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:60:17: warning: non-sendable parameter type 'any Query' cannot be sent from caller of protocol requirement 'put(_:in:)' into actor-isolated implementation; this is an error in the Swift 6 language mode
public func put(_ value: T?, in query: Query) async throws -> T {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Query/Query.swift:22:17: note: protocol 'Query' does not conform to the 'Sendable' protocol
public protocol Query {}
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:74:17: warning: non-sendable type '[T]' cannot be returned from actor-isolated implementation to caller of protocol requirement 'putAll(_:in:)'; this is an error in the Swift 6 language mode
public func putAll(_ array: [T], in query: Query) async throws -> [T] {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:20:38: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncInMemoryDataSource<T>: AsyncGetDataSource, AsyncPutDataSource, AsyncDeleteDataSource {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:74:17: warning: non-sendable parameter type '[Self.T]' cannot be sent from caller of protocol requirement 'putAll(_:in:)' into actor-isolated implementation; this is an error in the Swift 6 language mode
public func putAll(_ array: [T], in query: Query) async throws -> [T] {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:74:17: warning: non-sendable parameter type 'any Query' cannot be sent from caller of protocol requirement 'putAll(_:in:)' into actor-isolated implementation; this is an error in the Swift 6 language mode
public func putAll(_ array: [T], in query: Query) async throws -> [T] {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Query/Query.swift:22:17: note: protocol 'Query' does not conform to the 'Sendable' protocol
public protocol Query {}
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Async/AsyncInMemoryDataSource.swift:94:17: warning: non-sendable parameter type 'any Query' cannot be sent from caller of protocol requirement 'delete' into actor-isolated implementation; this is an error in the Swift 6 language mode
public func delete(_ query: Query) async throws {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Query/Query.swift:22:17: note: protocol 'Query' does not conform to the 'Sendable' protocol
public protocol Query {}
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:58:17: warning: non-sendable type 'T' cannot be returned from actor-isolated implementation to caller of protocol requirement 'submit(operation:)'; this is an error in the Swift 6 language mode
public func submit(operation: @escaping () async throws -> T) async throws -> T {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:48:34: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncAtomicExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:58:17: warning: non-sendable parameter type '() async throws -> Self.T' cannot be sent from caller of protocol requirement 'submit(operation:)' into actor-isolated implementation; this is an error in the Swift 6 language mode
public func submit(operation: @escaping () async throws -> T) async throws -> T {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:23:10: note: a function type must be marked '@Sendable' to conform to 'Sendable'
func submit(operation: @escaping () async throws -> T) async throws -> T
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Executor/Executor.swift:57:13: warning: var 'counter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var counter: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Executor/Executor.swift:57:13: note: convert 'counter' to a 'let' constant to make 'Sendable' shared state immutable
private var counter: Int = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Executor/Executor.swift:57:13: note: add '@MainActor' to make var 'counter' part of global actor 'MainActor'
private var counter: Int = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Executor/Executor.swift:57:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var counter: Int = 0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Optionals.swift:20:14: warning: non-final class 'NilValueError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class NilValueError: Error { public init() {} }
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainGetInteractor.swift:19:13: warning: let 'defaultExecutor' is not concurrency-safe because non-'Sendable' type 'DispatchQueueExecutor' may have shared mutable state; this is an error in the Swift 6 language mode
private let defaultExecutor = DispatchQueueExecutor()
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Executor/DispatchQueueExecutor.swift:45:14: note: class 'DispatchQueueExecutor' does not conform to the 'Sendable' protocol
public class DispatchQueueExecutor: Executor {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainGetInteractor.swift:19:13: note: add '@MainActor' to make let 'defaultExecutor' part of global actor 'MainActor'
private let defaultExecutor = DispatchQueueExecutor()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainGetInteractor.swift:19:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let defaultExecutor = DispatchQueueExecutor()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:26:20: warning: static property 'classGenericPassword' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let classGenericPassword = NSString(format: kSecClassGenericPassword)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:26:20: note: add '@MainActor' to make static property 'classGenericPassword' part of global actor 'MainActor'
static let classGenericPassword = NSString(format: kSecClassGenericPassword)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:26:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let classGenericPassword = NSString(format: kSecClassGenericPassword)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:27:20: warning: static property 'class' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let `class` = NSString(format: kSecClass)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:27:20: note: add '@MainActor' to make static property 'class' part of global actor 'MainActor'
static let `class` = NSString(format: kSecClass)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:27:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let `class` = NSString(format: kSecClass)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:28:20: warning: static property 'attrService' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let attrService = NSString(format: kSecAttrService)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:28:20: note: add '@MainActor' to make static property 'attrService' part of global actor 'MainActor'
static let attrService = NSString(format: kSecAttrService)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:28:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let attrService = NSString(format: kSecAttrService)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:29:20: warning: static property 'attrAccount' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let attrAccount = NSString(format: kSecAttrAccount)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:29:20: note: add '@MainActor' to make static property 'attrAccount' part of global actor 'MainActor'
static let attrAccount = NSString(format: kSecAttrAccount)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:29:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let attrAccount = NSString(format: kSecAttrAccount)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:30:20: warning: static property 'returnAttributes' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let returnAttributes = NSString(format: kSecReturnAttributes)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:30:20: note: add '@MainActor' to make static property 'returnAttributes' part of global actor 'MainActor'
static let returnAttributes = NSString(format: kSecReturnAttributes)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:30:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let returnAttributes = NSString(format: kSecReturnAttributes)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:31:20: warning: static property 'valueData' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let valueData = NSString(format: kSecValueData)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:31:20: note: add '@MainActor' to make static property 'valueData' part of global actor 'MainActor'
static let valueData = NSString(format: kSecValueData)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:31:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let valueData = NSString(format: kSecValueData)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:32:20: warning: static property 'matchLimit' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let matchLimit = NSString(format: kSecMatchLimit)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:32:20: note: add '@MainActor' to make static property 'matchLimit' part of global actor 'MainActor'
static let matchLimit = NSString(format: kSecMatchLimit)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:32:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let matchLimit = NSString(format: kSecMatchLimit)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:33:20: warning: static property 'matchLimitOne' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let matchLimitOne = NSString(format: kSecMatchLimitOne)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:33:20: note: add '@MainActor' to make static property 'matchLimitOne' part of global actor 'MainActor'
static let matchLimitOne = NSString(format: kSecMatchLimitOne)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:33:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let matchLimitOne = NSString(format: kSecMatchLimitOne)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:34:20: warning: static property 'returnData' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let returnData = NSString(format: kSecReturnData)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:34:20: note: add '@MainActor' to make static property 'returnData' part of global actor 'MainActor'
static let returnData = NSString(format: kSecReturnData)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:34:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let returnData = NSString(format: kSecReturnData)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainSetInteractor.swift:19:13: warning: let 'defaultExecutor' is not concurrency-safe because non-'Sendable' type 'DispatchQueueExecutor' may have shared mutable state; this is an error in the Swift 6 language mode
private let defaultExecutor = DispatchQueueExecutor()
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Executor/DispatchQueueExecutor.swift:45:14: note: class 'DispatchQueueExecutor' does not conform to the 'Sendable' protocol
public class DispatchQueueExecutor: Executor {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainSetInteractor.swift:19:13: note: add '@MainActor' to make let 'defaultExecutor' part of global actor 'MainActor'
private let defaultExecutor = DispatchQueueExecutor()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainSetInteractor.swift:19:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let defaultExecutor = DispatchQueueExecutor()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:26:20: warning: static property 'class' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let `class` = NSString(format: kSecClass)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:26:20: note: add '@MainActor' to make static property 'class' part of global actor 'MainActor'
static let `class` = NSString(format: kSecClass)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:26:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let `class` = NSString(format: kSecClass)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:27:20: warning: static property 'classKey' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let classKey = NSString(format: kSecClassKey)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:27:20: note: add '@MainActor' to make static property 'classKey' part of global actor 'MainActor'
static let classKey = NSString(format: kSecClassKey)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:27:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let classKey = NSString(format: kSecClassKey)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:28:20: warning: static property 'attrApplicationTag' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let attrApplicationTag = NSString(format: kSecAttrApplicationTag)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:28:20: note: add '@MainActor' to make static property 'attrApplicationTag' part of global actor 'MainActor'
static let attrApplicationTag = NSString(format: kSecAttrApplicationTag)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:28:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let attrApplicationTag = NSString(format: kSecAttrApplicationTag)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:29:20: warning: static property 'attrKeySizeInBits' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let attrKeySizeInBits = NSString(format: kSecAttrKeySizeInBits)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:29:20: note: add '@MainActor' to make static property 'attrKeySizeInBits' part of global actor 'MainActor'
static let attrKeySizeInBits = NSString(format: kSecAttrKeySizeInBits)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:29:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let attrKeySizeInBits = NSString(format: kSecAttrKeySizeInBits)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:30:20: warning: static property 'returnData' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let returnData = NSString(format: kSecReturnData)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:30:20: note: add '@MainActor' to make static property 'returnData' part of global actor 'MainActor'
static let returnData = NSString(format: kSecReturnData)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:30:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let returnData = NSString(format: kSecReturnData)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:31:20: warning: static property 'attrAccessible' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let attrAccessible = NSString(format: kSecAttrAccessible)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:31:20: note: add '@MainActor' to make static property 'attrAccessible' part of global actor 'MainActor'
static let attrAccessible = NSString(format: kSecAttrAccessible)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:31:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let attrAccessible = NSString(format: kSecAttrAccessible)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:32:20: warning: static property 'attrAccessibleAlways' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let attrAccessibleAlways = NSString(format: kSecAttrAccessibleAfterFirstUnlock)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:32:20: note: add '@MainActor' to make static property 'attrAccessibleAlways' part of global actor 'MainActor'
static let attrAccessibleAlways = NSString(format: kSecAttrAccessibleAfterFirstUnlock)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:32:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let attrAccessibleAlways = NSString(format: kSecAttrAccessibleAfterFirstUnlock)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:33:20: warning: static property 'valueData' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let valueData = NSString(format: kSecValueData)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:33:20: note: add '@MainActor' to make static property 'valueData' part of global actor 'MainActor'
static let valueData = NSString(format: kSecValueData)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:33:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let valueData = NSString(format: kSecValueData)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Observable+Functional.swift,\ Observable+Optionals.swift,\ Observable+Time.swift,\ Observable.swift,\ ObservableHub.swift,\ KeychainDataSource.swift,\ KeychainGetInteractor.swift,\ KeychainService.swift,\ KeychainSetInteractor.swift,\ SecureKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Functional.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Optionals.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Time.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/ObservableHub.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainGetInteractor.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainSetInteractor.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift (in target 'Harmony' from project 'Harmony')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Functional.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Optionals.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Time.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Time.swift:29:17: warning: capture of 'self' with non-sendable type 'Observable<T>?' in a '@Sendable' closure
self?.resolve(success: { value in
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable.swift:104:14: note: generic class 'Observable' does not conform to the 'Sendable' protocol
public class Observable<T> {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Time.swift:30:21: warning: capture of 'resolver' with non-sendable type 'ObservableResolver<T>' in a '@Sendable' closure
resolver.set(value)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable.swift:37:15: note: consider making generic struct 'ObservableResolver' conform to the 'Sendable' protocol
public struct ObservableResolver<T> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Time.swift:30:21: warning: capture of 'resolver' with non-sendable type 'ObservableResolver<T>' in an isolated closure; this is an error in the Swift 6 language mode
resolver.set(value)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable.swift:37:15: note: consider making generic struct 'ObservableResolver' conform to the 'Sendable' protocol
public struct ObservableResolver<T> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Time.swift:32:21: warning: capture of 'resolver' with non-sendable type 'ObservableResolver<T>' in an isolated closure; this is an error in the Swift 6 language mode
resolver.set(error)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable.swift:37:15: note: consider making generic struct 'ObservableResolver' conform to the 'Sendable' protocol
public struct ObservableResolver<T> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Time.swift:67:17: warning: capture of 'self' with non-sendable type 'Observable<T>?' in a '@Sendable' closure
self?.resolve(success: { value in
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable.swift:104:14: note: generic class 'Observable' does not conform to the 'Sendable' protocol
public class Observable<T> {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Time.swift:68:21: warning: capture of 'resolver' with non-sendable type 'ObservableResolver<T>' in a '@Sendable' closure
resolver.set(value)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable.swift:37:15: note: consider making generic struct 'ObservableResolver' conform to the 'Sendable' protocol
public struct ObservableResolver<T> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Time.swift:68:21: warning: capture of 'resolver' with non-sendable type 'ObservableResolver<T>' in an isolated closure; this is an error in the Swift 6 language mode
resolver.set(value)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable.swift:37:15: note: consider making generic struct 'ObservableResolver' conform to the 'Sendable' protocol
public struct ObservableResolver<T> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Time.swift:70:21: warning: capture of 'resolver' with non-sendable type 'ObservableResolver<T>' in an isolated closure; this is an error in the Swift 6 language mode
resolver.set(error)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable.swift:37:15: note: consider making generic struct 'ObservableResolver' conform to the 'Sendable' protocol
public struct ObservableResolver<T> {
^
: Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/ObservableHub.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainDataSource.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainGetInteractor.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainGetInteractor.swift:19:13: warning: let 'defaultExecutor' is not concurrency-safe because non-'Sendable' type 'DispatchQueueExecutor' may have shared mutable state; this is an error in the Swift 6 language mode
private let defaultExecutor = DispatchQueueExecutor()
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Executor/DispatchQueueExecutor.swift:45:14: note: class 'DispatchQueueExecutor' does not conform to the 'Sendable' protocol
public class DispatchQueueExecutor: Executor {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainGetInteractor.swift:19:13: note: add '@MainActor' to make let 'defaultExecutor' part of global actor 'MainActor'
private let defaultExecutor = DispatchQueueExecutor()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainGetInteractor.swift:19:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let defaultExecutor = DispatchQueueExecutor()
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:26:20: warning: static property 'classGenericPassword' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let classGenericPassword = NSString(format: kSecClassGenericPassword)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:26:20: note: add '@MainActor' to make static property 'classGenericPassword' part of global actor 'MainActor'
static let classGenericPassword = NSString(format: kSecClassGenericPassword)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:26:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let classGenericPassword = NSString(format: kSecClassGenericPassword)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:27:20: warning: static property 'class' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let `class` = NSString(format: kSecClass)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:27:20: note: add '@MainActor' to make static property 'class' part of global actor 'MainActor'
static let `class` = NSString(format: kSecClass)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:27:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let `class` = NSString(format: kSecClass)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:28:20: warning: static property 'attrService' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let attrService = NSString(format: kSecAttrService)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:28:20: note: add '@MainActor' to make static property 'attrService' part of global actor 'MainActor'
static let attrService = NSString(format: kSecAttrService)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:28:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let attrService = NSString(format: kSecAttrService)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:29:20: warning: static property 'attrAccount' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let attrAccount = NSString(format: kSecAttrAccount)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:29:20: note: add '@MainActor' to make static property 'attrAccount' part of global actor 'MainActor'
static let attrAccount = NSString(format: kSecAttrAccount)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:29:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let attrAccount = NSString(format: kSecAttrAccount)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:30:20: warning: static property 'returnAttributes' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let returnAttributes = NSString(format: kSecReturnAttributes)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:30:20: note: add '@MainActor' to make static property 'returnAttributes' part of global actor 'MainActor'
static let returnAttributes = NSString(format: kSecReturnAttributes)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:30:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let returnAttributes = NSString(format: kSecReturnAttributes)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:31:20: warning: static property 'valueData' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let valueData = NSString(format: kSecValueData)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:31:20: note: add '@MainActor' to make static property 'valueData' part of global actor 'MainActor'
static let valueData = NSString(format: kSecValueData)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:31:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let valueData = NSString(format: kSecValueData)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:32:20: warning: static property 'matchLimit' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let matchLimit = NSString(format: kSecMatchLimit)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:32:20: note: add '@MainActor' to make static property 'matchLimit' part of global actor 'MainActor'
static let matchLimit = NSString(format: kSecMatchLimit)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:32:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let matchLimit = NSString(format: kSecMatchLimit)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:33:20: warning: static property 'matchLimitOne' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let matchLimitOne = NSString(format: kSecMatchLimitOne)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:33:20: note: add '@MainActor' to make static property 'matchLimitOne' part of global actor 'MainActor'
static let matchLimitOne = NSString(format: kSecMatchLimitOne)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:33:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let matchLimitOne = NSString(format: kSecMatchLimitOne)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:34:20: warning: static property 'returnData' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let returnData = NSString(format: kSecReturnData)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:34:20: note: add '@MainActor' to make static property 'returnData' part of global actor 'MainActor'
static let returnData = NSString(format: kSecReturnData)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:34:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let returnData = NSString(format: kSecReturnData)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:159:46: warning: 'unarchiveObject(with:)' was deprecated in macOS 10.14: Use +unarchivedObjectOfClass:fromData:error: instead
if let value = NSKeyedUnarchiver.unarchiveObject(with: data) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainService.swift:177:36: warning: 'archivedData(withRootObject:)' was deprecated in macOS 10.14: Use +archivedDataWithRootObject:requiringSecureCoding:error: instead
let data = NSKeyedArchiver.archivedData(withRootObject: value)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainSetInteractor.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainSetInteractor.swift:19:13: warning: let 'defaultExecutor' is not concurrency-safe because non-'Sendable' type 'DispatchQueueExecutor' may have shared mutable state; this is an error in the Swift 6 language mode
private let defaultExecutor = DispatchQueueExecutor()
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Executor/DispatchQueueExecutor.swift:45:14: note: class 'DispatchQueueExecutor' does not conform to the 'Sendable' protocol
public class DispatchQueueExecutor: Executor {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainSetInteractor.swift:19:13: note: add '@MainActor' to make let 'defaultExecutor' part of global actor 'MainActor'
private let defaultExecutor = DispatchQueueExecutor()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/KeychainSetInteractor.swift:19:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let defaultExecutor = DispatchQueueExecutor()
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:26:20: warning: static property 'class' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let `class` = NSString(format: kSecClass)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:26:20: note: add '@MainActor' to make static property 'class' part of global actor 'MainActor'
static let `class` = NSString(format: kSecClass)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:26:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let `class` = NSString(format: kSecClass)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:27:20: warning: static property 'classKey' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let classKey = NSString(format: kSecClassKey)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:27:20: note: add '@MainActor' to make static property 'classKey' part of global actor 'MainActor'
static let classKey = NSString(format: kSecClassKey)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:27:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let classKey = NSString(format: kSecClassKey)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:28:20: warning: static property 'attrApplicationTag' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let attrApplicationTag = NSString(format: kSecAttrApplicationTag)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:28:20: note: add '@MainActor' to make static property 'attrApplicationTag' part of global actor 'MainActor'
static let attrApplicationTag = NSString(format: kSecAttrApplicationTag)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:28:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let attrApplicationTag = NSString(format: kSecAttrApplicationTag)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:29:20: warning: static property 'attrKeySizeInBits' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let attrKeySizeInBits = NSString(format: kSecAttrKeySizeInBits)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:29:20: note: add '@MainActor' to make static property 'attrKeySizeInBits' part of global actor 'MainActor'
static let attrKeySizeInBits = NSString(format: kSecAttrKeySizeInBits)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:29:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let attrKeySizeInBits = NSString(format: kSecAttrKeySizeInBits)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:30:20: warning: static property 'returnData' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let returnData = NSString(format: kSecReturnData)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:30:20: note: add '@MainActor' to make static property 'returnData' part of global actor 'MainActor'
static let returnData = NSString(format: kSecReturnData)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:30:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let returnData = NSString(format: kSecReturnData)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:31:20: warning: static property 'attrAccessible' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let attrAccessible = NSString(format: kSecAttrAccessible)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:31:20: note: add '@MainActor' to make static property 'attrAccessible' part of global actor 'MainActor'
static let attrAccessible = NSString(format: kSecAttrAccessible)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:31:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let attrAccessible = NSString(format: kSecAttrAccessible)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:32:20: warning: static property 'attrAccessibleAlways' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let attrAccessibleAlways = NSString(format: kSecAttrAccessibleAfterFirstUnlock)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:32:20: note: add '@MainActor' to make static property 'attrAccessibleAlways' part of global actor 'MainActor'
static let attrAccessibleAlways = NSString(format: kSecAttrAccessibleAfterFirstUnlock)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:32:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let attrAccessibleAlways = NSString(format: kSecAttrAccessibleAfterFirstUnlock)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:33:20: warning: static property 'valueData' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let valueData = NSString(format: kSecValueData)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:33:20: note: add '@MainActor' to make static property 'valueData' part of global actor 'MainActor'
static let valueData = NSString(format: kSecValueData)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Security/SecureKey.swift:33:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let valueData = NSString(format: kSecValueData)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Executor+Future.swift,\ Future+Async.swift,\ Future+Batch.swift,\ Future+Extensions.swift,\ Future+Functional.swift,\ Future+Operators.swift,\ Future+Optionals.swift,\ Future+Time.swift,\ Future.swift,\ Observable+Batch.swift,\ Observable+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Executor+Future.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Batch.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Functional.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Optionals.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Time.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Batch.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Extensions.swift (in target 'Harmony' from project 'Harmony')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Executor+Future.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
self.then { continuation.resume(returning: $0) }
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
self.then { continuation.resume(returning: $0) }
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:37:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:38:35: note: closure captures 'body' which is accessible to code in the current task
let value = try await body()
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
self.then { continuation.resume(returning: $0) }
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
self.then { continuation.resume(returning: $0) }
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:37:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:38:35: note: closure captures 'body' which is accessible to code in the current task
let value = try await body()
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Batch.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
self.then { continuation.resume(returning: $0) }
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
self.then { continuation.resume(returning: $0) }
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:37:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:38:35: note: closure captures 'body' which is accessible to code in the current task
let value = try await body()
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Extensions.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
self.then { continuation.resume(returning: $0) }
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
self.then { continuation.resume(returning: $0) }
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:37:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:38:35: note: closure captures 'body' which is accessible to code in the current task
let value = try await body()
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Functional.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
self.then { continuation.resume(returning: $0) }
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
self.then { continuation.resume(returning: $0) }
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:37:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:38:35: note: closure captures 'body' which is accessible to code in the current task
let value = try await body()
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Operators.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
self.then { continuation.resume(returning: $0) }
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
self.then { continuation.resume(returning: $0) }
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:37:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:38:35: note: closure captures 'body' which is accessible to code in the current task
let value = try await body()
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Optionals.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Optionals.swift:20:14: warning: non-final class 'NilValueError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class NilValueError: Error { public init() {} }
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
self.then { continuation.resume(returning: $0) }
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
self.then { continuation.resume(returning: $0) }
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:37:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:38:35: note: closure captures 'body' which is accessible to code in the current task
let value = try await body()
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Time.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Time.swift:33:17: warning: capture of 'self' with non-sendable type 'Future<T>' in a '@Sendable' closure
self.resolve(success: { value in
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future.swift:82:14: note: generic class 'Future' does not conform to the 'Sendable' protocol
public class Future<T> {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Time.swift:34:21: warning: capture of 'resolver' with non-sendable type 'FutureResolver<T>' in a '@Sendable' closure
resolver.set(value)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future.swift:40:15: note: consider making generic struct 'FutureResolver' conform to the 'Sendable' protocol
public struct FutureResolver<T> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Time.swift:34:21: warning: capture of 'resolver' with non-sendable type 'FutureResolver<T>' in an isolated closure; this is an error in the Swift 6 language mode
resolver.set(value)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future.swift:40:15: note: consider making generic struct 'FutureResolver' conform to the 'Sendable' protocol
public struct FutureResolver<T> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Time.swift:36:21: warning: capture of 'resolver' with non-sendable type 'FutureResolver<T>' in an isolated closure; this is an error in the Swift 6 language mode
resolver.set(error)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future.swift:40:15: note: consider making generic struct 'FutureResolver' conform to the 'Sendable' protocol
public struct FutureResolver<T> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Time.swift:71:17: warning: capture of 'self' with non-sendable type 'Future<T>' in a '@Sendable' closure
self.resolve(success: { value in
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future.swift:82:14: note: generic class 'Future' does not conform to the 'Sendable' protocol
public class Future<T> {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Time.swift:72:21: warning: capture of 'resolver' with non-sendable type 'FutureResolver<T>' in a '@Sendable' closure
resolver.set(value)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future.swift:40:15: note: consider making generic struct 'FutureResolver' conform to the 'Sendable' protocol
public struct FutureResolver<T> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Time.swift:72:21: warning: capture of 'resolver' with non-sendable type 'FutureResolver<T>' in an isolated closure; this is an error in the Swift 6 language mode
resolver.set(value)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future.swift:40:15: note: consider making generic struct 'FutureResolver' conform to the 'Sendable' protocol
public struct FutureResolver<T> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Time.swift:74:21: warning: capture of 'resolver' with non-sendable type 'FutureResolver<T>' in an isolated closure; this is an error in the Swift 6 language mode
resolver.set(error)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future.swift:40:15: note: consider making generic struct 'FutureResolver' conform to the 'Sendable' protocol
public struct FutureResolver<T> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
self.then { continuation.resume(returning: $0) }
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
self.then { continuation.resume(returning: $0) }
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:37:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:38:35: note: closure captures 'body' which is accessible to code in the current task
let value = try await body()
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
self.then { continuation.resume(returning: $0) }
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
self.then { continuation.resume(returning: $0) }
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:37:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:38:35: note: closure captures 'body' which is accessible to code in the current task
let value = try await body()
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Batch.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
self.then { continuation.resume(returning: $0) }
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
self.then { continuation.resume(returning: $0) }
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:37:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:38:35: note: closure captures 'body' which is accessible to code in the current task
let value = try await body()
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Observable/Observable+Extensions.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
self.then { continuation.resume(returning: $0) }
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:25:38: note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
self.then { continuation.resume(returning: $0) }
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:37:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Future/Future/Future+Async.swift:38:35: note: closure captures 'body' which is accessible to code in the current task
let value = try await body()
^
SwiftCompile normal arm64 Compiling\ ObjectValidation.swift,\ VastraInvalidationStrategy.swift,\ VastraReachabilityStrategy.swift,\ VastraService.swift,\ VastraStrategy.swift,\ VastraTimestampStrategy.swift,\ VastraValidationStrategy.swift,\ AsyncDeleteInteractor.swift,\ AsyncExecutor.swift,\ AsyncGetInteractor.swift,\ AsyncInteractor.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/ObjectValidation.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/VastraInvalidationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/VastraReachabilityStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/VastraService.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/VastraStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/VastraTimestampStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/VastraValidationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncDeleteInteractor.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncInteractor.swift (in target 'Harmony' from project 'Harmony')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/ObjectValidation.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/VastraInvalidationStrategy.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/VastraReachabilityStrategy.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/VastraService.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/VastraStrategy.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/VastraTimestampStrategy.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Validator/VastraValidationStrategy.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncDeleteInteractor.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncDeleteInteractor.swift:28:30: warning: sending 'query' risks causing data races; this is an error in the Swift 6 language mode
try await repository.delete(query, operation: operation)
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncDeleteInteractor.swift:28:30: note: sending 'self'-isolated 'query' to nonisolated instance method 'delete(_:operation:)' risks causing data races between nonisolated and 'self'-isolated uses
try await repository.delete(query, operation: operation)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncDeleteInteractor.swift:28:30: warning: sending 'operation' risks causing data races; this is an error in the Swift 6 language mode
try await repository.delete(query, operation: operation)
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncDeleteInteractor.swift:28:30: note: sending 'self'-isolated 'operation' to nonisolated instance method 'delete(_:operation:)' risks causing data races between nonisolated and 'self'-isolated uses
try await repository.delete(query, operation: operation)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncDeleteInteractor.swift:28:30: warning: sending 'self.repository' risks causing data races; this is an error in the Swift 6 language mode
try await repository.delete(query, operation: operation)
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncDeleteInteractor.swift:28:30: note: sending 'self'-isolated 'self.repository' to nonisolated instance method 'delete(_:operation:)' risks causing data races between nonisolated and 'self'-isolated uses
try await repository.delete(query, operation: operation)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:58:17: warning: non-sendable type 'T' cannot be returned from actor-isolated implementation to caller of protocol requirement 'submit(operation:)'; this is an error in the Swift 6 language mode
public func submit(operation: @escaping () async throws -> T) async throws -> T {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:48:34: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncAtomicExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:58:17: warning: non-sendable parameter type '() async throws -> Self.T' cannot be sent from caller of protocol requirement 'submit(operation:)' into actor-isolated implementation; this is an error in the Swift 6 language mode
public func submit(operation: @escaping () async throws -> T) async throws -> T {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:23:10: note: a function type must be marked '@Sendable' to conform to 'Sendable'
func submit(operation: @escaping () async throws -> T) async throws -> T
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:38:20: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
let task = Task { @MainActor in
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:36:32: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public class AsyncMainExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:38:20: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
let task = Task { @MainActor in
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:36:32: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public class AsyncMainExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:41:31: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await task.value
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:36:32: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public class AsyncMainExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:39:23: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to parameter 'operation'; this is an error in the Swift 6 language mode
try await operation()
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:36:32: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public class AsyncMainExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:61:17: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
let task: Task<T, Error> = Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:48:34: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncAtomicExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:61:40: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
let task: Task<T, Error> = Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:48:34: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncAtomicExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:61:40: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
let task: Task<T, Error> = Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:48:34: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncAtomicExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:67:35: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
return try await task.value
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:48:34: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncAtomicExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:71:33: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
_ = try? await task.value
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:48:34: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncAtomicExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:62:39: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to parameter 'operation'; this is an error in the Swift 6 language mode
let value = try await operation()
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:48:34: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncAtomicExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:67:30: warning: non-sendable type 'Task<T, any Error>' cannot exit actor-isolated context in call to nonisolated property 'value'; this is an error in the Swift 6 language mode
return try await task.value
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:48:34: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncAtomicExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:67:35: warning: non-sendable type 'T' of nonisolated property 'value' cannot be sent to actor-isolated context; this is an error in the Swift 6 language mode
return try await task.value
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:48:34: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncAtomicExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:71:28: warning: non-sendable type 'Task<T, any Error>' cannot exit actor-isolated context in call to nonisolated property 'value'; this is an error in the Swift 6 language mode
_ = try? await task.value
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:48:34: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncAtomicExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:71:33: warning: non-sendable type 'T' of nonisolated property 'value' cannot be sent to actor-isolated context; this is an error in the Swift 6 language mode
_ = try? await task.value
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:48:34: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncAtomicExecutor<T>: AsyncExecutor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:39:23: warning: sending 'operation' risks causing data races; this is an error in the Swift 6 language mode
try await operation()
~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncExecutor.swift:39:23: note: task-isolated 'operation' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
try await operation()
^~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:28:30: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to instance method 'get(_:operation:)'; this is an error in the Swift 6 language mode
try await repository.get(query, operation: operation)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:20:33: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncGetInteractor<T>: AsyncInteractor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:41:30: warning: non-sendable result type '[T]' cannot be sent from nonisolated context in call to instance method 'getAll(_:operation:)'; this is an error in the Swift 6 language mode
try await repository.getAll(query, operation: operation)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:33:36: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
public actor AsyncGetAllInteractor<T>: AsyncInteractor {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:28:30: warning: sending 'query' risks causing data races; this is an error in the Swift 6 language mode
try await repository.get(query, operation: operation)
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:28:30: note: sending 'self'-isolated 'query' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
try await repository.get(query, operation: operation)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:28:30: warning: sending 'operation' risks causing data races; this is an error in the Swift 6 language mode
try await repository.get(query, operation: operation)
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:28:30: note: sending 'self'-isolated 'operation' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
try await repository.get(query, operation: operation)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:28:30: warning: sending 'self.repository' risks causing data races; this is an error in the Swift 6 language mode
try await repository.get(query, operation: operation)
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:28:30: note: sending 'self'-isolated 'self.repository' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
try await repository.get(query, operation: operation)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:41:30: warning: sending 'query' risks causing data races; this is an error in the Swift 6 language mode
try await repository.getAll(query, operation: operation)
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:41:30: note: sending 'self'-isolated 'query' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
try await repository.getAll(query, operation: operation)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:41:30: warning: sending 'operation' risks causing data races; this is an error in the Swift 6 language mode
try await repository.getAll(query, operation: operation)
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:41:30: note: sending 'self'-isolated 'operation' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
try await repository.getAll(query, operation: operation)
^
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:41:30: warning: sending 'self.repository' risks causing data races; this is an error in the Swift 6 language mode
try await repository.getAll(query, operation: operation)
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncGetInteractor.swift:41:30: note: sending 'self'-isolated 'self.repository' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
try await repository.getAll(query, operation: operation)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Async/AsyncInteractor.swift (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for Harmony (in target 'Harmony' from project 'Harmony')
SwiftDriver\ Compilation\ Requirements Harmony normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Harmony' from project 'Harmony')
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 Harmony -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony-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/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.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/Harmony.build/Debug/Harmony.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.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/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ObjectValidation.swift, VastraInvalidationStrategy.swift, VastraReachabilityStrategy.swift, VastraService.swift, VastraStrategy.swift, VastraTimestampStrategy.swift, VastraValidationStrategy.swift, AsyncDeleteInteractor.swift, AsyncExecutor.swift, AsyncGetInteractor.swift, AsyncInteractor.swift (in target 'Harmony' from project 'Harmony')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Harmony-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony-Swift.h (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Harmony-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.swiftmodule (in target 'Harmony' from project 'Harmony')
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/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.swiftdoc (in target 'Harmony' from project 'Harmony')
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/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.abi.json (in target 'Harmony' from project 'Harmony')
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/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.swiftsourceinfo (in target 'Harmony' from project 'Harmony')
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/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriver HarmonyTesting normal arm64 com.apple.xcode.tools.swift.compiler (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name HarmonyTesting -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting-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/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.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/Harmony.build/Debug/HarmonyTesting.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.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/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ HarmonyTesting (in target 'HarmonyTesting' from project 'Harmony')
EmitSwiftModule normal arm64 (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:25:31: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
public func isObjectValid<T>(_ object: T) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:12:36: note: 'T' previously declared here
public struct MockObjectValidation<T>: ObjectValidation {
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:29:30: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
public func isArrayValid<T>(_ objects: [T]) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:12:36: note: 'T' previously declared here
public struct MockObjectValidation<T>: ObjectValidation {
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:9:23: warning: static property 'mockedRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var mockedRequest: URLRequest?
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:9:23: note: convert 'mockedRequest' to a 'let' constant to make 'Sendable' shared state immutable
public static var mockedRequest: URLRequest?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:9:23: note: add '@MainActor' to make static property 'mockedRequest' part of global actor 'MainActor'
public static var mockedRequest: URLRequest?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:9:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var mockedRequest: URLRequest?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:10:23: warning: static property 'mockedResponse' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var mockedResponse: URLResponse?
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:10:23: note: convert 'mockedResponse' to a 'let' constant to make 'Sendable' shared state immutable
public static var mockedResponse: URLResponse?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:10:23: note: add '@MainActor' to make static property 'mockedResponse' part of global actor 'MainActor'
public static var mockedResponse: URLResponse?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:10:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var mockedResponse: URLResponse?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:11:23: warning: static property 'mockedData' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var mockedData: Data?
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:11:23: note: convert 'mockedData' to a 'let' constant to make 'Sendable' shared state immutable
public static var mockedData: Data?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:11:23: note: add '@MainActor' to make static property 'mockedData' part of global actor 'MainActor'
public static var mockedData: Data?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var mockedData: Data?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:8:7: warning: non-final class 'MockUrlProtocol' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class MockUrlProtocol: URLProtocol {
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:8:7: warning: 'Sendable' class 'MockUrlProtocol' cannot inherit from another class other than 'NSObject'; this is an error in the Swift 6 language mode
class MockUrlProtocol: URLProtocol {
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:13:22: warning: stored property 'activeTask' of 'Sendable'-conforming class 'MockUrlProtocol' is mutable; this is an error in the Swift 6 language mode
private weak var activeTask: URLSessionTask?
^
SwiftCompile normal arm64 Compiling\ RepositorySpy.swift,\ MockInteractorDelete.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/RepositorySpy.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Interactor/MockInteractorDelete.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/RepositorySpy.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/RepositorySpy.swift:82:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries
return repository.deleteAll(query, operation: operation)
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/RepositorySpy.swift:130:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries
return repository.deleteAll(query, operation: operation)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Interactor/MockInteractorDelete.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Observable+Functional.swift, Observable+Optionals.swift, Observable+Time.swift, Observable.swift, ObservableHub.swift, KeychainDataSource.swift, KeychainGetInteractor.swift, KeychainService.swift, KeychainSetInteractor.swift, SecureKey.swift (in target 'Harmony' from project 'Harmony')
SwiftCompile normal arm64 Compiling\ BoolObjectMother.swift,\ DoubleObjectMother.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/BoolObjectMother.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/DoubleObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/BoolObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/DoubleObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling ClassError.swift, CoreError.swift, ErrorHelper.swift, Data+Extensions.swift, JSONDecoding.swift, Number+Extensions.swift, String+Extensions.swift, CodingKeyStrategies.swift, MutableCodingKey.swift, KeyValueObserver.swift, LinkRecognizer.swift (in target 'Harmony' from project 'Harmony')
SwiftCompile normal arm64 Compiling\ UUIDObjectMother.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/UUIDObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/UUIDObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling DeviceConsoleLogger.swift, Logger.swift, URL+URLRequest.swift, URLSession+ResponseValidation.swift, ScopeLock.swift, ScopeLockFuture.swift, AsyncAnyGetDataSource.swift, AsyncAnyPutDataSource.swift, AsyncDataSource.swift, AsyncDataSourceAssembler.swift, AsyncDataSourceMapper.swift (in target 'Harmony' from project 'Harmony')
SwiftCompile normal arm64 Compiling\ TestUtils.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/TestUtils.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/TestUtils.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling AsyncPutInteractor.swift, Interactor.swift, InteractorDelete.swift, InteractorGet.swift, InteractorPut.swift, Collections+Executor.swift, DirectExecutor.swift, DispatchQueueExecutor.swift, Executor.swift, ExecutorFactory.swift, OperationQueueExecutor.swift (in target 'Harmony' from project 'Harmony')
SwiftCompile normal arm64 Compiling\ IntegerObjectModel.swift,\ StringObjectMother.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/IntegerObjectModel.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/StringObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/IntegerObjectModel.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/StringObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Mapper.swift, Operation.swift, NetworkQuery.swift, Query.swift, AsyncAnyGetRepository.swift, AsyncAnyPutRepository.swift, AsyncRepository.swift, AsyncRepositoryAssembler.swift, AsyncRepositoryMapper.swift, AsyncRepositoryWrapper.swift, AsyncSingleDataSourceRepository.swift (in target 'Harmony' from project 'Harmony')
SwiftCompile normal arm64 Compiling\ EntityObjectMother.swift,\ ErrorObjectMother.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/EntityObjectMother.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/ErrorObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/EntityObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/ErrorObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CodableEntity.swift,\ DataSourceSpy.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/CodableEntity.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/DataSourceSpy.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/CodableEntity.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/DataSourceSpy.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/DataSourceSpy.swift:82:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries
return dataSource.deleteAll(query)
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/DataSourceSpy.swift:130:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries
return dataSource.deleteAll(query)
^
SwiftDriverJobDiscovery normal arm64 Emitting module for HarmonyTesting (in target 'HarmonyTesting' from project 'Harmony')
SwiftDriverJobDiscovery normal arm64 Compiling DeleteNetworkDataSource.swift, DeviceStorageDataSource.swift, FileSystemStorageDataSource.swift, GetNetworkDataSource.swift, InMemoryDataSource.swift, PutNetworkDataSource.swift, RetryDataSource.swift, TimedCacheDataSource.swift, VoidDataSource.swift, Mapper+Codable.swift, Mapper+NSCoding.swift (in target 'Harmony' from project 'Harmony')
SwiftCompile normal arm64 Compiling\ MockObjectValidation.swift,\ MockUrlProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:25:31: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
public func isObjectValid<T>(_ object: T) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:12:36: note: 'T' previously declared here
public struct MockObjectValidation<T>: ObjectValidation {
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:29:30: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
public func isArrayValid<T>(_ objects: [T]) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:12:36: note: 'T' previously declared here
public struct MockObjectValidation<T>: ObjectValidation {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:9:23: warning: static property 'mockedRequest' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var mockedRequest: URLRequest?
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:9:23: note: convert 'mockedRequest' to a 'let' constant to make 'Sendable' shared state immutable
public static var mockedRequest: URLRequest?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:9:23: note: add '@MainActor' to make static property 'mockedRequest' part of global actor 'MainActor'
public static var mockedRequest: URLRequest?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:9:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var mockedRequest: URLRequest?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:10:23: warning: static property 'mockedResponse' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var mockedResponse: URLResponse?
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:10:23: note: convert 'mockedResponse' to a 'let' constant to make 'Sendable' shared state immutable
public static var mockedResponse: URLResponse?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:10:23: note: add '@MainActor' to make static property 'mockedResponse' part of global actor 'MainActor'
public static var mockedResponse: URLResponse?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:10:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var mockedResponse: URLResponse?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:11:23: warning: static property 'mockedData' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var mockedData: Data?
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:11:23: note: convert 'mockedData' to a 'let' constant to make 'Sendable' shared state immutable
public static var mockedData: Data?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:11:23: note: add '@MainActor' to make static property 'mockedData' part of global actor 'MainActor'
public static var mockedData: Data?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var mockedData: Data?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:8:7: warning: non-final class 'MockUrlProtocol' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class MockUrlProtocol: URLProtocol {
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:8:7: warning: 'Sendable' class 'MockUrlProtocol' cannot inherit from another class other than 'NSObject'; this is an error in the Swift 6 language mode
class MockUrlProtocol: URLProtocol {
^
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockUrlProtocol.swift:13:22: warning: stored property 'activeTask' of 'Sendable'-conforming class 'MockUrlProtocol' is mutable; this is an error in the Swift 6 language mode
private weak var activeTask: URLSessionTask?
^
SwiftDriver\ Compilation\ Requirements HarmonyTesting normal arm64 com.apple.xcode.tools.swift.compiler (in target 'HarmonyTesting' from project 'Harmony')
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 HarmonyTesting -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting-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/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.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/Harmony.build/Debug/HarmonyTesting.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.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/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ URLObjectMother.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/URLObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/ObjectMother/URLObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling AsyncVoidRepository.swift, AnyGetRepository.swift, AnyPutRepository.swift, AnyRepository.swift, CacheRepository.swift, Repository.swift, RepositoryAssembler.swift, RepositoryMapper.swift, RetryRepository.swift, SingleDataSourceRepository.swift, VoidRepository.swift (in target 'Harmony' from project 'Harmony')
SwiftCompile normal arm64 Compiling\ MockInteractorGet.swift,\ MockInteractorPut.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Interactor/MockInteractorGet.swift /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Interactor/MockInteractorPut.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Interactor/MockInteractorGet.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Interactor/MockInteractorPut.swift (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Executor+Future.swift, Future+Async.swift, Future+Batch.swift, Future+Extensions.swift, Future+Functional.swift, Future+Operators.swift, Future+Optionals.swift, Future+Time.swift, Future.swift, Observable+Batch.swift, Observable+Extensions.swift (in target 'Harmony' from project 'Harmony')
SwiftDriverJobDiscovery normal arm64 Compiling AsyncDataSourceWrapper.swift, AsyncInMemoryDataSource.swift, AsyncVoidDataSource.swift, AnyDataSource.swift, AnyGetDataSource.swift, AnyPutDataSource.swift, DataSource.swift, DataSourceAssembler.swift, DataSourceMapper.swift, DataSourceValidator.swift, DebugDataSource.swift (in target 'Harmony' from project 'Harmony')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/HarmonyTesting-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting-Swift.h (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/HarmonyTesting-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling UUIDObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.swiftmodule (in target 'HarmonyTesting' from project 'Harmony')
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/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.swiftdoc (in target 'HarmonyTesting' from project 'Harmony')
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/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.abi.json (in target 'HarmonyTesting' from project 'Harmony')
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/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.swiftsourceinfo (in target 'HarmonyTesting' from project 'Harmony')
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/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriver\ Compilation Harmony normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Harmony' from project 'Harmony')
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 Harmony -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony-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/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.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/Harmony.build/Debug/Harmony.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.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/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling TestUtils.swift (in target 'HarmonyTesting' from project 'Harmony')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.o normal (in target 'Harmony' from project 'Harmony')
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-macos10.15 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.o
SwiftDriverJobDiscovery normal arm64 Compiling BoolObjectMother.swift, DoubleObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftDriverJobDiscovery normal arm64 Compiling IntegerObjectModel.swift, StringObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftDriverJobDiscovery normal arm64 Compiling EntityObjectMother.swift, ErrorObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftDriverJobDiscovery normal arm64 Compiling URLObjectMother.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftDriverJobDiscovery normal arm64 Compiling RepositorySpy.swift, MockInteractorDelete.swift (in target 'HarmonyTesting' from project 'Harmony')
ExtractAppIntentsMetadata (in target 'Harmony' from project 'Harmony')
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 Harmony --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.15 --bundle-identifier spi-builder-workspace.Harmony --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.appintents --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Harmony.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Harmony.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/Harmony.build/Objects-normal/arm64/Harmony.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 08:30:35.150 appintentsmetadataprocessor[733:4215] Starting appintentsmetadataprocessor export
2025-04-29 08:30:35.189 appintentsmetadataprocessor[733:4215] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling MockObjectValidation.swift, MockUrlProtocol.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftDriverJobDiscovery normal arm64 Compiling CodableEntity.swift, DataSourceSpy.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftDriverJobDiscovery normal arm64 Compiling MockInteractorGet.swift, MockInteractorPut.swift (in target 'HarmonyTesting' from project 'Harmony')
SwiftDriver\ Compilation HarmonyTesting normal arm64 com.apple.xcode.tools.swift.compiler (in target 'HarmonyTesting' from project 'Harmony')
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 HarmonyTesting -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting-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/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.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/Harmony.build/Debug/HarmonyTesting.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.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/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.o (in target 'Harmony' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Harmony.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.o normal (in target 'HarmonyTesting' from project 'Harmony')
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-macos10.15 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.o
ExtractAppIntentsMetadata (in target 'HarmonyTesting' from project 'Harmony')
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 HarmonyTesting --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.15 --bundle-identifier spi-builder-workspace.HarmonyTesting --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.appintents --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/HarmonyTesting.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/HarmonyTesting.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Harmony.build/Debug/HarmonyTesting.build/Objects-normal/arm64/HarmonyTesting.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 08:30:35.237 appintentsmetadataprocessor[736:4236] Starting appintentsmetadataprocessor export
2025-04-29 08:30:35.267 appintentsmetadataprocessor[736:4236] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.o (in target 'HarmonyTesting' from project 'Harmony')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HarmonyTesting.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:5b2e6829eba92d5a6e107b0bd6eb606d0e6b81db, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:5b2e6829eba92d5a6e107b0bd6eb606d0e6b81db, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:5b2e6829eba92d5a6e107b0bd6eb606d0e6b81db, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:5b2e6829eba92d5a6e107b0bd6eb606d0e6b81db, name:My Mac }
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Harmony",
"name" : "Harmony",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "12.0"
},
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "Harmony",
"targets" : [
"Harmony"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "HarmonyTesting",
"targets" : [
"HarmonyTesting"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "HarmonyTests",
"module_type" : "SwiftTarget",
"name" : "HarmonyTests",
"path" : "Tests/HarmonyTests",
"sources" : [
"AsyncExecutorTests.swift",
"AsyncInMemoryDataSourceTests.swift",
"CacheRepositoryTests.swift",
"DelayedMainQueueExecutorTests.swift",
"DeleteNetworkDataSourceTests.swift",
"DeviceStorageDataSourcePrefixTests.swift",
"DeviceStorageDataSourceRegularTests.swift",
"DeviceStorageDataSourceRootKeyTests.swift",
"DeviceStorageDataSourceTester.swift",
"FileSystemStorageDataSourceTests.swift",
"FutureTests.swift",
"GenericNetworkDataSourceUtils.swift",
"GetNetworkDataSourceTests.swift",
"InMemoryDataSourceTests.swift",
"NetworkQueryTests.swift",
"PutNetworkDataSourceTests.swift",
"TimedCacheDataSourceTests.swift"
],
"target_dependencies" : [
"Harmony"
],
"type" : "test"
},
{
"c99name" : "HarmonyTesting",
"module_type" : "SwiftTarget",
"name" : "HarmonyTesting",
"path" : "Sources/HarmonyTesting",
"product_memberships" : [
"HarmonyTesting"
],
"sources" : [
"Data/CodableEntity.swift",
"Data/DataSourceSpy.swift",
"Data/MockObjectValidation.swift",
"Data/MockUrlProtocol.swift",
"Data/RepositorySpy.swift",
"Interactor/MockInteractorDelete.swift",
"Interactor/MockInteractorGet.swift",
"Interactor/MockInteractorPut.swift",
"ObjectMother/BoolObjectMother.swift",
"ObjectMother/DoubleObjectMother.swift",
"ObjectMother/EntityObjectMother.swift",
"ObjectMother/ErrorObjectMother.swift",
"ObjectMother/IntegerObjectModel.swift",
"ObjectMother/StringObjectMother.swift",
"ObjectMother/URLObjectMother.swift",
"ObjectMother/UUIDObjectMother.swift",
"TestUtils.swift"
],
"target_dependencies" : [
"Harmony"
],
"type" : "library"
},
{
"c99name" : "Harmony",
"module_type" : "SwiftTarget",
"name" : "Harmony",
"path" : "Sources/Harmony",
"product_memberships" : [
"Harmony",
"HarmonyTesting"
],
"sources" : [
"Common/Error/ClassError.swift",
"Common/Error/CoreError.swift",
"Common/Error/ErrorHelper.swift",
"Common/Extensions/Data+Extensions.swift",
"Common/Extensions/JSONDecoding.swift",
"Common/Extensions/Number+Extensions.swift",
"Common/Extensions/String+Extensions.swift",
"Common/JSON/CodingKeyStrategies.swift",
"Common/JSON/MutableCodingKey.swift",
"Common/KeyValueObserver.swift",
"Common/LinkRecognizer.swift",
"Common/Logger/DeviceConsoleLogger.swift",
"Common/Logger/Logger.swift",
"Common/Network/URL+URLRequest.swift",
"Common/Network/URLSession+ResponseValidation.swift",
"Common/ScopeLock/ScopeLock.swift",
"Common/ScopeLock/ScopeLockFuture.swift",
"Data/DataSource/Async/AsyncAnyGetDataSource.swift",
"Data/DataSource/Async/AsyncAnyPutDataSource.swift",
"Data/DataSource/Async/AsyncDataSource.swift",
"Data/DataSource/Async/AsyncDataSourceAssembler.swift",
"Data/DataSource/Async/AsyncDataSourceMapper.swift",
"Data/DataSource/Async/AsyncDataSourceWrapper.swift",
"Data/DataSource/Async/AsyncInMemoryDataSource.swift",
"Data/DataSource/Async/AsyncVoidDataSource.swift",
"Data/DataSource/Future/AnyDataSource.swift",
"Data/DataSource/Future/AnyGetDataSource.swift",
"Data/DataSource/Future/AnyPutDataSource.swift",
"Data/DataSource/Future/DataSource.swift",
"Data/DataSource/Future/DataSourceAssembler.swift",
"Data/DataSource/Future/DataSourceMapper.swift",
"Data/DataSource/Future/DataSourceValidator.swift",
"Data/DataSource/Future/DebugDataSource.swift",
"Data/DataSource/Future/DeleteNetworkDataSource.swift",
"Data/DataSource/Future/DeviceStorageDataSource.swift",
"Data/DataSource/Future/FileSystemStorageDataSource.swift",
"Data/DataSource/Future/GetNetworkDataSource.swift",
"Data/DataSource/Future/InMemoryDataSource.swift",
"Data/DataSource/Future/PutNetworkDataSource.swift",
"Data/DataSource/Future/RetryDataSource.swift",
"Data/DataSource/Future/TimedCacheDataSource.swift",
"Data/DataSource/Future/VoidDataSource.swift",
"Data/Mapper/Mapper+Codable.swift",
"Data/Mapper/Mapper+NSCoding.swift",
"Data/Mapper/Mapper.swift",
"Data/Operation/Operation.swift",
"Data/Query/NetworkQuery.swift",
"Data/Query/Query.swift",
"Data/Repository/Async/AsyncAnyGetRepository.swift",
"Data/Repository/Async/AsyncAnyPutRepository.swift",
"Data/Repository/Async/AsyncRepository.swift",
"Data/Repository/Async/AsyncRepositoryAssembler.swift",
"Data/Repository/Async/AsyncRepositoryMapper.swift",
"Data/Repository/Async/AsyncRepositoryWrapper.swift",
"Data/Repository/Async/AsyncSingleDataSourceRepository.swift",
"Data/Repository/Async/AsyncVoidRepository.swift",
"Data/Repository/Future/AnyGetRepository.swift",
"Data/Repository/Future/AnyPutRepository.swift",
"Data/Repository/Future/AnyRepository.swift",
"Data/Repository/Future/CacheRepository.swift",
"Data/Repository/Future/Repository.swift",
"Data/Repository/Future/RepositoryAssembler.swift",
"Data/Repository/Future/RepositoryMapper.swift",
"Data/Repository/Future/RetryRepository.swift",
"Data/Repository/Future/SingleDataSourceRepository.swift",
"Data/Repository/Future/VoidRepository.swift",
"Data/Validator/ObjectValidation.swift",
"Data/Validator/VastraInvalidationStrategy.swift",
"Data/Validator/VastraReachabilityStrategy.swift",
"Data/Validator/VastraService.swift",
"Data/Validator/VastraStrategy.swift",
"Data/Validator/VastraTimestampStrategy.swift",
"Data/Validator/VastraValidationStrategy.swift",
"Domain/Async/AsyncDeleteInteractor.swift",
"Domain/Async/AsyncExecutor.swift",
"Domain/Async/AsyncGetInteractor.swift",
"Domain/Async/AsyncInteractor.swift",
"Domain/Async/AsyncPutInteractor.swift",
"Domain/Future/Interactor.swift",
"Domain/Future/InteractorDelete.swift",
"Domain/Future/InteractorGet.swift",
"Domain/Future/InteractorPut.swift",
"Future/Executor/Collections+Executor.swift",
"Future/Executor/DirectExecutor.swift",
"Future/Executor/DispatchQueueExecutor.swift",
"Future/Executor/Executor.swift",
"Future/Executor/ExecutorFactory.swift",
"Future/Executor/OperationQueueExecutor.swift",
"Future/Future/Executor+Future.swift",
"Future/Future/Future+Async.swift",
"Future/Future/Future+Batch.swift",
"Future/Future/Future+Extensions.swift",
"Future/Future/Future+Functional.swift",
"Future/Future/Future+Operators.swift",
"Future/Future/Future+Optionals.swift",
"Future/Future/Future+Time.swift",
"Future/Future/Future.swift",
"Future/Observable/Observable+Batch.swift",
"Future/Observable/Observable+Extensions.swift",
"Future/Observable/Observable+Functional.swift",
"Future/Observable/Observable+Optionals.swift",
"Future/Observable/Observable+Time.swift",
"Future/Observable/Observable.swift",
"Future/Observable/ObservableHub.swift",
"Security/KeychainDataSource.swift",
"Security/KeychainGetInteractor.swift",
"Security/KeychainService.swift",
"Security/KeychainSetInteractor.swift",
"Security/SecureKey.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.