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 swift-markdown-ui, reference main (a9c761), with Swift 6.2 (beta) for macOS (SPM) on 22 Jun 2025 07:12:51 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

    |              `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
166 |   public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
169 |   public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
    |              `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
172 |   public var image = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
175 |   public var list = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
178 |   public var listItem = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
181 |   public var taskListMarker = BlockStyle.checkmarkSquare
    |              `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
184 |   public var bulletedListMarker = BlockStyle.discCircleSquare
    |              `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
187 |   public var numberedListMarker = BlockStyle.decimal
    |              `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
190 |   public var table = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
193 |   public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
    |              `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
196 |   public var thematicBreak = BlockStyle { Divider() }
    |              `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 |   /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
[118/175] Compiling MarkdownUI Deprecations.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 |   /// The default text style.
104 |   public var text: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
107 |   public var code: TextStyle = FontFamilyVariant(.monospaced)
    |              `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
110 |   public var emphasis: TextStyle = FontStyle(.italic)
    |              `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
113 |   public var strong: TextStyle = FontWeight(.semibold)
    |              `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
116 |   public var strikethrough: TextStyle = StrikethroughStyle(.single)
    |              `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
119 |   public var link: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 |   var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
119 |   public var link: TextStyle = EmptyTextStyle()
120 |
121 |   var headings = Array(
    |       `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
122 |     repeating: BlockStyle<BlockConfiguration> { $0.label },
123 |     count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 |   /// The paragraph style.
163 |   public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
166 |   public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
169 |   public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
    |              `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
172 |   public var image = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
175 |   public var list = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
178 |   public var listItem = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
181 |   public var taskListMarker = BlockStyle.checkmarkSquare
    |              `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
184 |   public var bulletedListMarker = BlockStyle.discCircleSquare
    |              `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
187 |   public var numberedListMarker = BlockStyle.decimal
    |              `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
190 |   public var table = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
193 |   public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
    |              `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
196 |   public var thematicBreak = BlockStyle { Divider() }
    |              `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 |   /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
[119/175] Compiling MarkdownUI FlowLayout.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 |   /// The default text style.
104 |   public var text: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
107 |   public var code: TextStyle = FontFamilyVariant(.monospaced)
    |              `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
110 |   public var emphasis: TextStyle = FontStyle(.italic)
    |              `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
113 |   public var strong: TextStyle = FontWeight(.semibold)
    |              `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
116 |   public var strikethrough: TextStyle = StrikethroughStyle(.single)
    |              `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
