The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of AdaptiveCardUI, reference 0.1.3 (7bfdcf), with Swift 6.0 for macOS (SPM) on 27 Nov 2024 23:03:11 UTC.

Swift 6 data race errors: 103

Build Command

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

Build Log

 6 |
   :
17 |
18 | public extension ImageSize {
19 |     static let auto = ImageSize(rawValue: "auto")
   |                |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'auto' 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
20 |     static let stretch = ImageSize(rawValue: "stretch")
21 |     static let small = ImageSize(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageStyle.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct ImageStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageStyle' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension ImageStyle {
18 |     static let `default` = ImageStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let person = ImageStyle(rawValue: "person")
20 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct TextColor: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension TextColor {
18 |     static let `default` = TextColor(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let dark = TextColor(rawValue: "dark")
20 |     static let light = TextColor(rawValue: "light")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontType.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The font type of text elements.
 4 | public struct FontType: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontType' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontType {
19 |     static let `default` = FontType(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let monospace = FontType(rawValue: "monospace")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontSize.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the relative size of text elements.
 4 | public struct FontSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontSize {
19 |     static let `default` = FontSize(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let small = FontSize(rawValue: "small")
21 |     static let medium = FontSize(rawValue: "medium")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontWeight.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the weight of text elements.
 4 | public struct FontWeight: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontWeight' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontWeight {
19 |     static let `default` = FontWeight(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let light = FontWeight(rawValue: "lighter")
21 |     static let bold = FontWeight(rawValue: "bolder")
[148/167] Compiling AdaptiveCardUI Fallback.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/Spacing.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Specifies how much spacing. Hosts pick the exact pixel amounts for each of these.
 4 | public struct Spacing: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'Spacing' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension Spacing {
19 |     static let `default` = Spacing(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let none = Spacing(rawValue: "none")
21 |     static let small = Spacing(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:18:16: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
   |                |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'top' 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
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Elements/ColumnWidth.swift:51:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 |
50 | extension ColumnWidth: DefaultValueProvider {
51 |     public static var `default` = ColumnWidth.stretch
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/BlockElementHeight.swift:44:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | extension BlockElementHeight: DefaultValueProvider {
44 |     public static var `default` = BlockElementHeight.auto
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
45 | }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/HAlignment.swift:19:16: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls how content is horizontally positioned within its container.
 4 | public struct HAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'HAlignment' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension HAlignment {
19 |     static let left = HAlignment(rawValue: "left")
   |                |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'left' 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
20 |     static let center = HAlignment(rawValue: "center")
21 |     static let right = HAlignment(rawValue: "right")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageSize.swift:19:16: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the approximate size of the image. The physical dimensions will vary per host.
 4 | public struct ImageSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ImageSize {
19 |     static let auto = ImageSize(rawValue: "auto")
   |                |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'auto' 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
20 |     static let stretch = ImageSize(rawValue: "stretch")
21 |     static let small = ImageSize(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageStyle.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct ImageStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageStyle' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension ImageStyle {
18 |     static let `default` = ImageStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let person = ImageStyle(rawValue: "person")
20 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct TextColor: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension TextColor {
18 |     static let `default` = TextColor(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let dark = TextColor(rawValue: "dark")
20 |     static let light = TextColor(rawValue: "light")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontType.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The font type of text elements.
 4 | public struct FontType: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontType' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontType {
19 |     static let `default` = FontType(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let monospace = FontType(rawValue: "monospace")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontSize.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the relative size of text elements.
 4 | public struct FontSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontSize {
19 |     static let `default` = FontSize(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let small = FontSize(rawValue: "small")
21 |     static let medium = FontSize(rawValue: "medium")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontWeight.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the weight of text elements.
 4 | public struct FontWeight: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontWeight' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontWeight {
19 |     static let `default` = FontWeight(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let light = FontWeight(rawValue: "lighter")
21 |     static let bold = FontWeight(rawValue: "bolder")
[149/167] Compiling AdaptiveCardUI Image.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/Spacing.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Specifies how much spacing. Hosts pick the exact pixel amounts for each of these.
 4 | public struct Spacing: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'Spacing' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension Spacing {
19 |     static let `default` = Spacing(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let none = Spacing(rawValue: "none")
21 |     static let small = Spacing(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:18:16: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
   |                |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'top' 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
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Elements/ColumnWidth.swift:51:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 |
50 | extension ColumnWidth: DefaultValueProvider {
51 |     public static var `default` = ColumnWidth.stretch
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/BlockElementHeight.swift:44:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | extension BlockElementHeight: DefaultValueProvider {
44 |     public static var `default` = BlockElementHeight.auto
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
45 | }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/HAlignment.swift:19:16: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls how content is horizontally positioned within its container.
 4 | public struct HAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'HAlignment' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension HAlignment {
19 |     static let left = HAlignment(rawValue: "left")
   |                |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'left' 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
20 |     static let center = HAlignment(rawValue: "center")
21 |     static let right = HAlignment(rawValue: "right")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageSize.swift:19:16: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the approximate size of the image. The physical dimensions will vary per host.
 4 | public struct ImageSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ImageSize {
19 |     static let auto = ImageSize(rawValue: "auto")
   |                |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'auto' 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
20 |     static let stretch = ImageSize(rawValue: "stretch")
21 |     static let small = ImageSize(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageStyle.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct ImageStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageStyle' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension ImageStyle {
18 |     static let `default` = ImageStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let person = ImageStyle(rawValue: "person")
20 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct TextColor: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension TextColor {
18 |     static let `default` = TextColor(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let dark = TextColor(rawValue: "dark")
20 |     static let light = TextColor(rawValue: "light")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontType.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The font type of text elements.
 4 | public struct FontType: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontType' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontType {
19 |     static let `default` = FontType(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let monospace = FontType(rawValue: "monospace")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontSize.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the relative size of text elements.
 4 | public struct FontSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontSize {
19 |     static let `default` = FontSize(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let small = FontSize(rawValue: "small")
21 |     static let medium = FontSize(rawValue: "medium")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontWeight.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the weight of text elements.
 4 | public struct FontWeight: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontWeight' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontWeight {
19 |     static let `default` = FontWeight(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let light = FontWeight(rawValue: "lighter")
21 |     static let bold = FontWeight(rawValue: "bolder")
[150/167] Compiling AdaptiveCardUI RichTextBlock.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/Spacing.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Specifies how much spacing. Hosts pick the exact pixel amounts for each of these.
 4 | public struct Spacing: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'Spacing' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension Spacing {
19 |     static let `default` = Spacing(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let none = Spacing(rawValue: "none")
21 |     static let small = Spacing(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:18:16: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
   |                |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'top' 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
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Elements/ColumnWidth.swift:51:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 |
50 | extension ColumnWidth: DefaultValueProvider {
51 |     public static var `default` = ColumnWidth.stretch
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/BlockElementHeight.swift:44:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | extension BlockElementHeight: DefaultValueProvider {
44 |     public static var `default` = BlockElementHeight.auto
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
45 | }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/HAlignment.swift:19:16: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls how content is horizontally positioned within its container.
 4 | public struct HAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'HAlignment' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension HAlignment {
19 |     static let left = HAlignment(rawValue: "left")
   |                |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'left' 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
20 |     static let center = HAlignment(rawValue: "center")
21 |     static let right = HAlignment(rawValue: "right")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageSize.swift:19:16: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the approximate size of the image. The physical dimensions will vary per host.
 4 | public struct ImageSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ImageSize {
19 |     static let auto = ImageSize(rawValue: "auto")
   |                |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'auto' 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
20 |     static let stretch = ImageSize(rawValue: "stretch")
21 |     static let small = ImageSize(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageStyle.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct ImageStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageStyle' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension ImageStyle {
18 |     static let `default` = ImageStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let person = ImageStyle(rawValue: "person")
20 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct TextColor: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension TextColor {
18 |     static let `default` = TextColor(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let dark = TextColor(rawValue: "dark")
20 |     static let light = TextColor(rawValue: "light")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontType.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The font type of text elements.
 4 | public struct FontType: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontType' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontType {
19 |     static let `default` = FontType(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let monospace = FontType(rawValue: "monospace")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontSize.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the relative size of text elements.
 4 | public struct FontSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontSize {
19 |     static let `default` = FontSize(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let small = FontSize(rawValue: "small")
21 |     static let medium = FontSize(rawValue: "medium")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontWeight.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the weight of text elements.
 4 | public struct FontWeight: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontWeight' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontWeight {
19 |     static let `default` = FontWeight(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let light = FontWeight(rawValue: "lighter")
21 |     static let bold = FontWeight(rawValue: "bolder")
[151/167] Compiling AdaptiveCardUI TextBlock.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/Spacing.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Specifies how much spacing. Hosts pick the exact pixel amounts for each of these.
 4 | public struct Spacing: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'Spacing' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension Spacing {
19 |     static let `default` = Spacing(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let none = Spacing(rawValue: "none")
21 |     static let small = Spacing(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:18:16: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
   |                |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'top' 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
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Elements/ColumnWidth.swift:51:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 |
50 | extension ColumnWidth: DefaultValueProvider {
51 |     public static var `default` = ColumnWidth.stretch
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/BlockElementHeight.swift:44:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | extension BlockElementHeight: DefaultValueProvider {
44 |     public static var `default` = BlockElementHeight.auto
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
45 | }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/HAlignment.swift:19:16: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls how content is horizontally positioned within its container.
 4 | public struct HAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'HAlignment' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension HAlignment {
19 |     static let left = HAlignment(rawValue: "left")
   |                |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'left' 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
20 |     static let center = HAlignment(rawValue: "center")
21 |     static let right = HAlignment(rawValue: "right")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageSize.swift:19:16: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the approximate size of the image. The physical dimensions will vary per host.
 4 | public struct ImageSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ImageSize {
19 |     static let auto = ImageSize(rawValue: "auto")
   |                |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'auto' 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
20 |     static let stretch = ImageSize(rawValue: "stretch")
21 |     static let small = ImageSize(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageStyle.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct ImageStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageStyle' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension ImageStyle {
18 |     static let `default` = ImageStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let person = ImageStyle(rawValue: "person")
20 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct TextColor: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension TextColor {
18 |     static let `default` = TextColor(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let dark = TextColor(rawValue: "dark")
20 |     static let light = TextColor(rawValue: "light")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontType.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The font type of text elements.
 4 | public struct FontType: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontType' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontType {
19 |     static let `default` = FontType(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let monospace = FontType(rawValue: "monospace")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontSize.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the relative size of text elements.
 4 | public struct FontSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontSize {
19 |     static let `default` = FontSize(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let small = FontSize(rawValue: "small")
21 |     static let medium = FontSize(rawValue: "medium")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontWeight.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the weight of text elements.
 4 | public struct FontWeight: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontWeight' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontWeight {
19 |     static let `default` = FontWeight(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let light = FontWeight(rawValue: "lighter")
21 |     static let bold = FontWeight(rawValue: "bolder")
[152/167] Compiling AdaptiveCardUI TextRun.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/Spacing.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Specifies how much spacing. Hosts pick the exact pixel amounts for each of these.
 4 | public struct Spacing: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'Spacing' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension Spacing {
19 |     static let `default` = Spacing(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let none = Spacing(rawValue: "none")
21 |     static let small = Spacing(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:18:16: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
   |                |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'top' 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
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Elements/ColumnWidth.swift:51:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 |
50 | extension ColumnWidth: DefaultValueProvider {
51 |     public static var `default` = ColumnWidth.stretch
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/BlockElementHeight.swift:44:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | extension BlockElementHeight: DefaultValueProvider {
44 |     public static var `default` = BlockElementHeight.auto
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
45 | }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/HAlignment.swift:19:16: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls how content is horizontally positioned within its container.
 4 | public struct HAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'HAlignment' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension HAlignment {
19 |     static let left = HAlignment(rawValue: "left")
   |                |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'left' 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
20 |     static let center = HAlignment(rawValue: "center")
21 |     static let right = HAlignment(rawValue: "right")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageSize.swift:19:16: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the approximate size of the image. The physical dimensions will vary per host.
 4 | public struct ImageSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ImageSize {
19 |     static let auto = ImageSize(rawValue: "auto")
   |                |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'auto' 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
20 |     static let stretch = ImageSize(rawValue: "stretch")
21 |     static let small = ImageSize(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageStyle.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct ImageStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageStyle' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension ImageStyle {
18 |     static let `default` = ImageStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let person = ImageStyle(rawValue: "person")
20 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct TextColor: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension TextColor {
18 |     static let `default` = TextColor(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let dark = TextColor(rawValue: "dark")
20 |     static let light = TextColor(rawValue: "light")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontType.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The font type of text elements.
 4 | public struct FontType: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontType' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontType {
19 |     static let `default` = FontType(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let monospace = FontType(rawValue: "monospace")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontSize.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the relative size of text elements.
 4 | public struct FontSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontSize {
19 |     static let `default` = FontSize(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let small = FontSize(rawValue: "small")
21 |     static let medium = FontSize(rawValue: "medium")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontWeight.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the weight of text elements.
 4 | public struct FontWeight: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontWeight' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontWeight {
19 |     static let `default` = FontWeight(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let light = FontWeight(rawValue: "lighter")
21 |     static let bold = FontWeight(rawValue: "bolder")
[153/167] Compiling AdaptiveCardUI UnknownCardElement.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/Spacing.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Specifies how much spacing. Hosts pick the exact pixel amounts for each of these.
 4 | public struct Spacing: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'Spacing' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension Spacing {
19 |     static let `default` = Spacing(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let none = Spacing(rawValue: "none")
21 |     static let small = Spacing(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:18:16: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
   |                |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'top' 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
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Elements/ColumnWidth.swift:51:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 |
50 | extension ColumnWidth: DefaultValueProvider {
51 |     public static var `default` = ColumnWidth.stretch
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/BlockElementHeight.swift:44:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | extension BlockElementHeight: DefaultValueProvider {
44 |     public static var `default` = BlockElementHeight.auto
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
45 | }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/HAlignment.swift:19:16: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls how content is horizontally positioned within its container.
 4 | public struct HAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'HAlignment' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension HAlignment {
19 |     static let left = HAlignment(rawValue: "left")
   |                |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'left' 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
20 |     static let center = HAlignment(rawValue: "center")
21 |     static let right = HAlignment(rawValue: "right")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageSize.swift:19:16: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the approximate size of the image. The physical dimensions will vary per host.
 4 | public struct ImageSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ImageSize {
19 |     static let auto = ImageSize(rawValue: "auto")
   |                |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'auto' 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
20 |     static let stretch = ImageSize(rawValue: "stretch")
21 |     static let small = ImageSize(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageStyle.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct ImageStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageStyle' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension ImageStyle {
18 |     static let `default` = ImageStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let person = ImageStyle(rawValue: "person")
20 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct TextColor: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension TextColor {
18 |     static let `default` = TextColor(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let dark = TextColor(rawValue: "dark")
20 |     static let light = TextColor(rawValue: "light")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontType.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The font type of text elements.
 4 | public struct FontType: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontType' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontType {
19 |     static let `default` = FontType(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let monospace = FontType(rawValue: "monospace")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontSize.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the relative size of text elements.
 4 | public struct FontSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontSize {
19 |     static let `default` = FontSize(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let small = FontSize(rawValue: "small")
21 |     static let medium = FontSize(rawValue: "medium")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontWeight.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the weight of text elements.
 4 | public struct FontWeight: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontWeight' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontWeight {
19 |     static let `default` = FontWeight(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let light = FontWeight(rawValue: "lighter")
21 |     static let bold = FontWeight(rawValue: "bolder")
[154/167] Compiling AdaptiveCardUI UnknownColumnSetElement.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/Spacing.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Specifies how much spacing. Hosts pick the exact pixel amounts for each of these.
 4 | public struct Spacing: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'Spacing' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension Spacing {
19 |     static let `default` = Spacing(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let none = Spacing(rawValue: "none")
21 |     static let small = Spacing(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:18:16: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
   |                |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'top' 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
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Elements/ColumnWidth.swift:51:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 |
50 | extension ColumnWidth: DefaultValueProvider {
51 |     public static var `default` = ColumnWidth.stretch
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/BlockElementHeight.swift:44:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | extension BlockElementHeight: DefaultValueProvider {
44 |     public static var `default` = BlockElementHeight.auto
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
45 | }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/HAlignment.swift:19:16: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls how content is horizontally positioned within its container.
 4 | public struct HAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'HAlignment' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension HAlignment {
19 |     static let left = HAlignment(rawValue: "left")
   |                |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'HAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'left' 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
20 |     static let center = HAlignment(rawValue: "center")
21 |     static let right = HAlignment(rawValue: "right")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageSize.swift:19:16: warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the approximate size of the image. The physical dimensions will vary per host.
 4 | public struct ImageSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ImageSize {
19 |     static let auto = ImageSize(rawValue: "auto")
   |                |- warning: static property 'auto' is not concurrency-safe because non-'Sendable' type 'ImageSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'auto' 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
20 |     static let stretch = ImageSize(rawValue: "stretch")
21 |     static let small = ImageSize(rawValue: "small")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageStyle.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct ImageStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ImageStyle' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension ImageStyle {
18 |     static let `default` = ImageStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ImageStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let person = ImageStyle(rawValue: "person")
20 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct TextColor: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
16 |
17 | public extension TextColor {
18 |     static let `default` = TextColor(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
19 |     static let dark = TextColor(rawValue: "dark")
20 |     static let light = TextColor(rawValue: "light")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontType.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The font type of text elements.
 4 | public struct FontType: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontType' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontType {
19 |     static let `default` = FontType(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let monospace = FontType(rawValue: "monospace")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontSize.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the relative size of text elements.
 4 | public struct FontSize: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontSize' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontSize {
19 |     static let `default` = FontSize(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontSize' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let small = FontSize(rawValue: "small")
21 |     static let medium = FontSize(rawValue: "medium")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/FontWeight.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Controls the weight of text elements.
 4 | public struct FontWeight: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'FontWeight' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension FontWeight {
19 |     static let `default` = FontWeight(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontWeight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let light = FontWeight(rawValue: "lighter")
21 |     static let bold = FontWeight(rawValue: "bolder")
[155/167] Compiling AdaptiveCardUI RepeatVerticallyImageView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 |         static let defaultValue: [String: CustomCardElementViewFactory] = [:]
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 |     private struct ContainerStyleKey: EnvironmentKey {
26 |         static let defaultValue: ContainerStyle = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ContainerStyle {
19 |     static let `default` = ContainerStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let emphasis = ContainerStyle(rawValue: "emphasis")
21 |     static let good = ContainerStyle(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 |         var body: some View {
22 |             VStack(alignment: .leading) {
23 |                 ForEach(factSet.facts.indices) { row in
   |                                       `- warning: non-constant range: not an integer range
24 |                     HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 |                         text(factSet.facts[row].title, configuration: factSetConfiguration.title)
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
   |                |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'center' 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
20 |     static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
   |                |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'bottom' 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
21 | }
22 |
[156/167] Compiling AdaptiveCardUI CardElementList.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 |         static let defaultValue: [String: CustomCardElementViewFactory] = [:]
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 |     private struct ContainerStyleKey: EnvironmentKey {
26 |         static let defaultValue: ContainerStyle = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ContainerStyle {
19 |     static let `default` = ContainerStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let emphasis = ContainerStyle(rawValue: "emphasis")
21 |     static let good = ContainerStyle(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 |         var body: some View {
22 |             VStack(alignment: .leading) {
23 |                 ForEach(factSet.facts.indices) { row in
   |                                       `- warning: non-constant range: not an integer range
24 |                     HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 |                         text(factSet.facts[row].title, configuration: factSetConfiguration.title)
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
   |                |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'center' 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
20 |     static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
   |                |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'bottom' 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
21 | }
22 |
[157/167] Compiling AdaptiveCardUI CardElementView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 |         static let defaultValue: [String: CustomCardElementViewFactory] = [:]
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 |     private struct ContainerStyleKey: EnvironmentKey {
26 |         static let defaultValue: ContainerStyle = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ContainerStyle {
19 |     static let `default` = ContainerStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let emphasis = ContainerStyle(rawValue: "emphasis")
21 |     static let good = ContainerStyle(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 |         var body: some View {
22 |             VStack(alignment: .leading) {
23 |                 ForEach(factSet.facts.indices) { row in
   |                                       `- warning: non-constant range: not an integer range
24 |                     HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 |                         text(factSet.facts[row].title, configuration: factSetConfiguration.title)
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
   |                |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'center' 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
20 |     static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
   |                |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'bottom' 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
21 | }
22 |
[158/167] Compiling AdaptiveCardUI CustomCardElementView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 |         static let defaultValue: [String: CustomCardElementViewFactory] = [:]
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 |     private struct ContainerStyleKey: EnvironmentKey {
26 |         static let defaultValue: ContainerStyle = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ContainerStyle {
19 |     static let `default` = ContainerStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let emphasis = ContainerStyle(rawValue: "emphasis")
21 |     static let good = ContainerStyle(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 |         var body: some View {
22 |             VStack(alignment: .leading) {
23 |                 ForEach(factSet.facts.indices) { row in
   |                                       `- warning: non-constant range: not an integer range
24 |                     HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 |                         text(factSet.facts[row].title, configuration: factSetConfiguration.title)
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
   |                |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'center' 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
20 |     static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
   |                |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'bottom' 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
21 | }
22 |
[159/167] Compiling AdaptiveCardUI SpacingCardElementView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 |         static let defaultValue: [String: CustomCardElementViewFactory] = [:]
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 |     private struct ContainerStyleKey: EnvironmentKey {
26 |         static let defaultValue: ContainerStyle = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ContainerStyle {
19 |     static let `default` = ContainerStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let emphasis = ContainerStyle(rawValue: "emphasis")
21 |     static let good = ContainerStyle(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 |         var body: some View {
22 |             VStack(alignment: .leading) {
23 |                 ForEach(factSet.facts.indices) { row in
   |                                       `- warning: non-constant range: not an integer range
24 |                     HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 |                         text(factSet.facts[row].title, configuration: factSetConfiguration.title)
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
   |                |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'center' 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
20 |     static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
   |                |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'bottom' 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
21 | }
22 |
[160/167] Compiling AdaptiveCardUI Color+ARGBHex.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 |         static let defaultValue: [String: CustomCardElementViewFactory] = [:]
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 |     private struct ContainerStyleKey: EnvironmentKey {
26 |         static let defaultValue: ContainerStyle = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ContainerStyle {
19 |     static let `default` = ContainerStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let emphasis = ContainerStyle(rawValue: "emphasis")
21 |     static let good = ContainerStyle(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 |         var body: some View {
22 |             VStack(alignment: .leading) {
23 |                 ForEach(factSet.facts.indices) { row in
   |                                       `- warning: non-constant range: not an integer range
24 |                     HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 |                         text(factSet.facts[row].title, configuration: factSetConfiguration.title)
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
   |                |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'center' 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
20 |     static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
   |                |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'bottom' 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
21 | }
22 |
[161/167] Compiling AdaptiveCardUI ColumnSetView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 |         static let defaultValue: [String: CustomCardElementViewFactory] = [:]
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 |     private struct ContainerStyleKey: EnvironmentKey {
26 |         static let defaultValue: ContainerStyle = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ContainerStyle {
19 |     static let `default` = ContainerStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let emphasis = ContainerStyle(rawValue: "emphasis")
21 |     static let good = ContainerStyle(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 |         var body: some View {
22 |             VStack(alignment: .leading) {
23 |                 ForEach(factSet.facts.indices) { row in
   |                                       `- warning: non-constant range: not an integer range
24 |                     HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 |                         text(factSet.facts[row].title, configuration: factSetConfiguration.title)
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
   |                |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'center' 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
20 |     static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
   |                |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'bottom' 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
21 | }
22 |
[162/167] Compiling AdaptiveCardUI ColumnView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 |         static let defaultValue: [String: CustomCardElementViewFactory] = [:]
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 |     private struct ContainerStyleKey: EnvironmentKey {
26 |         static let defaultValue: ContainerStyle = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ContainerStyle {
19 |     static let `default` = ContainerStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let emphasis = ContainerStyle(rawValue: "emphasis")
21 |     static let good = ContainerStyle(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 |         var body: some View {
22 |             VStack(alignment: .leading) {
23 |                 ForEach(factSet.facts.indices) { row in
   |                                       `- warning: non-constant range: not an integer range
24 |                     HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 |                         text(factSet.facts[row].title, configuration: factSetConfiguration.title)
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
   |                |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'center' 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
20 |     static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
   |                |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'bottom' 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
21 | }
22 |
[163/167] Compiling AdaptiveCardUI SpacingColumnView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 |         static let defaultValue: [String: CustomCardElementViewFactory] = [:]
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 |     private struct ContainerStyleKey: EnvironmentKey {
26 |         static let defaultValue: ContainerStyle = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ContainerStyle {
19 |     static let `default` = ContainerStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let emphasis = ContainerStyle(rawValue: "emphasis")
21 |     static let good = ContainerStyle(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 |         var body: some View {
22 |             VStack(alignment: .leading) {
23 |                 ForEach(factSet.facts.indices) { row in
   |                                       `- warning: non-constant range: not an integer range
24 |                     HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 |                         text(factSet.facts[row].title, configuration: factSetConfiguration.title)
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
   |                |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'center' 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
20 |     static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
   |                |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'bottom' 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
21 | }
22 |
[164/167] Compiling AdaptiveCardUI ContainerView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 |         static let defaultValue: [String: CustomCardElementViewFactory] = [:]
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 |     private struct ContainerStyleKey: EnvironmentKey {
26 |         static let defaultValue: ContainerStyle = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ContainerStyle {
19 |     static let `default` = ContainerStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let emphasis = ContainerStyle(rawValue: "emphasis")
21 |     static let good = ContainerStyle(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 |         var body: some View {
22 |             VStack(alignment: .leading) {
23 |                 ForEach(factSet.facts.indices) { row in
   |                                       `- warning: non-constant range: not an integer range
24 |                     HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 |                         text(factSet.facts[row].title, configuration: factSetConfiguration.title)
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
   |                |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'center' 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
20 |     static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
   |                |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'bottom' 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
21 | }
22 |
[165/167] Compiling AdaptiveCardUI EnvironmentValues+ContainerStyle.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 |         static let defaultValue: [String: CustomCardElementViewFactory] = [:]
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 |     private struct ContainerStyleKey: EnvironmentKey {
26 |         static let defaultValue: ContainerStyle = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ContainerStyle {
19 |     static let `default` = ContainerStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let emphasis = ContainerStyle(rawValue: "emphasis")
21 |     static let good = ContainerStyle(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 |         var body: some View {
22 |             VStack(alignment: .leading) {
23 |                 ForEach(factSet.facts.indices) { row in
   |                                       `- warning: non-constant range: not an integer range
24 |                     HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 |                         text(factSet.facts[row].title, configuration: factSetConfiguration.title)
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
   |                |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'center' 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
20 |     static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
   |                |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'bottom' 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
21 | }
22 |
[166/167] Compiling AdaptiveCardUI FactSetView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 |         static let defaultValue: [String: CustomCardElementViewFactory] = [:]
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 |     private struct ContainerStyleKey: EnvironmentKey {
26 |         static let defaultValue: ContainerStyle = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ContainerStyle {
19 |     static let `default` = ContainerStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let emphasis = ContainerStyle(rawValue: "emphasis")
21 |     static let good = ContainerStyle(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 |         var body: some View {
22 |             VStack(alignment: .leading) {
23 |                 ForEach(factSet.facts.indices) { row in
   |                                       `- warning: non-constant range: not an integer range
24 |                     HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 |                         text(factSet.facts[row].title, configuration: factSetConfiguration.title)
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
   |                |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'center' 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
20 |     static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
   |                |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'bottom' 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
21 | }
22 |
[167/167] Compiling AdaptiveCardUI Alignment+VAlignment.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 |         static let defaultValue: [String: CustomCardElementViewFactory] = [:]
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 |     private struct ContainerStyleKey: EnvironmentKey {
26 |         static let defaultValue: ContainerStyle = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'defaultValue' 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
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:19:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// The style for a container element.
 4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
 5 |     public private(set) var rawValue: String
 6 |
   :
17 |
18 | public extension ContainerStyle {
19 |     static let `default` = ContainerStyle(rawValue: "default")
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
20 |     static let emphasis = ContainerStyle(rawValue: "emphasis")
21 |     static let good = ContainerStyle(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 |         var body: some View {
22 |             VStack(alignment: .leading) {
23 |                 ForEach(factSet.facts.indices) { row in
   |                                       `- warning: non-constant range: not an integer range
24 |                     HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 |                         text(factSet.facts[row].title, configuration: factSetConfiguration.title)
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
17 | public extension VAlignment {
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
   |                |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'center' 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
20 |     static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
   |               `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
 4 |     public private(set) var rawValue: String
 5 |
   :
18 |     static let top = VAlignment(rawValue: "top")
19 |     static let center = VAlignment(rawValue: "center")
20 |     static let bottom = VAlignment(rawValue: "bottom")
   |                |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'bottom' 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
21 | }
22 |
Build complete! (23.01s)
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
    {
      "identity" : "defaultcodable",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/gonzalezreal/DefaultCodable"
    },
    {
      "identity" : "anyvalue",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/gonzalezreal/AnyValue"
    },
    {
      "identity" : "networkimage",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/gonzalezreal/NetworkImage"
    },
    {
      "identity" : "combine-schedulers",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.2",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/combine-schedulers"
    },
    {
      "identity" : "swift-snapshot-testing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.8.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-snapshot-testing"
    }
  ],
  "manifest_display_name" : "AdaptiveCardUI",
  "name" : "AdaptiveCardUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    }
  ],
  "products" : [
    {
      "name" : "AdaptiveCardUI",
      "targets" : [
        "AdaptiveCardUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AdaptiveCardUITests",
      "module_type" : "SwiftTarget",
      "name" : "AdaptiveCardUITests",
      "path" : "Tests/AdaptiveCardUITests",
      "product_dependencies" : [
        "SnapshotTesting"
      ],
      "sources" : [
        "Configuration/ActionSetConfigurationTests.swift",
        "Configuration/FontConfigurationTests.swift",
        "Configuration/ImageSizeConfigurationTests.swift",
        "Configuration/ShowCardConfigurationTests.swift",
        "Configuration/SpacingConfigurationTests.swift",
        "Logic/AdaptiveCardDuplicateIdentifiersTests.swift",
        "Logic/AdaptiveCardFeatureAdaptableTests.swift",
        "Logic/AdaptiveCardImageURLsTests.swift",
        "Logic/AdaptiveCardStoreTests.swift",
        "Logic/AdaptiveCardToggleVisibilityTests.swift",
        "Model/ActionTests.swift",
        "Model/BackgroundImageTests.swift",
        "Model/BlockElementHeightTests.swift",
        "Model/CardElementTests.swift",
        "Model/ColumnSetElementTests.swift",
        "Model/ColumnWidthTests.swift",
        "Model/PixelDimensionTests.swift",
        "Model/SemanticVersionTests.swift",
        "Model/TargetElementTests.swift",
        "Model/TextRunTests.swift",
        "UI/ActionRenderingTests.swift",
        "UI/AdaptiveCardConfiguration+Test.swift",
        "UI/ColorTests.swift",
        "UI/ColumnSetRenderingTests.swift",
        "UI/ContainerRenderingTests.swift",
        "UI/CustomCardElementRenderingTests.swift",
        "UI/CustomCardElements/RepoLanguage.swift",
        "UI/CustomCardElements/RepoLanguageView.swift",
        "UI/CustomCardElements/StarCount.swift",
        "UI/CustomCardElements/StarCountView.swift",
        "UI/FactSetRenderingTests.swift",
        "UI/ImageRenderingTests.swift",
        "UI/ImageSetRenderingTests.swift",
        "UI/RichTextBlockRenderingTests.swift",
        "UI/TestHelpers.swift",
        "UI/TextBlockRenderingTests.swift",
        "UI/TextElementTests.swift"
      ],
      "target_dependencies" : [
        "AdaptiveCardUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AdaptiveCardUI",
      "module_type" : "SwiftTarget",
      "name" : "AdaptiveCardUI",
      "path" : "Sources/AdaptiveCardUI",
      "product_dependencies" : [
        "DefaultCodable",
        "AnyValue",
        "NetworkImage",
        "CombineSchedulers"
      ],
      "product_memberships" : [
        "AdaptiveCardUI"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/en.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        }
      ],
      "sources" : [
        "Configuration/ActionSetConfiguration.swift",
        "Configuration/AdaptiveCardConfiguration.swift",
        "Configuration/Color+Configuration.swift",
        "Configuration/ContainerConfiguration.swift",
        "Configuration/ContainerStyleConfiguration.swift",
        "Configuration/EnvironmentValues+Configuration.swift",
        "Configuration/FactSetConfiguration.swift",
        "Configuration/FontConfiguration.swift",
        "Configuration/FontTypeConfiguration.swift",
        "Configuration/ImageSizeConfiguration.swift",
        "Configuration/ShowCardConfiguration.swift",
        "Configuration/SpacingConfiguration.swift",
        "Configuration/TextBlockConfiguration.swift",
        "Configuration/TextColorConfiguration.swift",
        "Configuration/TextColorPair.swift",
        "Configuration/View+Configuration.swift",
        "Logic/FeatureAdaptation/Action+FeatureAdaptable.swift",
        "Logic/FeatureAdaptation/AdaptiveCard+FeatureAdaptable.swift",
        "Logic/FeatureAdaptation/CardElement+FeatureAdaptable.swift",
        "Logic/FeatureAdaptation/ColumnSetElement+FeatureAdaptable.swift",
        "Logic/FeatureAdaptation/Fallback+FeatureAdaptable.swift",
        "Logic/FeatureAdaptation/FeatureAdaptable.swift",
        "Logic/Store/AdaptiveCard+DuplicateIdentifiers.swift",
        "Logic/Store/AdaptiveCard+ImageURLs.swift",
        "Logic/Store/AdaptiveCardCache.swift",
        "Logic/Store/AdaptiveCardDownloader.swift",
        "Logic/Store/AdaptiveCardStore.swift",
        "Logic/Store/ImmediateAdaptiveCardCache.swift",
        "Logic/ToggleVisibility/AdaptiveCard+Toggleable.swift",
        "Logic/ToggleVisibility/CardElement+Toggleable.swift",
        "Logic/ToggleVisibility/ColumnSetElement+Toggleable.swift",
        "Logic/ToggleVisibility/Image+Toggleable.swift",
        "Logic/ToggleVisibility/Toggleable.swift",
        "Model/Actions/Action.swift",
        "Model/Actions/ActionProtocol.swift",
        "Model/Actions/ActionStyle.swift",
        "Model/Actions/OpenURLAction.swift",
        "Model/Actions/ShowCardAction.swift",
        "Model/Actions/SubmitAction.swift",
        "Model/Actions/TargetElement.swift",
        "Model/Actions/ToggleVisibilityAction.swift",
        "Model/Actions/UnknownAction.swift",
        "Model/AdaptiveCard.swift",
        "Model/Common/BackgroundImage.swift",
        "Model/Common/BlockElementHeight.swift",
        "Model/Common/ContainerStyle.swift",
        "Model/Common/FontSize.swift",
        "Model/Common/FontType.swift",
        "Model/Common/FontWeight.swift",
        "Model/Common/HAlignment.swift",
        "Model/Common/ImageFillMode.swift",
        "Model/Common/ImageSize.swift",
        "Model/Common/ImageStyle.swift",
        "Model/Common/ItemIdentifier.swift",
        "Model/Common/PixelDimension.swift",
        "Model/Common/SemanticVersion.swift",
        "Model/Common/Spacing.swift",
        "Model/Common/TextColor.swift",
        "Model/Common/VAlignment.swift",
        "Model/Containers/ActionSet.swift",
        "Model/Containers/ColumnSet.swift",
        "Model/Containers/Container.swift",
        "Model/Containers/Fact.swift",
        "Model/Containers/FactSet.swift",
        "Model/Containers/ImageSet.swift",
        "Model/Elements/CardElement.swift",
        "Model/Elements/CardElementProtocol.swift",
        "Model/Elements/Column.swift",
        "Model/Elements/ColumnSetElement.swift",
        "Model/Elements/ColumnSetElementProtocol.swift",
        "Model/Elements/ColumnWidth.swift",
        "Model/Elements/CustomCardElement.swift",
        "Model/Elements/Fallback.swift",
        "Model/Elements/Image.swift",
        "Model/Elements/RichTextBlock.swift",
        "Model/Elements/TextBlock.swift",
        "Model/Elements/TextRun.swift",
        "Model/Elements/UnknownCardElement.swift",
        "Model/Elements/UnknownColumnSetElement.swift",
        "UI/ActionSet/ActionSetView.swift",
        "UI/ActionSet/ActionView.swift",
        "UI/ActionSet/CapsuleButtonModifier.swift",
        "UI/ActionSet/CapsuleButtonStyle.swift",
        "UI/AdaptiveCard/AdaptiveCardFeatures.swift",
        "UI/AdaptiveCard/AdaptiveCardSourceView.swift",
        "UI/AdaptiveCard/AdaptiveCardView.swift",
        "UI/AdaptiveCard/ErrorView.swift",
        "UI/AdaptiveCard/PrimitiveCardView.swift",
        "UI/BackgroundImage/BackgroundImageStyle.swift",
        "UI/BackgroundImage/BackgroundImageView.swift",
        "UI/BackgroundImage/CoverImageView.swift",
        "UI/BackgroundImage/RepeatHorizontallyImageView.swift",
        "UI/BackgroundImage/RepeatVerticallyImageView.swift",
        "UI/CardElement/CardElementList.swift",
        "UI/CardElement/CardElementView.swift",
        "UI/CardElement/CustomCardElementView.swift",
        "UI/CardElement/SpacingCardElementView.swift",
        "UI/Color/Color+ARGBHex.swift",
        "UI/ColumnSet/ColumnSetView.swift",
        "UI/ColumnSet/ColumnView.swift",
        "UI/ColumnSet/SpacingColumnView.swift",
        "UI/Container/ContainerView.swift",
        "UI/Container/EnvironmentValues+ContainerStyle.swift",
        "UI/FactSet/FactSetView.swift",
        "UI/Helpers/Alignment+VAlignment.swift",
        "UI/Helpers/BlockElementHeight+CGFloat.swift",
        "UI/Helpers/CollectSizeModifier.swift",
        "UI/Helpers/FlowLayout.swift",
        "UI/Helpers/HAlign.swift",
        "UI/Helpers/HAlignment+Offset.swift",
        "UI/Helpers/Padded.swift",
        "UI/Helpers/PixelDimension+CGFloat.swift",
        "UI/Helpers/SelectActionModifier.swift",
        "UI/Helpers/VAlignment+Offset.swift",
        "UI/Image/AutoImageView.swift",
        "UI/Image/ContentSizeKey.swift",
        "UI/Image/CustomImageStyle.swift",
        "UI/Image/FixedSizeImageView.swift",
        "UI/Image/ImageSetView.swift",
        "UI/Image/ImageSizeImageView.swift",
        "UI/Image/ImageStyleView.swift",
        "UI/Image/ImageView.swift",
        "UI/Image/PrimitiveImageStyle.swift",
        "UI/Text/Font.Design+FontType.swift",
        "UI/Text/Font.Weight+FontWeight.swift",
        "UI/Text/RichTextBlockView.swift",
        "UI/Text/Text+Parsing.swift",
        "UI/Text/TextAlignment+HAlignment.swift",
        "UI/Text/TextBlockView.swift",
        "UI/Text/TextElement.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.