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 main (4ac1a3), with Swift 6.1 for macOS (SPM) on 26 Apr 2025 08:10:43 UTC.

Swift 6 data race errors: 103

Build Command

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

Build Log

 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
19 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
20 |     public extension ContainerConfiguration {
21 |         static let `default` = ContainerConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |             backgroundColor: .defaultBackground,
23 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:26:20: warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
24 |         )
25 |
26 |         static let emphasis = ContainerConfiguration(
   |                    |- warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'emphasis' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |             backgroundColor: .emphasisBackground,
28 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:31:20: warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
29 |         )
30 |
31 |         static let accent = ContainerConfiguration(
   |                    |- warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'accent' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |             backgroundColor: .accentColor,
33 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:58:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
   :
56 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
57 |     public extension ContainerStyleConfiguration {
58 |         static let `default` = ContainerStyleConfiguration()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |     }
60 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:46:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
44 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
45 |     private struct ActionSetConfigurationKey: EnvironmentKey {
46 |         static let defaultValue = ActionSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift:11:19: note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ActionSetConfiguration: Equatable {
   |                   `- note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
12 |         public enum Orientation: String, Decodable {
13 |             case horizontal, vertical
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:51:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
49 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
50 |     private struct ContainerStyleConfigurationKey: EnvironmentKey {
51 |         static let defaultValue = ContainerStyleConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:8:19: note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:56:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
54 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
55 |     private struct ImageSizeConfigurationKey: EnvironmentKey {
56 |         static let defaultValue = ImageSizeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |     }
58 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ImageSizeConfiguration.swift:11:19: note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ImageSizeConfiguration: Equatable {
   |                   `- note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
12 |         /// Small image size value.
13 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:61:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
59 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
60 |     private struct FontTypeConfigurationKey: EnvironmentKey {
61 |         static let defaultValue = FontTypeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |     }
63 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:11:19: note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:66:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
64 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
65 |     private struct FactSetConfigurationKey: EnvironmentKey {
66 |         static let defaultValue = FactSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |     }
68 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:11:19: note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:71:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
69 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
70 |     private struct SpacingConfigurationKey: EnvironmentKey {
71 |         static let defaultValue: SpacingConfiguration = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |     }
73 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/SpacingConfiguration.swift:12:19: note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
10 |     /// modifier and specify an instance of this type.
11 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
12 |     public struct SpacingConfiguration: Equatable {
   |                   `- note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
13 |         public let `default`: CGFloat
14 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:34:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
   :
32 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
33 |     public extension FactSetConfiguration {
34 |         static let `default` = FactSetConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |             title: TextBlockConfiguration(weight: .bold, maxWidth: 132),
36 |             value: .default,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:77:20: warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 75 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 76 |     private extension FontConfiguration {
 77 |         static let default1 = FontConfiguration(
    |                    |- warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |             default: .callout,
 79 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:86:20: warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 84 |
 85 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
 86 |         static let default2 = FontConfiguration(
    |                    |- warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 |             default: .callout,
 88 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:95:20: warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 93 |
 94 |         @available(watchOS 7.0, *)
 95 |         static let monospace1 = FontConfiguration(
    |                    |- warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |             default: .system(.callout, design: .monospaced),
 97 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:104:20: warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
102 |
103 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
104 |         static let monospace2 = FontConfiguration(
    |                    |- warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |             default: .system(.callout, design: .monospaced),
106 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:35:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
   :
33 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
34 |     public extension FontTypeConfiguration {
35 |         static let `default` = FontTypeConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |             default: .default,
37 |             monospace: .monospace
[156/170] Compiling AdaptiveCardUI ContainerConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift:57:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ActionSetConfiguration: Equatable {
   |                   `- note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
12 |         public enum Orientation: String, Decodable {
13 |             case horizontal, vertical
   :
55 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
56 |     public extension ActionSetConfiguration {
57 |         static let `default` = ActionSetConfiguration()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     }
59 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:21:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
19 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
20 |     public extension ContainerConfiguration {
21 |         static let `default` = ContainerConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |             backgroundColor: .defaultBackground,
23 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:26:20: warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
24 |         )
25 |
26 |         static let emphasis = ContainerConfiguration(
   |                    |- warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'emphasis' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |             backgroundColor: .emphasisBackground,
28 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:31:20: warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
29 |         )
30 |
31 |         static let accent = ContainerConfiguration(
   |                    |- warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'accent' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |             backgroundColor: .accentColor,
33 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:58:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
   :
56 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
57 |     public extension ContainerStyleConfiguration {
58 |         static let `default` = ContainerStyleConfiguration()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |     }
60 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:46:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
44 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
45 |     private struct ActionSetConfigurationKey: EnvironmentKey {
46 |         static let defaultValue = ActionSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift:11:19: note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ActionSetConfiguration: Equatable {
   |                   `- note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
12 |         public enum Orientation: String, Decodable {
13 |             case horizontal, vertical
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:51:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
49 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
50 |     private struct ContainerStyleConfigurationKey: EnvironmentKey {
51 |         static let defaultValue = ContainerStyleConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:8:19: note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:56:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
54 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
55 |     private struct ImageSizeConfigurationKey: EnvironmentKey {
56 |         static let defaultValue = ImageSizeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |     }
58 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ImageSizeConfiguration.swift:11:19: note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ImageSizeConfiguration: Equatable {
   |                   `- note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
12 |         /// Small image size value.
13 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:61:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
59 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
60 |     private struct FontTypeConfigurationKey: EnvironmentKey {
61 |         static let defaultValue = FontTypeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |     }
63 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:11:19: note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:66:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
64 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
65 |     private struct FactSetConfigurationKey: EnvironmentKey {
66 |         static let defaultValue = FactSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |     }
68 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:11:19: note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:71:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
69 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
70 |     private struct SpacingConfigurationKey: EnvironmentKey {
71 |         static let defaultValue: SpacingConfiguration = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |     }
73 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/SpacingConfiguration.swift:12:19: note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
10 |     /// modifier and specify an instance of this type.
11 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
12 |     public struct SpacingConfiguration: Equatable {
   |                   `- note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
13 |         public let `default`: CGFloat
14 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:34:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
   :
32 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
33 |     public extension FactSetConfiguration {
34 |         static let `default` = FactSetConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |             title: TextBlockConfiguration(weight: .bold, maxWidth: 132),
36 |             value: .default,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:77:20: warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 75 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 76 |     private extension FontConfiguration {
 77 |         static let default1 = FontConfiguration(
    |                    |- warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |             default: .callout,
 79 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:86:20: warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 84 |
 85 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
 86 |         static let default2 = FontConfiguration(
    |                    |- warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 |             default: .callout,
 88 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:95:20: warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 93 |
 94 |         @available(watchOS 7.0, *)
 95 |         static let monospace1 = FontConfiguration(
    |                    |- warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |             default: .system(.callout, design: .monospaced),
 97 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:104:20: warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
102 |
103 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
104 |         static let monospace2 = FontConfiguration(
    |                    |- warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |             default: .system(.callout, design: .monospaced),
106 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:35:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
   :
33 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
34 |     public extension FontTypeConfiguration {
35 |         static let `default` = FontTypeConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |             default: .default,
37 |             monospace: .monospace
[157/170] Compiling AdaptiveCardUI ContainerStyleConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift:57:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ActionSetConfiguration: Equatable {
   |                   `- note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
12 |         public enum Orientation: String, Decodable {
13 |             case horizontal, vertical
   :
55 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
56 |     public extension ActionSetConfiguration {
57 |         static let `default` = ActionSetConfiguration()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     }
59 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:21:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
19 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
20 |     public extension ContainerConfiguration {
21 |         static let `default` = ContainerConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |             backgroundColor: .defaultBackground,
23 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:26:20: warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
24 |         )
25 |
26 |         static let emphasis = ContainerConfiguration(
   |                    |- warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'emphasis' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |             backgroundColor: .emphasisBackground,
28 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:31:20: warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
29 |         )
30 |
31 |         static let accent = ContainerConfiguration(
   |                    |- warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'accent' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |             backgroundColor: .accentColor,
33 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:58:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
   :
56 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
57 |     public extension ContainerStyleConfiguration {
58 |         static let `default` = ContainerStyleConfiguration()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |     }
60 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:46:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
44 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
45 |     private struct ActionSetConfigurationKey: EnvironmentKey {
46 |         static let defaultValue = ActionSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift:11:19: note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ActionSetConfiguration: Equatable {
   |                   `- note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
12 |         public enum Orientation: String, Decodable {
13 |             case horizontal, vertical
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:51:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
49 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
50 |     private struct ContainerStyleConfigurationKey: EnvironmentKey {
51 |         static let defaultValue = ContainerStyleConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:8:19: note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:56:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
54 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
55 |     private struct ImageSizeConfigurationKey: EnvironmentKey {
56 |         static let defaultValue = ImageSizeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |     }
58 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ImageSizeConfiguration.swift:11:19: note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ImageSizeConfiguration: Equatable {
   |                   `- note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
12 |         /// Small image size value.
13 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:61:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
59 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
60 |     private struct FontTypeConfigurationKey: EnvironmentKey {
61 |         static let defaultValue = FontTypeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |     }
63 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:11:19: note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:66:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
64 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
65 |     private struct FactSetConfigurationKey: EnvironmentKey {
66 |         static let defaultValue = FactSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |     }
68 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:11:19: note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:71:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
69 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
70 |     private struct SpacingConfigurationKey: EnvironmentKey {
71 |         static let defaultValue: SpacingConfiguration = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |     }
73 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/SpacingConfiguration.swift:12:19: note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
10 |     /// modifier and specify an instance of this type.
11 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
12 |     public struct SpacingConfiguration: Equatable {
   |                   `- note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
13 |         public let `default`: CGFloat
14 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:34:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
   :
32 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
33 |     public extension FactSetConfiguration {
34 |         static let `default` = FactSetConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |             title: TextBlockConfiguration(weight: .bold, maxWidth: 132),
36 |             value: .default,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:77:20: warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 75 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 76 |     private extension FontConfiguration {
 77 |         static let default1 = FontConfiguration(
    |                    |- warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |             default: .callout,
 79 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:86:20: warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 84 |
 85 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
 86 |         static let default2 = FontConfiguration(
    |                    |- warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 |             default: .callout,
 88 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:95:20: warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 93 |
 94 |         @available(watchOS 7.0, *)
 95 |         static let monospace1 = FontConfiguration(
    |                    |- warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |             default: .system(.callout, design: .monospaced),
 97 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:104:20: warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
102 |
103 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
104 |         static let monospace2 = FontConfiguration(
    |                    |- warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |             default: .system(.callout, design: .monospaced),
106 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:35:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
   :
33 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
34 |     public extension FontTypeConfiguration {
35 |         static let `default` = FontTypeConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |             default: .default,
37 |             monospace: .monospace
[158/170] Compiling AdaptiveCardUI EnvironmentValues+Configuration.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift:57:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ActionSetConfiguration: Equatable {
   |                   `- note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
12 |         public enum Orientation: String, Decodable {
13 |             case horizontal, vertical
   :
55 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
56 |     public extension ActionSetConfiguration {
57 |         static let `default` = ActionSetConfiguration()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     }
59 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:21:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
19 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
20 |     public extension ContainerConfiguration {
21 |         static let `default` = ContainerConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |             backgroundColor: .defaultBackground,
23 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:26:20: warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
24 |         )
25 |
26 |         static let emphasis = ContainerConfiguration(
   |                    |- warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'emphasis' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |             backgroundColor: .emphasisBackground,
28 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:31:20: warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
29 |         )
30 |
31 |         static let accent = ContainerConfiguration(
   |                    |- warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'accent' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |             backgroundColor: .accentColor,
33 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:58:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
   :
56 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
57 |     public extension ContainerStyleConfiguration {
58 |         static let `default` = ContainerStyleConfiguration()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |     }
60 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:46:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
44 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
45 |     private struct ActionSetConfigurationKey: EnvironmentKey {
46 |         static let defaultValue = ActionSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift:11:19: note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ActionSetConfiguration: Equatable {
   |                   `- note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
12 |         public enum Orientation: String, Decodable {
13 |             case horizontal, vertical
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:51:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
49 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
50 |     private struct ContainerStyleConfigurationKey: EnvironmentKey {
51 |         static let defaultValue = ContainerStyleConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:8:19: note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:56:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
54 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
55 |     private struct ImageSizeConfigurationKey: EnvironmentKey {
56 |         static let defaultValue = ImageSizeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |     }
58 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ImageSizeConfiguration.swift:11:19: note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ImageSizeConfiguration: Equatable {
   |                   `- note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
12 |         /// Small image size value.
13 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:61:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
59 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
60 |     private struct FontTypeConfigurationKey: EnvironmentKey {
61 |         static let defaultValue = FontTypeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |     }
63 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:11:19: note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:66:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
64 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
65 |     private struct FactSetConfigurationKey: EnvironmentKey {
66 |         static let defaultValue = FactSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |     }
68 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:11:19: note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:71:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
69 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
70 |     private struct SpacingConfigurationKey: EnvironmentKey {
71 |         static let defaultValue: SpacingConfiguration = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |     }
73 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/SpacingConfiguration.swift:12:19: note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
10 |     /// modifier and specify an instance of this type.
11 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
12 |     public struct SpacingConfiguration: Equatable {
   |                   `- note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
13 |         public let `default`: CGFloat
14 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:34:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
   :
32 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
33 |     public extension FactSetConfiguration {
34 |         static let `default` = FactSetConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |             title: TextBlockConfiguration(weight: .bold, maxWidth: 132),
36 |             value: .default,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:77:20: warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 75 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 76 |     private extension FontConfiguration {
 77 |         static let default1 = FontConfiguration(
    |                    |- warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |             default: .callout,
 79 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:86:20: warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 84 |
 85 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
 86 |         static let default2 = FontConfiguration(
    |                    |- warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 |             default: .callout,
 88 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:95:20: warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 93 |
 94 |         @available(watchOS 7.0, *)
 95 |         static let monospace1 = FontConfiguration(
    |                    |- warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |             default: .system(.callout, design: .monospaced),
 97 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:104:20: warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
102 |
103 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
104 |         static let monospace2 = FontConfiguration(
    |                    |- warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |             default: .system(.callout, design: .monospaced),
106 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:35:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
   :
33 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
34 |     public extension FontTypeConfiguration {
35 |         static let `default` = FontTypeConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |             default: .default,
37 |             monospace: .monospace
[159/170] Compiling AdaptiveCardUI FactSetConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift:57:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ActionSetConfiguration: Equatable {
   |                   `- note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
12 |         public enum Orientation: String, Decodable {
13 |             case horizontal, vertical
   :
55 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
56 |     public extension ActionSetConfiguration {
57 |         static let `default` = ActionSetConfiguration()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     }
59 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:21:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
19 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
20 |     public extension ContainerConfiguration {
21 |         static let `default` = ContainerConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |             backgroundColor: .defaultBackground,
23 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:26:20: warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
24 |         )
25 |
26 |         static let emphasis = ContainerConfiguration(
   |                    |- warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'emphasis' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |             backgroundColor: .emphasisBackground,
28 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:31:20: warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
29 |         )
30 |
31 |         static let accent = ContainerConfiguration(
   |                    |- warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'accent' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |             backgroundColor: .accentColor,
33 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:58:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
   :
56 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
57 |     public extension ContainerStyleConfiguration {
58 |         static let `default` = ContainerStyleConfiguration()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |     }
60 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:46:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
44 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
45 |     private struct ActionSetConfigurationKey: EnvironmentKey {
46 |         static let defaultValue = ActionSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift:11:19: note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ActionSetConfiguration: Equatable {
   |                   `- note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
12 |         public enum Orientation: String, Decodable {
13 |             case horizontal, vertical
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:51:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
49 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
50 |     private struct ContainerStyleConfigurationKey: EnvironmentKey {
51 |         static let defaultValue = ContainerStyleConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:8:19: note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:56:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
54 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
55 |     private struct ImageSizeConfigurationKey: EnvironmentKey {
56 |         static let defaultValue = ImageSizeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |     }
58 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ImageSizeConfiguration.swift:11:19: note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ImageSizeConfiguration: Equatable {
   |                   `- note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
12 |         /// Small image size value.
13 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:61:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
59 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
60 |     private struct FontTypeConfigurationKey: EnvironmentKey {
61 |         static let defaultValue = FontTypeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |     }
63 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:11:19: note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:66:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
64 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
65 |     private struct FactSetConfigurationKey: EnvironmentKey {
66 |         static let defaultValue = FactSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |     }
68 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:11:19: note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:71:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
69 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
70 |     private struct SpacingConfigurationKey: EnvironmentKey {
71 |         static let defaultValue: SpacingConfiguration = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |     }
73 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/SpacingConfiguration.swift:12:19: note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
10 |     /// modifier and specify an instance of this type.
11 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
12 |     public struct SpacingConfiguration: Equatable {
   |                   `- note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
13 |         public let `default`: CGFloat
14 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:34:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
   :
32 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
33 |     public extension FactSetConfiguration {
34 |         static let `default` = FactSetConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |             title: TextBlockConfiguration(weight: .bold, maxWidth: 132),
36 |             value: .default,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:77:20: warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 75 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 76 |     private extension FontConfiguration {
 77 |         static let default1 = FontConfiguration(
    |                    |- warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |             default: .callout,
 79 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:86:20: warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 84 |
 85 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
 86 |         static let default2 = FontConfiguration(
    |                    |- warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 |             default: .callout,
 88 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:95:20: warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 93 |
 94 |         @available(watchOS 7.0, *)
 95 |         static let monospace1 = FontConfiguration(
    |                    |- warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |             default: .system(.callout, design: .monospaced),
 97 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:104:20: warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
102 |
103 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
104 |         static let monospace2 = FontConfiguration(
    |                    |- warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |             default: .system(.callout, design: .monospaced),
106 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:35:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
   :
33 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
34 |     public extension FontTypeConfiguration {
35 |         static let `default` = FontTypeConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |             default: .default,
37 |             monospace: .monospace
[160/170] Compiling AdaptiveCardUI FontConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift:57:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ActionSetConfiguration: Equatable {
   |                   `- note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
12 |         public enum Orientation: String, Decodable {
13 |             case horizontal, vertical
   :
55 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
56 |     public extension ActionSetConfiguration {
57 |         static let `default` = ActionSetConfiguration()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     }
59 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:21:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
19 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
20 |     public extension ContainerConfiguration {
21 |         static let `default` = ContainerConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |             backgroundColor: .defaultBackground,
23 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:26:20: warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
24 |         )
25 |
26 |         static let emphasis = ContainerConfiguration(
   |                    |- warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'emphasis' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |             backgroundColor: .emphasisBackground,
28 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:31:20: warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
29 |         )
30 |
31 |         static let accent = ContainerConfiguration(
   |                    |- warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'accent' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |             backgroundColor: .accentColor,
33 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:58:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
   :
56 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
57 |     public extension ContainerStyleConfiguration {
58 |         static let `default` = ContainerStyleConfiguration()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |     }
60 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:46:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
44 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
45 |     private struct ActionSetConfigurationKey: EnvironmentKey {
46 |         static let defaultValue = ActionSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift:11:19: note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ActionSetConfiguration: Equatable {
   |                   `- note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
12 |         public enum Orientation: String, Decodable {
13 |             case horizontal, vertical
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:51:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
49 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
50 |     private struct ContainerStyleConfigurationKey: EnvironmentKey {
51 |         static let defaultValue = ContainerStyleConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:8:19: note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:56:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
54 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
55 |     private struct ImageSizeConfigurationKey: EnvironmentKey {
56 |         static let defaultValue = ImageSizeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |     }
58 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ImageSizeConfiguration.swift:11:19: note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ImageSizeConfiguration: Equatable {
   |                   `- note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
12 |         /// Small image size value.
13 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:61:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
59 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
60 |     private struct FontTypeConfigurationKey: EnvironmentKey {
61 |         static let defaultValue = FontTypeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |     }
63 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:11:19: note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:66:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
64 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
65 |     private struct FactSetConfigurationKey: EnvironmentKey {
66 |         static let defaultValue = FactSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |     }
68 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:11:19: note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:71:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
69 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
70 |     private struct SpacingConfigurationKey: EnvironmentKey {
71 |         static let defaultValue: SpacingConfiguration = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |     }
73 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/SpacingConfiguration.swift:12:19: note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
10 |     /// modifier and specify an instance of this type.
11 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
12 |     public struct SpacingConfiguration: Equatable {
   |                   `- note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
13 |         public let `default`: CGFloat
14 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:34:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
   :
32 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
33 |     public extension FactSetConfiguration {
34 |         static let `default` = FactSetConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |             title: TextBlockConfiguration(weight: .bold, maxWidth: 132),
36 |             value: .default,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:77:20: warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 75 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 76 |     private extension FontConfiguration {
 77 |         static let default1 = FontConfiguration(
    |                    |- warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |             default: .callout,
 79 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:86:20: warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 84 |
 85 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
 86 |         static let default2 = FontConfiguration(
    |                    |- warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 |             default: .callout,
 88 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:95:20: warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 93 |
 94 |         @available(watchOS 7.0, *)
 95 |         static let monospace1 = FontConfiguration(
    |                    |- warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |             default: .system(.callout, design: .monospaced),
 97 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:104:20: warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
102 |
103 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
104 |         static let monospace2 = FontConfiguration(
    |                    |- warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |             default: .system(.callout, design: .monospaced),
106 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:35:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
   :
33 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
34 |     public extension FontTypeConfiguration {
35 |         static let `default` = FontTypeConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |             default: .default,
37 |             monospace: .monospace
[161/170] Compiling AdaptiveCardUI FontTypeConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift:57:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ActionSetConfiguration: Equatable {
   |                   `- note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
12 |         public enum Orientation: String, Decodable {
13 |             case horizontal, vertical
   :
55 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
56 |     public extension ActionSetConfiguration {
57 |         static let `default` = ActionSetConfiguration()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     }
59 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:21:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
19 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
20 |     public extension ContainerConfiguration {
21 |         static let `default` = ContainerConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |             backgroundColor: .defaultBackground,
23 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:26:20: warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
24 |         )
25 |
26 |         static let emphasis = ContainerConfiguration(
   |                    |- warning: static property 'emphasis' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'emphasis' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |             backgroundColor: .emphasisBackground,
28 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift:31:20: warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 6 |     public struct ContainerConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerConfiguration' conform to the 'Sendable' protocol
 7 |         /// The background color to use for this container.
 8 |         public let backgroundColor: Color
   :
29 |         )
30 |
31 |         static let accent = ContainerConfiguration(
   |                    |- warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'ContainerConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'accent' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |             backgroundColor: .accentColor,
33 |             textColors: .default
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:58:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
   :
56 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
57 |     public extension ContainerStyleConfiguration {
58 |         static let `default` = ContainerStyleConfiguration()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |     }
60 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:46:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
44 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
45 |     private struct ActionSetConfigurationKey: EnvironmentKey {
46 |         static let defaultValue = ActionSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ActionSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift:11:19: note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ActionSetConfiguration: Equatable {
   |                   `- note: consider making struct 'ActionSetConfiguration' conform to the 'Sendable' protocol
12 |         public enum Orientation: String, Decodable {
13 |             case horizontal, vertical
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:51:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
49 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
50 |     private struct ContainerStyleConfigurationKey: EnvironmentKey {
51 |         static let defaultValue = ContainerStyleConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift:8:19: note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 6 |     /// A container style configuration specifies the configuration values for the different container styles.
 7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 8 |     public struct ContainerStyleConfiguration: Equatable {
   |                   `- note: consider making struct 'ContainerStyleConfiguration' conform to the 'Sendable' protocol
 9 |         /// The configuration values for the `default` container style.
10 |         public let `default`: ContainerConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:56:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
54 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
55 |     private struct ImageSizeConfigurationKey: EnvironmentKey {
56 |         static let defaultValue = ImageSizeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ImageSizeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |     }
58 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/ImageSizeConfiguration.swift:11:19: note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct ImageSizeConfiguration: Equatable {
   |                   `- note: consider making struct 'ImageSizeConfiguration' conform to the 'Sendable' protocol
12 |         /// Small image size value.
13 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:61:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
59 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
60 |     private struct FontTypeConfigurationKey: EnvironmentKey {
61 |         static let defaultValue = FontTypeConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |     }
63 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:11:19: note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:66:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
64 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
65 |     private struct FactSetConfigurationKey: EnvironmentKey {
66 |         static let defaultValue = FactSetConfiguration.default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |     }
68 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:11:19: note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift:71:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
69 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
70 |     private struct SpacingConfigurationKey: EnvironmentKey {
71 |         static let defaultValue: SpacingConfiguration = .default
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SpacingConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |     }
73 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/SpacingConfiguration.swift:12:19: note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
10 |     /// modifier and specify an instance of this type.
11 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
12 |     public struct SpacingConfiguration: Equatable {
   |                   `- note: consider making struct 'SpacingConfiguration' conform to the 'Sendable' protocol
13 |         public let `default`: CGFloat
14 |         public let small: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift:34:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FactSetConfiguration: Equatable {
   |                   `- note: consider making struct 'FactSetConfiguration' conform to the 'Sendable' protocol
12 |         /// Text configuration to use for titles in fact sets.
13 |         public let title: TextBlockConfiguration
   :
32 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
33 |     public extension FactSetConfiguration {
34 |         static let `default` = FactSetConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FactSetConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |             title: TextBlockConfiguration(weight: .bold, maxWidth: 132),
36 |             value: .default,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:77:20: warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 75 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 76 |     private extension FontConfiguration {
 77 |         static let default1 = FontConfiguration(
    |                    |- warning: static property 'default1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |             default: .callout,
 79 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:86:20: warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 84 |
 85 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
 86 |         static let default2 = FontConfiguration(
    |                    |- warning: static property 'default2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'default2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 |             default: .callout,
 88 |             small: .footnote,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:95:20: warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
 93 |
 94 |         @available(watchOS 7.0, *)
 95 |         static let monospace1 = FontConfiguration(
    |                    |- warning: static property 'monospace1' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |             default: .system(.callout, design: .monospaced),
 97 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift:104:20: warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     /// A font configuration specifies a font for each different font size.
  7 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
  8 |     public struct FontConfiguration: Equatable {
    |                   `- note: consider making struct 'FontConfiguration' conform to the 'Sendable' protocol
  9 |         /// Default font.
 10 |         public let `default`: Font
    :
102 |
103 |         @available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
104 |         static let monospace2 = FontConfiguration(
    |                    |- warning: static property 'monospace2' is not concurrency-safe because non-'Sendable' type 'FontConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'monospace2' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |             default: .system(.callout, design: .monospaced),
106 |             small: .system(.footnote, design: .monospaced),
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift:35:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |     /// modifier and specify an instance of this type.
10 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
11 |     public struct FontTypeConfiguration: Equatable {
   |                   `- note: consider making struct 'FontTypeConfiguration' conform to the 'Sendable' protocol
12 |         /// The font configuration for the default font type.
13 |         public let `default`: FontConfiguration
   :
33 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
34 |     public extension FontTypeConfiguration {
35 |         static let `default` = FontTypeConfiguration(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FontTypeConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |             default: .default,
37 |             monospace: .monospace
[162/170] Compiling AdaptiveCardUI CoverImageView.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:53: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
51 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
52 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
53 |         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: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |     }
55 |
[163/170] Compiling AdaptiveCardUI RepeatHorizontallyImageView.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:53: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
51 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
52 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
53 |         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: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |     }
55 |
[164/170] 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:53: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
51 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
52 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
53 |         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: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |     }
55 |
[165/170] 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:53: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
51 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
52 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
53 |         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: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |     }
55 |
[166/170] 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:53: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
51 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
52 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
53 |         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: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |     }
55 |
[167/170] 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:53: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
51 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
52 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
53 |         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: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |     }
55 |
[168/170] 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:53: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
51 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
52 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
53 |         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: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |     }
55 |
[169/170] 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:53: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
51 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
52 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
53 |         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: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |     }
55 |
[170/170] 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:53: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
51 |     @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
52 |     private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
53 |         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: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |     }
55 |
Build complete! (14.24s)
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" : "11.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    }
  ],
  "products" : [
    {
      "name" : "AdaptiveCard",
      "targets" : [
        "AdaptiveCard"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "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",
        "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" : [
        "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",
        "Internal/Exports.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",
        "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"
      ],
      "target_dependencies" : [
        "AdaptiveCard"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AdaptiveCardTests",
      "module_type" : "SwiftTarget",
      "name" : "AdaptiveCardTests",
      "path" : "Tests/AdaptiveCardTests",
      "sources" : [
        "ActionTests.swift",
        "BackgroundImageTests.swift",
        "BlockElementHeightTests.swift",
        "CardElementTests.swift",
        "ColumnSetElementTests.swift",
        "ColumnWidthTests.swift",
        "PixelDimensionTests.swift",
        "SemanticVersionTests.swift",
        "TargetElementTests.swift",
        "TextRunTests.swift"
      ],
      "target_dependencies" : [
        "AdaptiveCard"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AdaptiveCard",
      "module_type" : "SwiftTarget",
      "name" : "AdaptiveCard",
      "path" : "Sources/AdaptiveCard",
      "product_dependencies" : [
        "DefaultCodable",
        "AnyValue"
      ],
      "product_memberships" : [
        "AdaptiveCard",
        "AdaptiveCardUI"
      ],
      "sources" : [
        "Actions/Action.swift",
        "Actions/ActionProtocol.swift",
        "Actions/ActionStyle.swift",
        "Actions/OpenURLAction.swift",
        "Actions/ShowCardAction.swift",
        "Actions/SubmitAction.swift",
        "Actions/TargetElement.swift",
        "Actions/ToggleVisibilityAction.swift",
        "Actions/UnknownAction.swift",
        "AdaptiveCard.swift",
        "Common/BackgroundImage.swift",
        "Common/BlockElementHeight.swift",
        "Common/ContainerStyle.swift",
        "Common/FontSize.swift",
        "Common/FontType.swift",
        "Common/FontWeight.swift",
        "Common/HAlignment.swift",
        "Common/ImageFillMode.swift",
        "Common/ImageSize.swift",
        "Common/ImageStyle.swift",
        "Common/ItemIdentifier.swift",
        "Common/PixelDimension.swift",
        "Common/SemanticVersion.swift",
        "Common/Spacing.swift",
        "Common/TextColor.swift",
        "Common/VAlignment.swift",
        "Containers/ActionSet.swift",
        "Containers/ColumnSet.swift",
        "Containers/Container.swift",
        "Containers/Fact.swift",
        "Containers/FactSet.swift",
        "Containers/ImageSet.swift",
        "Elements/CardElement.swift",
        "Elements/CardElementProtocol.swift",
        "Elements/Column.swift",
        "Elements/ColumnSetElement.swift",
        "Elements/ColumnSetElementProtocol.swift",
        "Elements/ColumnWidth.swift",
        "Elements/CustomCardElement.swift",
        "Elements/Fallback.swift",
        "Elements/Image.swift",
        "Elements/RichTextBlock.swift",
        "Elements/TextBlock.swift",
        "Elements/TextRun.swift",
        "Elements/UnknownCardElement.swift",
        "Elements/UnknownColumnSetElement.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.