119 |   public var link: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 |   var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
119 |   public var link: TextStyle = EmptyTextStyle()
120 |
121 |   var headings = Array(
    |       `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
122 |     repeating: BlockStyle<BlockConfiguration> { $0.label },
123 |     count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 |   /// The paragraph style.
163 |   public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
166 |   public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
169 |   public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
    |              `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
172 |   public var image = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
175 |   public var list = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
178 |   public var listItem = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
181 |   public var taskListMarker = BlockStyle.checkmarkSquare
    |              `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
184 |   public var bulletedListMarker = BlockStyle.discCircleSquare
    |              `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
187 |   public var numberedListMarker = BlockStyle.decimal
    |              `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
190 |   public var table = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
193 |   public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
    |              `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
196 |   public var thematicBreak = BlockStyle { Divider() }
    |              `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 |   /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
[120/175] Compiling MarkdownUI Indexed.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 |   /// The default text style.
104 |   public var text: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
107 |   public var code: TextStyle = FontFamilyVariant(.monospaced)
    |              `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
110 |   public var emphasis: TextStyle = FontStyle(.italic)
    |              `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
113 |   public var strong: TextStyle = FontWeight(.semibold)
    |              `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
116 |   public var strikethrough: TextStyle = StrikethroughStyle(.single)
    |              `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
119 |   public var link: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 |   var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
119 |   public var link: TextStyle = EmptyTextStyle()
120 |
121 |   var headings = Array(
    |       `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
122 |     repeating: BlockStyle<BlockConfiguration> { $0.label },
123 |     count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 |   /// The paragraph style.
163 |   public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
166 |   public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
169 |   public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
    |              `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
172 |   public var image = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
175 |   public var list = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
178 |   public var listItem = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
181 |   public var taskListMarker = BlockStyle.checkmarkSquare
    |              `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
184 |   public var bulletedListMarker = BlockStyle.discCircleSquare
    |              `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
187 |   public var numberedListMarker = BlockStyle.decimal
    |              `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
190 |   public var table = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
193 |   public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
    |              `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
196 |   public var thematicBreak = BlockStyle { Divider() }
    |              `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 |   /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
[121/175] Compiling MarkdownUI InlineNode+PlainText.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 |   /// The default text style.
104 |   public var text: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
107 |   public var code: TextStyle = FontFamilyVariant(.monospaced)
    |              `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
110 |   public var emphasis: TextStyle = FontStyle(.italic)
    |              `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
113 |   public var strong: TextStyle = FontWeight(.semibold)
    |              `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
116 |   public var strikethrough: TextStyle = StrikethroughStyle(.single)
    |              `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
119 |   public var link: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 |   var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
119 |   public var link: TextStyle = EmptyTextStyle()
120 |
121 |   var headings = Array(
    |       `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
122 |     repeating: BlockStyle<BlockConfiguration> { $0.label },
123 |     count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 |   /// The paragraph style.
163 |   public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
166 |   public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
169 |   public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
    |              `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
172 |   public var image = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
175 |   public var list = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
178 |   public var listItem = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
181 |   public var taskListMarker = BlockStyle.checkmarkSquare
    |              `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
184 |   public var bulletedListMarker = BlockStyle.discCircleSquare
    |              `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
187 |   public var numberedListMarker = BlockStyle.decimal
    |              `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
190 |   public var table = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
193 |   public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
    |              `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
196 |   public var thematicBreak = BlockStyle { Divider() }
    |              `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 |   /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
[122/175] Compiling MarkdownUI InlineNode+RawImageData.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 |   /// The default text style.
104 |   public var text: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
107 |   public var code: TextStyle = FontFamilyVariant(.monospaced)
    |              `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
110 |   public var emphasis: TextStyle = FontStyle(.italic)
    |              `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
113 |   public var strong: TextStyle = FontWeight(.semibold)
    |              `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
116 |   public var strikethrough: TextStyle = StrikethroughStyle(.single)
    |              `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
119 |   public var link: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 |   var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
119 |   public var link: TextStyle = EmptyTextStyle()
120 |
121 |   var headings = Array(
    |       `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
122 |     repeating: BlockStyle<BlockConfiguration> { $0.label },
123 |     count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 |   /// The paragraph style.
163 |   public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
166 |   public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
169 |   public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
    |              `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
172 |   public var image = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
175 |   public var list = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
178 |   public var listItem = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
181 |   public var taskListMarker = BlockStyle.checkmarkSquare
    |              `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
184 |   public var bulletedListMarker = BlockStyle.discCircleSquare
    |              `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
187 |   public var numberedListMarker = BlockStyle.decimal
    |              `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
190 |   public var table = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
193 |   public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
    |              `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
196 |   public var thematicBreak = BlockStyle { Divider() }
    |              `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 |   /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
[123/175] Compiling MarkdownUI Int+Roman.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 |   /// The default text style.
104 |   public var text: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
107 |   public var code: TextStyle = FontFamilyVariant(.monospaced)
    |              `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
110 |   public var emphasis: TextStyle = FontStyle(.italic)
    |              `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
113 |   public var strong: TextStyle = FontWeight(.semibold)
    |              `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
116 |   public var strikethrough: TextStyle = StrikethroughStyle(.single)
    |              `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
119 |   public var link: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 |   var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
119 |   public var link: TextStyle = EmptyTextStyle()
120 |
121 |   var headings = Array(
    |       `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
122 |     repeating: BlockStyle<BlockConfiguration> { $0.label },
123 |     count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 |   /// The paragraph style.
163 |   public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
166 |   public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
169 |   public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
    |              `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
172 |   public var image = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
175 |   public var list = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
178 |   public var listItem = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
181 |   public var taskListMarker = BlockStyle.checkmarkSquare
    |              `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
184 |   public var bulletedListMarker = BlockStyle.discCircleSquare
    |              `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
187 |   public var numberedListMarker = BlockStyle.decimal
    |              `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
190 |   public var table = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
193 |   public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
    |              `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
196 |   public var thematicBreak = BlockStyle { Divider() }
    |              `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 |   /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
[124/175] Compiling MarkdownUI RelativeSize.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 |   /// The default text style.
104 |   public var text: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
107 |   public var code: TextStyle = FontFamilyVariant(.monospaced)
    |              `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
110 |   public var emphasis: TextStyle = FontStyle(.italic)
    |              `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
113 |   public var strong: TextStyle = FontWeight(.semibold)
    |              `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
116 |   public var strikethrough: TextStyle = StrikethroughStyle(.single)
    |              `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
119 |   public var link: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 |   var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
119 |   public var link: TextStyle = EmptyTextStyle()
120 |
121 |   var headings = Array(
    |       `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
122 |     repeating: BlockStyle<BlockConfiguration> { $0.label },
123 |     count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 |   /// The paragraph style.
163 |   public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
166 |   public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
169 |   public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
    |              `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
172 |   public var image = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
175 |   public var list = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
178 |   public var listItem = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
181 |   public var taskListMarker = BlockStyle.checkmarkSquare
    |              `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
184 |   public var bulletedListMarker = BlockStyle.discCircleSquare
    |              `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
187 |   public var numberedListMarker = BlockStyle.decimal
    |              `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
190 |   public var table = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
193 |   public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
    |              `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
196 |   public var thematicBreak = BlockStyle { Divider() }
    |              `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 |   /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
[125/175] Compiling MarkdownUI ResizeToFit.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 |   /// The default text style.
104 |   public var text: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 |   /// The inline code style.
107 |   public var code: TextStyle = FontFamilyVariant(.monospaced)
    |              `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 |   /// The emphasis style.
110 |   public var emphasis: TextStyle = FontStyle(.italic)
    |              `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 |   /// The strong style.
113 |   public var strong: TextStyle = FontWeight(.semibold)
    |              `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 |   /// The strikethrough style.
116 |   public var strikethrough: TextStyle = StrikethroughStyle(.single)
    |              `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 |   /// The link style.
119 |   public var link: TextStyle = EmptyTextStyle()
    |              `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 |   var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// ![](CustomBlockquote)
60 | public protocol TextStyle {
   |                 `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 |   func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
119 |   public var link: TextStyle = EmptyTextStyle()
120 |
121 |   var headings = Array(
    |       `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' has non-sendable type '[BlockStyle<BlockConfiguration>]'; this is an error in the Swift 6 language mode
122 |     repeating: BlockStyle<BlockConfiguration> { $0.label },
123 |     count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 |   /// The paragraph style.
163 |   public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 |   /// The blockquote style.
166 |   public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 |   /// The code block style.
169 |   public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
    |              `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 |   /// The image style.
172 |   public var image = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 |   /// The list style.
175 |   public var list = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 |   /// The list item style.
178 |   public var listItem = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 |   /// The task list marker style.
181 |   public var taskListMarker = BlockStyle.checkmarkSquare
    |              `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 |   /// The bulleted list marker style.
184 |   public var bulletedListMarker = BlockStyle.discCircleSquare
    |              `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 |   /// The numbered list marker style.
187 |   public var numberedListMarker = BlockStyle.decimal
    |              `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 |   /// The table style.
190 |   public var table = BlockStyle<BlockConfiguration> { $0.label }
    |              `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 |   /// The table cell style.
193 |   public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
    |              `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 |   /// The thematic break style.
196 |   public var thematicBreak = BlockStyle { Divider() }
    |              `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 |   /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// ![](CustomBlockquote)
40 | public struct BlockStyle<Configuration> {
   |               `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 |   private let body: (Configuration) -> AnyView
42 |
[126/175] Compiling MarkdownUI Environment+BaseURL.swift
[127/175] Compiling MarkdownUI Environment+CodeSyntaxHighlighter.swift
[128/175] Compiling MarkdownUI Environment+ImageProvider.swift
[129/175] Compiling MarkdownUI Environment+InlineImageProvider.swift
[130/175] Compiling MarkdownUI Environment+List.swift
[131/175] Compiling MarkdownUI Environment+SoftBreakMode.swift
[132/175] Compiling MarkdownUI Environment+Table.swift
[133/175] Compiling MarkdownUI Environment+TextStyle.swift
[134/175] Compiling MarkdownUI Environment+Theme.swift
[135/175] Compiling MarkdownUI ImageView.swift
[136/175] Compiling MarkdownUI InlineText.swift
[137/175] Compiling MarkdownUI Markdown.swift
[138/175] Compiling MarkdownUI LineBreak.swift
[139/175] Compiling MarkdownUI SoftBreak.swift
[140/175] Compiling MarkdownUI Strikethrough.swift
[141/175] Compiling MarkdownUI Strong.swift
[142/175] Compiling MarkdownUI AssetImageProvider.swift
[143/175] Compiling MarkdownUI AssetInlineImageProvider.swift
[144/175] Compiling MarkdownUI CodeSyntaxHighlighter.swift
[145/175] Compiling MarkdownUI DefaultImageProvider.swift
[146/175] Compiling MarkdownUI DefaultInlineImageProvider.swift
[147/175] Compiling MarkdownUI ImageProvider.swift
[148/175] Compiling MarkdownUI InlineImageProvider.swift
[149/175] Compiling MarkdownUI BlockNode+Rewrite.swift
[150/175] Compiling MarkdownUI BlockNode.swift
[151/175] Compiling MarkdownUI String+KebabCase.swift
[152/175] Compiling MarkdownUI BlockMargin.swift
[153/175] Compiling MarkdownUI BlockNode+View.swift
[154/175] Compiling MarkdownUI BlockSequence.swift
[155/175] Compiling MarkdownUI BlockquoteView.swift
[156/175] Compiling MarkdownUI BulletedListView.swift
[157/175] Compiling MarkdownUI CodeBlockView.swift
[158/175] Compiling MarkdownUI ColumnWidthPreference.swift
[159/175] Compiling MarkdownUI HeadingView.swift
[160/175] Compiling MarkdownUI ImageFlow.swift
[161/175] Compiling MarkdownUI ListItemSequence.swift
[162/175] Compiling MarkdownUI ListItemView.swift
[163/175] Compiling MarkdownUI HTMLTag.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:2:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  3 | @_implementationOnly import cmark_gfm_extensions
  4 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
  3 | @_implementationOnly import cmark_gfm_extensions
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  4 |
  5 | extension Array where Element == BlockNode {
[164/175] Compiling MarkdownUI InlineNode+Collect.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:2:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  3 | @_implementationOnly import cmark_gfm_extensions
  4 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
  3 | @_implementationOnly import cmark_gfm_extensions
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  4 |
  5 | extension Array where Element == BlockNode {
[165/175] Compiling MarkdownUI InlineNode+Rewrite.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:2:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  3 | @_implementationOnly import cmark_gfm_extensions
  4 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
  3 | @_implementationOnly import cmark_gfm_extensions
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  4 |
  5 | extension Array where Element == BlockNode {
[166/175] Compiling MarkdownUI InlineNode.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:2:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  3 | @_implementationOnly import cmark_gfm_extensions
  4 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
  3 | @_implementationOnly import cmark_gfm_extensions
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  4 |
  5 | extension Array where Element == BlockNode {
[167/175] Compiling MarkdownUI MarkdownParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:2:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  3 | @_implementationOnly import cmark_gfm_extensions
  4 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
  3 | @_implementationOnly import cmark_gfm_extensions
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  4 |
  5 | extension Array where Element == BlockNode {
[168/175] Compiling MarkdownUI AttributedStringInlineRenderer.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:2:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  3 | @_implementationOnly import cmark_gfm_extensions
  4 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
  3 | @_implementationOnly import cmark_gfm_extensions
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  4 |
  5 | extension Array where Element == BlockNode {
[169/175] Compiling MarkdownUI InlineTextStyles.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:2:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  3 | @_implementationOnly import cmark_gfm_extensions
  4 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
  3 | @_implementationOnly import cmark_gfm_extensions
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  4 |
  5 | extension Array where Element == BlockNode {
[170/175] Compiling MarkdownUI TextInlineRenderer.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:2:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  3 | @_implementationOnly import cmark_gfm_extensions
  4 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
  3 | @_implementationOnly import cmark_gfm_extensions
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  4 |
  5 | extension Array where Element == BlockNode {
[171/175] Compiling MarkdownUI BlockConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:2:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  3 | @_implementationOnly import cmark_gfm_extensions
  4 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
  3 | @_implementationOnly import cmark_gfm_extensions
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  4 |
  5 | extension Array where Element == BlockNode {
[172/175] Compiling MarkdownUI BlockStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:2:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  3 | @_implementationOnly import cmark_gfm_extensions
  4 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
  3 | @_implementationOnly import cmark_gfm_extensions
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  4 |
  5 | extension Array where Element == BlockNode {
[173/175] Compiling MarkdownUI CodeBlockConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:2:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  3 | @_implementationOnly import cmark_gfm_extensions
  4 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
  3 | @_implementationOnly import cmark_gfm_extensions
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  4 |
  5 | extension Array where Element == BlockNode {
[174/175] Compiling MarkdownUI ListBullet.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:2:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  3 | @_implementationOnly import cmark_gfm_extensions
  4 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
  3 | @_implementationOnly import cmark_gfm_extensions
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  4 |
  5 | extension Array where Element == BlockNode {
[175/175] Compiling MarkdownUI ListMarkerConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:2:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  3 | @_implementationOnly import cmark_gfm_extensions
  4 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Parser/MarkdownParser.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  1 | import Foundation
  2 | @_implementationOnly import cmark_gfm
  3 | @_implementationOnly import cmark_gfm_extensions
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'MarkdownUI' may lead to instability during execution
  4 |
  5 | extension Array where Element == BlockNode {
Build complete! (27.35s)
Fetching https://github.com/pointfreeco/swift-snapshot-testing
Fetching https://github.com/gonzalezreal/NetworkImage
Fetching https://github.com/swiftlang/swift-cmark
[1/1040] Fetching networkimage
[521/14838] Fetching networkimage, swift-snapshot-testing
[1185/32951] Fetching networkimage, swift-snapshot-testing, swift-cmark
Fetched https://github.com/gonzalezreal/NetworkImage from cache (2.54s)
Fetched https://github.com/swiftlang/swift-cmark from cache (2.54s)
Fetched https://github.com/pointfreeco/swift-snapshot-testing from cache (2.54s)
Computing version for https://github.com/gonzalezreal/NetworkImage
Computed https://github.com/gonzalezreal/NetworkImage at 6.0.1 (3.00s)
Computing version for https://github.com/swiftlang/swift-cmark
Computed https://github.com/swiftlang/swift-cmark at 0.6.0 (0.50s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing
Computed https://github.com/pointfreeco/swift-snapshot-testing at 1.18.4 (0.40s)
Fetching https://github.com/swiftlang/swift-syntax
Fetching https://github.com/pointfreeco/swift-custom-dump
[1/4581] Fetching swift-custom-dump
[4582/75505] Fetching swift-custom-dump, swift-syntax
Fetched https://github.com/pointfreeco/swift-custom-dump from cache (3.83s)
Fetched https://github.com/swiftlang/swift-syntax from cache (3.83s)
Computing version for https://github.com/pointfreeco/swift-custom-dump
Computed https://github.com/pointfreeco/swift-custom-dump at 1.3.3 (4.26s)
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
[1/5467] Fetching xctest-dynamic-overlay
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (1.19s)
Computing version for https://github.com/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 601.0.1 (1.79s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 1.5.2 (0.40s)
Creating working copy for https://github.com/swiftlang/swift-syntax
Working copy of https://github.com/swiftlang/swift-syntax resolved at 601.0.1
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 1.5.2
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing
Working copy of https://github.com/pointfreeco/swift-snapshot-testing resolved at 1.18.4
Creating working copy for https://github.com/gonzalezreal/NetworkImage
Working copy of https://github.com/gonzalezreal/NetworkImage resolved at 6.0.1
Creating working copy for https://github.com/pointfreeco/swift-custom-dump
Working copy of https://github.com/pointfreeco/swift-custom-dump resolved at 1.3.3
Creating working copy for https://github.com/swiftlang/swift-cmark
Working copy of https://github.com/swiftlang/swift-cmark resolved at 0.6.0
Downloading package prebuilt https://download.swift.org/prebuilts/swift-syntax/601.0.1/swiftlang-6.2.0.9.909-MacroSupport-macos_aarch64.zip
Build complete.
{
  "dependencies" : [
    {
      "identity" : "networkimage",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "6.0.0",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/gonzalezreal/NetworkImage"
    },
    {
      "identity" : "swift-snapshot-testing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.10.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-snapshot-testing"
    },
    {
      "identity" : "swift-cmark",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-cmark"
    }
  ],
  "manifest_display_name" : "swift-markdown-ui",
  "name" : "swift-markdown-ui",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "MarkdownUI",
      "targets" : [
        "MarkdownUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MarkdownUITests",
      "module_type" : "SwiftTarget",
      "name" : "MarkdownUITests",
      "path" : "Tests/MarkdownUITests",
      "product_dependencies" : [
        "SnapshotTesting"
      ],
      "sources" : [
        "FontPropertiesTests.swift",
        "HTMLTagTests.swift",
        "InlineContentBuilderTests.swift",
        "ListContentBuilderTests.swift",
        "MarkdownContentBuilderTests.swift",
        "MarkdownContentTests.swift",
        "MarkdownImageTests.swift",
        "MarkdownListTests.swift",
        "MarkdownTableTests.swift",
        "MarkdownTests.swift",
        "TaskListContentBuilderTests.swift",
        "TextStyleBuilderTests.swift",
        "ThemeDocCTests.swift",
        "ThemeGitHubTests.swift",
        "ThemePreview.swift"
      ],
      "target_dependencies" : [
        "MarkdownUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MarkdownUI",
      "module_type" : "SwiftTarget",
      "name" : "MarkdownUI",
      "path" : "Sources/MarkdownUI",
      "product_dependencies" : [
        "cmark-gfm",
        "cmark-gfm-extensions",
        "NetworkImage"
      ],
      "product_memberships" : [
        "MarkdownUI"
      ],
      "sources" : [
        "DSL/Blocks/Blockquote.swift",
        "DSL/Blocks/BulletedList.swift",
        "DSL/Blocks/CodeBlock.swift",
        "DSL/Blocks/Heading.swift",
        "DSL/Blocks/ListContentBuilder.swift",
        "DSL/Blocks/ListItem.swift",
        "DSL/Blocks/MarkdownContent.swift",
        "DSL/Blocks/MarkdownContentBuilder.swift",
        "DSL/Blocks/NumberedList.swift",
        "DSL/Blocks/Paragraph.swift",
        "DSL/Blocks/TaskList.swift",
        "DSL/Blocks/TaskListContentBuilder.swift",
        "DSL/Blocks/TaskListItem.swift",
        "DSL/Blocks/TextTable.swift",
        "DSL/Blocks/TextTableColumn.swift",
        "DSL/Blocks/TextTableColumnAlignment.swift",
        "DSL/Blocks/TextTableColumnBuilder.swift",
        "DSL/Blocks/TextTableRow.swift",
        "DSL/Blocks/TextTableRowBuilder.swift",
        "DSL/Blocks/ThematicBreak.swift",
        "DSL/Inlines/Code.swift",
        "DSL/Inlines/Emphasis.swift",
        "DSL/Inlines/InlineContent.swift",
        "DSL/Inlines/InlineContentBuilder.swift",
        "DSL/Inlines/InlineImage.swift",
        "DSL/Inlines/InlineLink.swift",
        "DSL/Inlines/LineBreak.swift",
        "DSL/Inlines/SoftBreak.swift",
        "DSL/Inlines/Strikethrough.swift",
        "DSL/Inlines/Strong.swift",
        "Extensibility/AssetImageProvider.swift",
        "Extensibility/AssetInlineImageProvider.swift",
        "Extensibility/CodeSyntaxHighlighter.swift",
        "Extensibility/DefaultImageProvider.swift",
        "Extensibility/DefaultInlineImageProvider.swift",
        "Extensibility/ImageProvider.swift",
        "Extensibility/InlineImageProvider.swift",
        "Parser/BlockNode+Rewrite.swift",
        "Parser/BlockNode.swift",
        "Parser/HTMLTag.swift",
        "Parser/InlineNode+Collect.swift",
        "Parser/InlineNode+Rewrite.swift",
        "Parser/InlineNode.swift",
        "Parser/MarkdownParser.swift",
        "Renderer/AttributedStringInlineRenderer.swift",
        "Renderer/InlineTextStyles.swift",
        "Renderer/TextInlineRenderer.swift",
        "Theme/BlockStyle/BlockConfiguration.swift",
        "Theme/BlockStyle/BlockStyle.swift",
        "Theme/BlockStyle/CodeBlockConfiguration.swift",
        "Theme/BlockStyle/ListBullet.swift",
        "Theme/BlockStyle/ListMarkerConfiguration.swift",
        "Theme/BlockStyle/TableBackgroundStyle.swift",
        "Theme/BlockStyle/TableBorderStyle.swift",
        "Theme/BlockStyle/TableCellConfiguration.swift",
        "Theme/BlockStyle/TaskListMarkerConfiguration.swift",
        "Theme/TextStyle/Styles/BackgroundColor.swift",
        "Theme/TextStyle/Styles/EmptyTextStyle.swift",
        "Theme/TextStyle/Styles/Font+FontProperties.swift",
        "Theme/TextStyle/Styles/FontCapsVariant.swift",
        "Theme/TextStyle/Styles/FontDigitVariant.swift",
        "Theme/TextStyle/Styles/FontFamily.swift",
        "Theme/TextStyle/Styles/FontFamilyVariant.swift",
        "Theme/TextStyle/Styles/FontProperties.swift",
        "Theme/TextStyle/Styles/FontPropertiesAttribute.swift",
        "Theme/TextStyle/Styles/FontSize.swift",
        "Theme/TextStyle/Styles/FontStyle.swift",
        "Theme/TextStyle/Styles/FontWeight.swift",
        "Theme/TextStyle/Styles/FontWidth.swift",
        "Theme/TextStyle/Styles/ForegroundColor.swift",
        "Theme/TextStyle/Styles/StrikethroughStyle.swift",
        "Theme/TextStyle/Styles/TextKerning.swift",
        "Theme/TextStyle/Styles/TextTracking.swift",
        "Theme/TextStyle/Styles/UnderlineStyle.swift",
        "Theme/TextStyle/TextStyle.swift",
        "Theme/TextStyle/TextStyleBuilder.swift",
        "Theme/Theme+Basic.swift",
        "Theme/Theme+DocC.swift",
        "Theme/Theme+GitHub.swift",
        "Theme/Theme.swift",
        "Utility/BlockNode+ColorSchemeImage.swift",
        "Utility/Color+RGBA.swift",
        "Utility/Deprecations.swift",
        "Utility/FlowLayout.swift",
        "Utility/Indexed.swift",
        "Utility/InlineNode+PlainText.swift",
        "Utility/InlineNode+RawImageData.swift",
        "Utility/Int+Roman.swift",
        "Utility/RelativeSize.swift",
        "Utility/ResizeToFit.swift",
        "Utility/String+KebabCase.swift",
        "Views/Blocks/BlockMargin.swift",
        "Views/Blocks/BlockNode+View.swift",
        "Views/Blocks/BlockSequence.swift",
        "Views/Blocks/BlockquoteView.swift",
        "Views/Blocks/BulletedListView.swift",
        "Views/Blocks/CodeBlockView.swift",
        "Views/Blocks/ColumnWidthPreference.swift",
        "Views/Blocks/HeadingView.swift",
        "Views/Blocks/ImageFlow.swift",
        "Views/Blocks/ListItemSequence.swift",
        "Views/Blocks/ListItemView.swift",
        "Views/Blocks/NumberedListView.swift",
        "Views/Blocks/ParagraphView.swift",
        "Views/Blocks/TableBackgroundView.swift",
        "Views/Blocks/TableBorderSelector.swift",
        "Views/Blocks/TableBorderView.swift",
        "Views/Blocks/TableBounds.swift",
        "Views/Blocks/TableCell.swift",
        "Views/Blocks/TableView.swift",
        "Views/Blocks/TaskListItemView.swift",
        "Views/Blocks/TaskListView.swift",
        "Views/Blocks/TextStyleAttributesReader.swift",
        "Views/Blocks/ThematicBreakView.swift",
        "Views/Environment/Environment+BaseURL.swift",
        "Views/Environment/Environment+CodeSyntaxHighlighter.swift",
        "Views/Environment/Environment+ImageProvider.swift",
        "Views/Environment/Environment+InlineImageProvider.swift",
        "Views/Environment/Environment+List.swift",
        "Views/Environment/Environment+SoftBreakMode.swift",
        "Views/Environment/Environment+Table.swift",
        "Views/Environment/Environment+TextStyle.swift",
        "Views/Environment/Environment+Theme.swift",
        "Views/Inlines/ImageView.swift",
        "Views/Inlines/InlineText.swift",
        "Views/Markdown.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.