The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of AllocData, reference 1.2.0 (8b9cda), with Swift 6.1 for macOS (SPM) on 27 Apr 2025 12:08:03 UTC.

Swift 6 data race errors: 19

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

19 |
20 | extension MAccount: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID,
23 |                        .string,
/Users/admin/builder/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The strategy associated with this allocation."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset of the allocation."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAsset: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The identifier of the asset. (e.g., 'Bond')"),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the asset."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MCap: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the limit will be imposed."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset in which the limit will be imposed."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MHolding: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to which the asset is allocated."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the allocation."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalancePurchase: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to host the position."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the position to acquire."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceSale: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSecurity: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The symbol/securityID of the security."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: false, isKey: false, "The asset class of the security."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSourceMeta: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.sourceMetaID, .string, isRequired: true, isKey: true, "The unique ID of the source meta record."),
23 |         AllocAttribute(CodingKeys.url, .string, isRequired: false, isKey: false, "The source URL, if any."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MStrategy: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The identifier of the strategy."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the strategy."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTracker: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.trackerID, .string, isRequired: true, isKey: true, "The identifier of the tracking index."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the tracking index."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTransaction: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.action, .string, isRequired: true, isKey: true, "The type of transaction."),
23 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The date of the transaction."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationCashflow: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The timestamp when this flow occurred."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the flow occurred."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Position/MValuationPosition+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationPosition: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The valuation snapshot ID for the position."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Snapshot/MValuationSnapshot+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationSnapshot: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The unique valuation snapshot identifier."),
23 |         AllocAttribute(CodingKeys.capturedAt, .date, isRequired: true, isKey: false, "The timestamp when the snapshot was created."),
[4/77] Compiling AllocData MValuationPosition+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Snapshot/MValuationSnapshot+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationSnapshot: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The unique valuation snapshot identifier."),
23 |         AllocAttribute(CodingKeys.capturedAt, .date, isRequired: true, isKey: false, "The timestamp when the snapshot was created."),
[5/77] Compiling AllocData MValuationPosition+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Snapshot/MValuationSnapshot+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationSnapshot: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The unique valuation snapshot identifier."),
23 |         AllocAttribute(CodingKeys.capturedAt, .date, isRequired: true, isKey: false, "The timestamp when the snapshot was created."),
[6/77] Compiling AllocData MValuationPosition.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Snapshot/MValuationSnapshot+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationSnapshot: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The unique valuation snapshot identifier."),
23 |         AllocAttribute(CodingKeys.capturedAt, .date, isRequired: true, isKey: false, "The timestamp when the snapshot was created."),
[7/77] Compiling AllocData MValuationSnapshot+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Snapshot/MValuationSnapshot+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationSnapshot: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The unique valuation snapshot identifier."),
23 |         AllocAttribute(CodingKeys.capturedAt, .date, isRequired: true, isKey: false, "The timestamp when the snapshot was created."),
[8/77] Compiling AllocData MValuationSnapshot+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Snapshot/MValuationSnapshot+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationSnapshot: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The unique valuation snapshot identifier."),
23 |         AllocAttribute(CodingKeys.capturedAt, .date, isRequired: true, isKey: false, "The timestamp when the snapshot was created."),
[9/77] Compiling AllocData MValuationSnapshot+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Snapshot/MValuationSnapshot+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationSnapshot: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The unique valuation snapshot identifier."),
23 |         AllocAttribute(CodingKeys.capturedAt, .date, isRequired: true, isKey: false, "The timestamp when the snapshot was created."),
[10/77] Compiling AllocData MValuationSnapshot.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Snapshot/MValuationSnapshot+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationSnapshot: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The unique valuation snapshot identifier."),
23 |         AllocAttribute(CodingKeys.capturedAt, .date, isRequired: true, isKey: false, "The timestamp when the snapshot was created."),
[11/77] Compiling AllocData MAllocation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAsset: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The identifier of the asset. (e.g., 'Bond')"),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the asset."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MCap: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the limit will be imposed."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset in which the limit will be imposed."),
[12/77] Compiling AllocData MAsset+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAsset: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The identifier of the asset. (e.g., 'Bond')"),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the asset."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MCap: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the limit will be imposed."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset in which the limit will be imposed."),
[13/77] Compiling AllocData MAsset+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAsset: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The identifier of the asset. (e.g., 'Bond')"),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the asset."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MCap: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the limit will be imposed."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset in which the limit will be imposed."),
[14/77] Compiling AllocData MAsset+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAsset: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The identifier of the asset. (e.g., 'Bond')"),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the asset."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MCap: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the limit will be imposed."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset in which the limit will be imposed."),
[15/77] Compiling AllocData MAsset.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAsset: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The identifier of the asset. (e.g., 'Bond')"),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the asset."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MCap: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the limit will be imposed."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset in which the limit will be imposed."),
[16/77] Compiling AllocData MCap+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAsset: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The identifier of the asset. (e.g., 'Bond')"),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the asset."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MCap: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the limit will be imposed."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset in which the limit will be imposed."),
[17/77] Compiling AllocData MCap+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAsset: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The identifier of the asset. (e.g., 'Bond')"),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the asset."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MCap: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the limit will be imposed."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset in which the limit will be imposed."),
[18/77] Compiling AllocData MCap+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAsset: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The identifier of the asset. (e.g., 'Bond')"),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the asset."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MCap: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the limit will be imposed."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset in which the limit will be imposed."),
[19/77] Compiling AllocData MSourceMeta+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MStrategy: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The identifier of the strategy."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the strategy."),
[20/77] Compiling AllocData MSourceMeta+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MStrategy: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The identifier of the strategy."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the strategy."),
[21/77] Compiling AllocData MSourceMeta.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MStrategy: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The identifier of the strategy."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the strategy."),
[22/77] Compiling AllocData MStrategy+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MStrategy: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The identifier of the strategy."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the strategy."),
[23/77] Compiling AllocData MStrategy+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MStrategy: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The identifier of the strategy."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the strategy."),
[24/77] Compiling AllocData MStrategy+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MStrategy: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The identifier of the strategy."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the strategy."),
[25/77] Compiling AllocData MStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MStrategy: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The identifier of the strategy."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the strategy."),
[26/77] Compiling AllocData MRebalanceAllocation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalancePurchase: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to host the position."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the position to acquire."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceSale: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
[27/77] Compiling AllocData MRebalancePurchase+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalancePurchase: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to host the position."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the position to acquire."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceSale: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
[28/77] Compiling AllocData MRebalancePurchase+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalancePurchase: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to host the position."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the position to acquire."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceSale: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
[29/77] Compiling AllocData MRebalancePurchase+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalancePurchase: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to host the position."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the position to acquire."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceSale: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
[30/77] Compiling AllocData MRebalancePurchase.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalancePurchase: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to host the position."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the position to acquire."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceSale: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
[31/77] Compiling AllocData MRebalanceSale+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalancePurchase: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to host the position."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the position to acquire."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceSale: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
[32/77] Compiling AllocData MRebalanceSale+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalancePurchase: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to host the position."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the position to acquire."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceSale: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
[33/77] Compiling AllocData AllocAttributable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocBase+Parsers.swift:22:13: warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
20 | // ISO8601DateFormatter requires macOS 10.12 or later.
21 | // It could conceivably be replaced with an implementation that is more broadly supported.
22 | private let isoDateFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoDateFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | public extension AllocBase {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 |     CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocDataError.swift:22:10: warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
20 | public enum AllocDataError: Error, Equatable, CustomStringConvertible {
21 |     case encodingError(_ msg: String)
22 |     case targetFormatNotSupported(_ supported: [AllocFormat])
   |          `- warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
23 |     case invalidPrimaryKey(_ msg: String)
24 |
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocFormat.swift:20:13: note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
18 | import Foundation
19 |
20 | public enum AllocFormat: String, CaseIterable {
   |             `- note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
21 |     case JSON = "application/json"
22 |     case CSV = "text/csv"
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocSchema+TableSignature.swift:27:16: warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static var tableSignatureMap: [AllocSchema: TableSignature] =
   |                |- warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'tableSignatureMap' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'tableSignatureMap' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |         AllocSchema.allCases.reduce(into: [:]) { map, schema in
29 |             map[schema] = schema.tableSignature
[34/77] Compiling AllocData AllocBase+Parsers.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocBase+Parsers.swift:22:13: warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
20 | // ISO8601DateFormatter requires macOS 10.12 or later.
21 | // It could conceivably be replaced with an implementation that is more broadly supported.
22 | private let isoDateFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoDateFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | public extension AllocBase {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 |     CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocDataError.swift:22:10: warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
20 | public enum AllocDataError: Error, Equatable, CustomStringConvertible {
21 |     case encodingError(_ msg: String)
22 |     case targetFormatNotSupported(_ supported: [AllocFormat])
   |          `- warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
23 |     case invalidPrimaryKey(_ msg: String)
24 |
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocFormat.swift:20:13: note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
18 | import Foundation
19 |
20 | public enum AllocFormat: String, CaseIterable {
   |             `- note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
21 |     case JSON = "application/json"
22 |     case CSV = "text/csv"
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocSchema+TableSignature.swift:27:16: warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static var tableSignatureMap: [AllocSchema: TableSignature] =
   |                |- warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'tableSignatureMap' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'tableSignatureMap' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |         AllocSchema.allCases.reduce(into: [:]) { map, schema in
29 |             map[schema] = schema.tableSignature
[35/77] Compiling AllocData AllocBase.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocBase+Parsers.swift:22:13: warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
20 | // ISO8601DateFormatter requires macOS 10.12 or later.
21 | // It could conceivably be replaced with an implementation that is more broadly supported.
22 | private let isoDateFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoDateFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | public extension AllocBase {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 |     CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocDataError.swift:22:10: warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
20 | public enum AllocDataError: Error, Equatable, CustomStringConvertible {
21 |     case encodingError(_ msg: String)
22 |     case targetFormatNotSupported(_ supported: [AllocFormat])
   |          `- warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
23 |     case invalidPrimaryKey(_ msg: String)
24 |
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocFormat.swift:20:13: note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
18 | import Foundation
19 |
20 | public enum AllocFormat: String, CaseIterable {
   |             `- note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
21 |     case JSON = "application/json"
22 |     case CSV = "text/csv"
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocSchema+TableSignature.swift:27:16: warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static var tableSignatureMap: [AllocSchema: TableSignature] =
   |                |- warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'tableSignatureMap' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'tableSignatureMap' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |         AllocSchema.allCases.reduce(into: [:]) { map, schema in
29 |             map[schema] = schema.tableSignature
[36/77] Compiling AllocData AllocDataError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocBase+Parsers.swift:22:13: warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
20 | // ISO8601DateFormatter requires macOS 10.12 or later.
21 | // It could conceivably be replaced with an implementation that is more broadly supported.
22 | private let isoDateFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoDateFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | public extension AllocBase {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 |     CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocDataError.swift:22:10: warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
20 | public enum AllocDataError: Error, Equatable, CustomStringConvertible {
21 |     case encodingError(_ msg: String)
22 |     case targetFormatNotSupported(_ supported: [AllocFormat])
   |          `- warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
23 |     case invalidPrimaryKey(_ msg: String)
24 |
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocFormat.swift:20:13: note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
18 | import Foundation
19 |
20 | public enum AllocFormat: String, CaseIterable {
   |             `- note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
21 |     case JSON = "application/json"
22 |     case CSV = "text/csv"
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocSchema+TableSignature.swift:27:16: warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static var tableSignatureMap: [AllocSchema: TableSignature] =
   |                |- warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'tableSignatureMap' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'tableSignatureMap' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |         AllocSchema.allCases.reduce(into: [:]) { map, schema in
29 |             map[schema] = schema.tableSignature
[37/77] Compiling AllocData AllocFormat.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocBase+Parsers.swift:22:13: warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
20 | // ISO8601DateFormatter requires macOS 10.12 or later.
21 | // It could conceivably be replaced with an implementation that is more broadly supported.
22 | private let isoDateFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoDateFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | public extension AllocBase {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 |     CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocDataError.swift:22:10: warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
20 | public enum AllocDataError: Error, Equatable, CustomStringConvertible {
21 |     case encodingError(_ msg: String)
22 |     case targetFormatNotSupported(_ supported: [AllocFormat])
   |          `- warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
23 |     case invalidPrimaryKey(_ msg: String)
24 |
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocFormat.swift:20:13: note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
18 | import Foundation
19 |
20 | public enum AllocFormat: String, CaseIterable {
   |             `- note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
21 |     case JSON = "application/json"
22 |     case CSV = "text/csv"
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocSchema+TableSignature.swift:27:16: warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static var tableSignatureMap: [AllocSchema: TableSignature] =
   |                |- warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'tableSignatureMap' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'tableSignatureMap' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |         AllocSchema.allCases.reduce(into: [:]) { map, schema in
29 |             map[schema] = schema.tableSignature
[38/77] Compiling AllocData AllocKeyed.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocBase+Parsers.swift:22:13: warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
20 | // ISO8601DateFormatter requires macOS 10.12 or later.
21 | // It could conceivably be replaced with an implementation that is more broadly supported.
22 | private let isoDateFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoDateFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | public extension AllocBase {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 |     CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocDataError.swift:22:10: warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
20 | public enum AllocDataError: Error, Equatable, CustomStringConvertible {
21 |     case encodingError(_ msg: String)
22 |     case targetFormatNotSupported(_ supported: [AllocFormat])
   |          `- warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
23 |     case invalidPrimaryKey(_ msg: String)
24 |
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocFormat.swift:20:13: note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
18 | import Foundation
19 |
20 | public enum AllocFormat: String, CaseIterable {
   |             `- note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
21 |     case JSON = "application/json"
22 |     case CSV = "text/csv"
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocSchema+TableSignature.swift:27:16: warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static var tableSignatureMap: [AllocSchema: TableSignature] =
   |                |- warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'tableSignatureMap' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'tableSignatureMap' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |         AllocSchema.allCases.reduce(into: [:]) { map, schema in
29 |             map[schema] = schema.tableSignature
[39/77] Compiling AllocData AllocRowed.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocBase+Parsers.swift:22:13: warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
20 | // ISO8601DateFormatter requires macOS 10.12 or later.
21 | // It could conceivably be replaced with an implementation that is more broadly supported.
22 | private let isoDateFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoDateFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | public extension AllocBase {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 |     CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocDataError.swift:22:10: warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
20 | public enum AllocDataError: Error, Equatable, CustomStringConvertible {
21 |     case encodingError(_ msg: String)
22 |     case targetFormatNotSupported(_ supported: [AllocFormat])
   |          `- warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
23 |     case invalidPrimaryKey(_ msg: String)
24 |
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocFormat.swift:20:13: note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
18 | import Foundation
19 |
20 | public enum AllocFormat: String, CaseIterable {
   |             `- note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
21 |     case JSON = "application/json"
22 |     case CSV = "text/csv"
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocSchema+TableSignature.swift:27:16: warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static var tableSignatureMap: [AllocSchema: TableSignature] =
   |                |- warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'tableSignatureMap' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'tableSignatureMap' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |         AllocSchema.allCases.reduce(into: [:]) { map, schema in
29 |             map[schema] = schema.tableSignature
[40/77] Compiling AllocData AllocSchema+TableSignature.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocBase+Parsers.swift:22:13: warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
20 | // ISO8601DateFormatter requires macOS 10.12 or later.
21 | // It could conceivably be replaced with an implementation that is more broadly supported.
22 | private let isoDateFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoDateFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoDateFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | public extension AllocBase {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 |     CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocDataError.swift:22:10: warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
20 | public enum AllocDataError: Error, Equatable, CustomStringConvertible {
21 |     case encodingError(_ msg: String)
22 |     case targetFormatNotSupported(_ supported: [AllocFormat])
   |          `- warning: associated value 'targetFormatNotSupported' of 'Sendable'-conforming enum 'AllocDataError' has non-sendable type 'AllocFormat'; this is an error in the Swift 6 language mode
23 |     case invalidPrimaryKey(_ msg: String)
24 |
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocFormat.swift:20:13: note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
18 | import Foundation
19 |
20 | public enum AllocFormat: String, CaseIterable {
   |             `- note: consider making enum 'AllocFormat' conform to the 'Sendable' protocol
21 |     case JSON = "application/json"
22 |     case CSV = "text/csv"
/Users/admin/builder/spi-builder-workspace/Sources/Core/AllocSchema+TableSignature.swift:27:16: warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     static var tableSignatureMap: [AllocSchema: TableSignature] =
   |                |- warning: static property 'tableSignatureMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'tableSignatureMap' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'tableSignatureMap' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |         AllocSchema.allCases.reduce(into: [:]) { map, schema in
29 |             map[schema] = schema.tableSignature
[41/77] Compiling AllocData MTracker+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTracker: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.trackerID, .string, isRequired: true, isKey: true, "The identifier of the tracking index."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the tracking index."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTransaction: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.action, .string, isRequired: true, isKey: true, "The type of transaction."),
23 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The date of the transaction."),
[42/77] Compiling AllocData MTracker+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTracker: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.trackerID, .string, isRequired: true, isKey: true, "The identifier of the tracking index."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the tracking index."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTransaction: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.action, .string, isRequired: true, isKey: true, "The type of transaction."),
23 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The date of the transaction."),
[43/77] Compiling AllocData MTracker+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTracker: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.trackerID, .string, isRequired: true, isKey: true, "The identifier of the tracking index."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the tracking index."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTransaction: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.action, .string, isRequired: true, isKey: true, "The type of transaction."),
23 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The date of the transaction."),
[44/77] Compiling AllocData MTracker.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTracker: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.trackerID, .string, isRequired: true, isKey: true, "The identifier of the tracking index."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the tracking index."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTransaction: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.action, .string, isRequired: true, isKey: true, "The type of transaction."),
23 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The date of the transaction."),
[45/77] Compiling AllocData MTransaction+Action.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTracker: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.trackerID, .string, isRequired: true, isKey: true, "The identifier of the tracking index."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the tracking index."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTransaction: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.action, .string, isRequired: true, isKey: true, "The type of transaction."),
23 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The date of the transaction."),
[46/77] Compiling AllocData MTransaction+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTracker: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.trackerID, .string, isRequired: true, isKey: true, "The identifier of the tracking index."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the tracking index."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTransaction: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.action, .string, isRequired: true, isKey: true, "The type of transaction."),
23 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The date of the transaction."),
[47/77] Compiling AllocData MTransaction+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTracker: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.trackerID, .string, isRequired: true, isKey: true, "The identifier of the tracking index."),
23 |         AllocAttribute(CodingKeys.title, .string, isRequired: false, isKey: false, "The title of the tracking index."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MTransaction: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.action, .string, isRequired: true, isKey: true, "The type of transaction."),
23 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The date of the transaction."),
[48/77] Compiling AllocData MRebalanceSale+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSecurity: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The symbol/securityID of the security."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: false, isKey: false, "The asset class of the security."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSourceMeta: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.sourceMetaID, .string, isRequired: true, isKey: true, "The unique ID of the source meta record."),
23 |         AllocAttribute(CodingKeys.url, .string, isRequired: false, isKey: false, "The source URL, if any."),
[49/77] Compiling AllocData MRebalanceSale.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSecurity: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The symbol/securityID of the security."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: false, isKey: false, "The asset class of the security."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSourceMeta: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.sourceMetaID, .string, isRequired: true, isKey: true, "The unique ID of the source meta record."),
23 |         AllocAttribute(CodingKeys.url, .string, isRequired: false, isKey: false, "The source URL, if any."),
[50/77] Compiling AllocData MSecurity+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSecurity: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The symbol/securityID of the security."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: false, isKey: false, "The asset class of the security."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSourceMeta: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.sourceMetaID, .string, isRequired: true, isKey: true, "The unique ID of the source meta record."),
23 |         AllocAttribute(CodingKeys.url, .string, isRequired: false, isKey: false, "The source URL, if any."),
[51/77] Compiling AllocData MSecurity+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSecurity: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The symbol/securityID of the security."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: false, isKey: false, "The asset class of the security."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSourceMeta: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.sourceMetaID, .string, isRequired: true, isKey: true, "The unique ID of the source meta record."),
23 |         AllocAttribute(CodingKeys.url, .string, isRequired: false, isKey: false, "The source URL, if any."),
[52/77] Compiling AllocData MSecurity+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSecurity: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The symbol/securityID of the security."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: false, isKey: false, "The asset class of the security."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSourceMeta: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.sourceMetaID, .string, isRequired: true, isKey: true, "The unique ID of the source meta record."),
23 |         AllocAttribute(CodingKeys.url, .string, isRequired: false, isKey: false, "The source URL, if any."),
[53/77] Compiling AllocData MSecurity.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSecurity: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The symbol/securityID of the security."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: false, isKey: false, "The asset class of the security."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSourceMeta: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.sourceMetaID, .string, isRequired: true, isKey: true, "The unique ID of the source meta record."),
23 |         AllocAttribute(CodingKeys.url, .string, isRequired: false, isKey: false, "The source URL, if any."),
[54/77] Compiling AllocData MSourceMeta+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSecurity: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The symbol/securityID of the security."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: false, isKey: false, "The asset class of the security."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MSourceMeta: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.sourceMetaID, .string, isRequired: true, isKey: true, "The unique ID of the source meta record."),
23 |         AllocAttribute(CodingKeys.url, .string, isRequired: false, isKey: false, "The source URL, if any."),
[55/77] Compiling AllocData MCap.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MHolding: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to which the asset is allocated."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the allocation."),
[56/77] Compiling AllocData MHolding+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MHolding: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to which the asset is allocated."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the allocation."),
[57/77] Compiling AllocData MHolding+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MHolding: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to which the asset is allocated."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the allocation."),
[58/77] Compiling AllocData MHolding+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MHolding: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to which the asset is allocated."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the allocation."),
[59/77] Compiling AllocData MHolding.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MHolding: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to which the asset is allocated."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the allocation."),
[60/77] Compiling AllocData MRebalanceAllocation+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MHolding: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to which the asset is allocated."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the allocation."),
[61/77] Compiling AllocData MRebalanceAllocation+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MHolding: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to which the asset is allocated."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the allocation."),
[62/77] Compiling AllocData MRebalanceAllocation+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MHolding: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
23 |         AllocAttribute(CodingKeys.securityID, .string, isRequired: true, isKey: true, "The security of the position."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MRebalanceAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account to which the asset is allocated."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset class of the allocation."),
[63/77] Compiling AllocData MTransaction+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationCashflow: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The timestamp when this flow occurred."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the flow occurred."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Position/MValuationPosition+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationPosition: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The valuation snapshot ID for the position."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
[64/77] Compiling AllocData MTransaction.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationCashflow: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The timestamp when this flow occurred."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the flow occurred."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Position/MValuationPosition+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationPosition: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The valuation snapshot ID for the position."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
[65/77] Compiling AllocData MValuationCashflow+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationCashflow: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The timestamp when this flow occurred."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the flow occurred."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Position/MValuationPosition+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationPosition: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The valuation snapshot ID for the position."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
[66/77] Compiling AllocData MValuationCashflow+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationCashflow: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The timestamp when this flow occurred."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the flow occurred."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Position/MValuationPosition+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationPosition: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The valuation snapshot ID for the position."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
[67/77] Compiling AllocData MValuationCashflow+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationCashflow: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The timestamp when this flow occurred."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the flow occurred."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Position/MValuationPosition+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationPosition: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The valuation snapshot ID for the position."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
[68/77] Compiling AllocData MValuationCashflow.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationCashflow: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The timestamp when this flow occurred."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the flow occurred."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Position/MValuationPosition+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationPosition: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The valuation snapshot ID for the position."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
[69/77] Compiling AllocData MValuationPosition+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationCashflow: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.transactedAt, .date, isRequired: true, isKey: true, "The timestamp when this flow occurred."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account in which the flow occurred."),
/Users/admin/builder/spi-builder-workspace/Sources/Model/Valuation/Position/MValuationPosition+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MValuationPosition: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.snapshotID, .string, isRequired: true, isKey: true, "The valuation snapshot ID for the position."),
23 |         AllocAttribute(CodingKeys.accountID, .string, isRequired: true, isKey: true, "The account hosting the position."),
[70/77] Compiling AllocData AllocSchema.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Account/MAccount+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAccount: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID,
23 |                        .string,
/Users/admin/builder/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The strategy associated with this allocation."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset of the allocation."),
[71/77] Compiling AllocData MAccount+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Account/MAccount+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAccount: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID,
23 |                        .string,
/Users/admin/builder/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The strategy associated with this allocation."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset of the allocation."),
[72/77] Compiling AllocData MAccount+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Account/MAccount+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAccount: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID,
23 |                        .string,
/Users/admin/builder/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The strategy associated with this allocation."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset of the allocation."),
[73/77] Compiling AllocData MAccount+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Account/MAccount+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAccount: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID,
23 |                        .string,
/Users/admin/builder/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The strategy associated with this allocation."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset of the allocation."),
[74/77] Compiling AllocData MAccount.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Account/MAccount+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAccount: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID,
23 |                        .string,
/Users/admin/builder/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The strategy associated with this allocation."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset of the allocation."),
[75/77] Compiling AllocData MAllocation+Attributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Account/MAccount+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAccount: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID,
23 |                        .string,
/Users/admin/builder/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The strategy associated with this allocation."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset of the allocation."),
[76/77] Compiling AllocData MAllocation+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Account/MAccount+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAccount: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID,
23 |                        .string,
/Users/admin/builder/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The strategy associated with this allocation."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset of the allocation."),
[77/77] Compiling AllocData MAllocation+Row.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model/Account/MAccount+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAccount: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.accountID,
23 |                        .string,
/Users/admin/builder/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension MAllocation: AllocAttributable {
21 |     public static var attributes: [AllocAttribute] = [
   |                       |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'attributes' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |         AllocAttribute(CodingKeys.strategyID, .string, isRequired: true, isKey: true, "The strategy associated with this allocation."),
23 |         AllocAttribute(CodingKeys.assetID, .string, isRequired: true, isKey: true, "The asset of the allocation."),
Build complete! (5.94s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "AllocData",
  "name" : "AllocData",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "macos",
      "version" : "10.12"
    }
  ],
  "products" : [
    {
      "name" : "AllocData",
      "targets" : [
        "AllocData"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AllocDataTests",
      "module_type" : "SwiftTarget",
      "name" : "AllocDataTests",
      "path" : "Tests",
      "sources" : [
        "Helpers/FINformatTests.swift",
        "Helpers/ParserHelpersTests.swift",
        "Helpers/TableSignatureTests.swift",
        "LinuxMain.swift",
        "Model/MAccountTests.swift",
        "Model/MAllocationTests.swift",
        "Model/MAssetTests.swift",
        "Model/MCapTests.swift",
        "Model/MHoldingTests.swift",
        "Model/MRebalanceAllocationTests.swift",
        "Model/MRebalancePurchaseTests.swift",
        "Model/MRebalanceSaleTests.swift",
        "Model/MSecurityTests.swift",
        "Model/MSourceMetaTests.swift",
        "Model/MStrategyTests.swift",
        "Model/MTrackerTests.swift",
        "Model/MTransactionTests.swift",
        "Model/MValuationCashflowTests.swift",
        "Model/MValuationPositionTests.swift",
        "Model/MValuationSnapshotTests.swift"
      ],
      "target_dependencies" : [
        "AllocData"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AllocData",
      "module_type" : "SwiftTarget",
      "name" : "AllocData",
      "path" : "Sources",
      "product_memberships" : [
        "AllocData"
      ],
      "sources" : [
        "Core/AllocAttributable.swift",
        "Core/AllocBase+Parsers.swift",
        "Core/AllocBase.swift",
        "Core/AllocDataError.swift",
        "Core/AllocFormat.swift",
        "Core/AllocKeyed.swift",
        "Core/AllocRowed.swift",
        "Core/AllocSchema+TableSignature.swift",
        "Core/AllocSchema.swift",
        "Model/Account/MAccount+Attributes.swift",
        "Model/Account/MAccount+Key.swift",
        "Model/Account/MAccount+Row.swift",
        "Model/Account/MAccount.swift",
        "Model/Allocation/MAllocation+Attributes.swift",
        "Model/Allocation/MAllocation+Key.swift",
        "Model/Allocation/MAllocation+Row.swift",
        "Model/Allocation/MAllocation.swift",
        "Model/Asset/MAsset+Attributes.swift",
        "Model/Asset/MAsset+Key.swift",
        "Model/Asset/MAsset+Row.swift",
        "Model/Asset/MAsset.swift",
        "Model/Cap/MCap+Attributes.swift",
        "Model/Cap/MCap+Key.swift",
        "Model/Cap/MCap+Row.swift",
        "Model/Cap/MCap.swift",
        "Model/Holding/MHolding+Attributes.swift",
        "Model/Holding/MHolding+Key.swift",
        "Model/Holding/MHolding+Row.swift",
        "Model/Holding/MHolding.swift",
        "Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift",
        "Model/Rebalance/Allocation/MRebalanceAllocation+Key.swift",
        "Model/Rebalance/Allocation/MRebalanceAllocation+Row.swift",
        "Model/Rebalance/Allocation/MRebalanceAllocation.swift",
        "Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift",
        "Model/Rebalance/Purchase/MRebalancePurchase+Key.swift",
        "Model/Rebalance/Purchase/MRebalancePurchase+Row.swift",
        "Model/Rebalance/Purchase/MRebalancePurchase.swift",
        "Model/Rebalance/Sale/MRebalanceSale+Attributes.swift",
        "Model/Rebalance/Sale/MRebalanceSale+Key.swift",
        "Model/Rebalance/Sale/MRebalanceSale+Row.swift",
        "Model/Rebalance/Sale/MRebalanceSale.swift",
        "Model/Security/MSecurity+Attributes.swift",
        "Model/Security/MSecurity+Key.swift",
        "Model/Security/MSecurity+Row.swift",
        "Model/Security/MSecurity.swift",
        "Model/Source/Meta/MSourceMeta+Attributes.swift",
        "Model/Source/Meta/MSourceMeta+Key.swift",
        "Model/Source/Meta/MSourceMeta+Row.swift",
        "Model/Source/Meta/MSourceMeta.swift",
        "Model/Strategy/MStrategy+Attributes.swift",
        "Model/Strategy/MStrategy+Key.swift",
        "Model/Strategy/MStrategy+Row.swift",
        "Model/Strategy/MStrategy.swift",
        "Model/Tracker/MTracker+Attributes.swift",
        "Model/Tracker/MTracker+Key.swift",
        "Model/Tracker/MTracker+Row.swift",
        "Model/Tracker/MTracker.swift",
        "Model/Transaction/MTransaction+Action.swift",
        "Model/Transaction/MTransaction+Attributes.swift",
        "Model/Transaction/MTransaction+Key.swift",
        "Model/Transaction/MTransaction+Row.swift",
        "Model/Transaction/MTransaction.swift",
        "Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift",
        "Model/Valuation/Cashflow/MValuationCashflow+Key.swift",
        "Model/Valuation/Cashflow/MValuationCashflow+Row.swift",
        "Model/Valuation/Cashflow/MValuationCashflow.swift",
        "Model/Valuation/Position/MValuationPosition+Attributes.swift",
        "Model/Valuation/Position/MValuationPosition+Key.swift",
        "Model/Valuation/Position/MValuationPosition+Row.swift",
        "Model/Valuation/Position/MValuationPosition.swift",
        "Model/Valuation/Snapshot/MValuationSnapshot+Attributes.swift",
        "Model/Valuation/Snapshot/MValuationSnapshot+Key.swift",
        "Model/Valuation/Snapshot/MValuationSnapshot+Row.swift",
        "Model/Valuation/Snapshot/MValuationSnapshot.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.