Build Information
Successful build of AllocData with Swift 6.0 for Linux.
Swift 6 data race errors: 19
Build Command
bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
19 |
20 | extension MSourceMeta: AllocAttributable {
21 | public static var attributes: [AllocAttribute] = [
| |- warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[21/77] Compiling AllocData AllocSchema.swift
/host/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
23 |
24 | public extension AllocBase {
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
2 | open var timeZone: TimeZone! { get set }
3 | open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/Core/AllocBase+Parsers.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
16 | // limitations under the License.
17 |
18 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
19 |
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()
| |- note: annotate 'isoDateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | public extension AllocBase {
/host/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 |
/host/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"
/host/spi-builder-workspace/Sources/Core/AllocSchema+TableSignature.swift:27:16: warning: static property 'tableSignatureMap' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'tableSignatureMap' with '@MainActor' if property should only be accessed from the main actor
| `- 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
/host/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Account/MAccount+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 | AllocAttribute(CodingKeys.accountID,
23 | .string,
/host/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Snapshot/MValuationSnapshot+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Position/MValuationPosition+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[22/77] Compiling AllocData MAccount+Attributes.swift
/host/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
23 |
24 | public extension AllocBase {
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
2 | open var timeZone: TimeZone! { get set }
3 | open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/Core/AllocBase+Parsers.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
16 | // limitations under the License.
17 |
18 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
19 |
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()
| |- note: annotate 'isoDateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | public extension AllocBase {
/host/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 |
/host/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"
/host/spi-builder-workspace/Sources/Core/AllocSchema+TableSignature.swift:27:16: warning: static property 'tableSignatureMap' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'tableSignatureMap' with '@MainActor' if property should only be accessed from the main actor
| `- 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
/host/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Account/MAccount+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 | AllocAttribute(CodingKeys.accountID,
23 | .string,
/host/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Snapshot/MValuationSnapshot+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Position/MValuationPosition+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[23/77] Compiling AllocData MAccount+Key.swift
/host/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[24/77] Compiling AllocData MAccount+Row.swift
/host/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[25/77] Compiling AllocData MAccount.swift
/host/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[26/77] Compiling AllocData MAllocation+Attributes.swift
/host/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[27/77] Compiling AllocData MAllocation+Key.swift
/host/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[28/77] Compiling AllocData MAllocation+Row.swift
/host/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[29/77] Compiling AllocData MAllocation.swift
/host/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[30/77] Compiling AllocData MAsset+Attributes.swift
/host/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[31/77] Compiling AllocData MAsset+Key.swift
/host/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[32/77] Compiling AllocData MAsset+Row.swift
/host/spi-builder-workspace/Sources/Model/Allocation/MAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Asset/MAsset+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[33/77] Compiling AllocData MTracker.swift
/host/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[34/77] Compiling AllocData MTransaction+Action.swift
/host/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[35/77] Compiling AllocData MTransaction+Attributes.swift
/host/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[36/77] Compiling AllocData MTransaction+Key.swift
/host/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[37/77] Compiling AllocData MTransaction+Row.swift
/host/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[38/77] Compiling AllocData MTransaction.swift
/host/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[39/77] Compiling AllocData MValuationCashflow+Attributes.swift
/host/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[40/77] Compiling AllocData MValuationCashflow+Key.swift
/host/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[41/77] Compiling AllocData MValuationCashflow+Row.swift
/host/spi-builder-workspace/Sources/Model/Transaction/MTransaction+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Valuation/Cashflow/MValuationCashflow+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[42/77] Compiling AllocData MRebalanceSale+Key.swift
/host/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[43/77] Compiling AllocData MRebalanceSale+Row.swift
/host/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[44/77] Compiling AllocData MRebalanceSale.swift
/host/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[45/77] Compiling AllocData MSecurity+Attributes.swift
/host/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[46/77] Compiling AllocData MSecurity+Key.swift
/host/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[47/77] Compiling AllocData MSecurity+Row.swift
/host/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[48/77] Compiling AllocData MSecurity.swift
/host/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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 MSourceMeta+Attributes.swift
/host/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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 MSourceMeta+Key.swift
/host/spi-builder-workspace/Sources/Model/Security/MSecurity+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Source/Meta/MSourceMeta+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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 MSourceMeta+Row.swift
/host/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[52/77] Compiling AllocData MSourceMeta.swift
/host/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[53/77] Compiling AllocData MStrategy+Attributes.swift
/host/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[54/77] Compiling AllocData MStrategy+Key.swift
/host/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[55/77] Compiling AllocData MStrategy+Row.swift
/host/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[56/77] Compiling AllocData MStrategy.swift
/host/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[57/77] Compiling AllocData MTracker+Attributes.swift
/host/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[58/77] Compiling AllocData MTracker+Key.swift
/host/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[59/77] Compiling AllocData MTracker+Row.swift
/host/spi-builder-workspace/Sources/Model/Strategy/MStrategy+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Tracker/MTracker+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[60/77] Compiling AllocData MAsset.swift
/host/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[61/77] Compiling AllocData MCap+Attributes.swift
/host/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[62/77] Compiling AllocData MCap+Key.swift
/host/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[63/77] Compiling AllocData MCap+Row.swift
/host/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[64/77] Compiling AllocData MCap.swift
/host/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[65/77] Compiling AllocData MHolding+Attributes.swift
/host/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[66/77] Compiling AllocData MHolding+Key.swift
/host/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[67/77] Compiling AllocData MHolding+Row.swift
/host/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[68/77] Compiling AllocData MHolding.swift
/host/spi-builder-workspace/Sources/Model/Cap/MCap+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Holding/MHolding+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[69/77] Compiling AllocData MRebalanceAllocation+Attributes.swift
/host/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[70/77] Compiling AllocData MRebalanceAllocation+Key.swift
/host/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[71/77] Compiling AllocData MRebalanceAllocation+Row.swift
/host/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[72/77] Compiling AllocData MRebalanceAllocation.swift
/host/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[73/77] Compiling AllocData MRebalancePurchase+Attributes.swift
/host/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[74/77] Compiling AllocData MRebalancePurchase+Key.swift
/host/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[75/77] Compiling AllocData MRebalancePurchase+Row.swift
/host/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[76/77] Compiling AllocData MRebalancePurchase.swift
/host/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
[77/77] Compiling AllocData MRebalanceSale+Attributes.swift
/host/spi-builder-workspace/Sources/Model/Rebalance/Allocation/MRebalanceAllocation+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Purchase/MRebalancePurchase+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
/host/spi-builder-workspace/Sources/Model/Rebalance/Sale/MRebalanceSale+Attributes.swift:21:23: warning: static property 'attributes' is not concurrency-safe because it is non-isolated 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 non-isolated 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: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
| `- 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."),
Build complete! (11.95s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "AllocData",
"name" : "AllocData",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "11.0"
},
{
"name" : "macos",
"version" : "10.13"
}
],
"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.7"
}
Done.