Build Information
Successful build of swift-markdown-ui, reference main (a9c761
), with Swift 6.1 for macOS (SPM) on 29 Apr 2025 15:53:03 UTC.
Swift 6 data race errors: 34
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Build Log
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[119/139] Compiling MarkdownUI Color+RGBA.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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[120/139] 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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[121/139] 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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[122/139] 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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[123/139] 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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[124/139] 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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[125/139] 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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[126/139] 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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[127/139] 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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
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 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[128/139] Compiling MarkdownUI NumberedListView.swift
[129/139] Compiling MarkdownUI ParagraphView.swift
[130/139] Compiling MarkdownUI TableBackgroundView.swift
[131/139] Compiling MarkdownUI TableBorderSelector.swift
[132/139] Compiling MarkdownUI TableBorderView.swift
[133/139] Compiling MarkdownUI TableBounds.swift
[134/139] Compiling MarkdownUI TableCell.swift
[135/139] Compiling MarkdownUI TableView.swift
[136/139] Compiling MarkdownUI TaskListItemView.swift
[137/139] Compiling MarkdownUI TaskListView.swift
[138/139] Compiling MarkdownUI TextStyleAttributesReader.swift
[139/139] Compiling MarkdownUI ThematicBreakView.swift
Build complete! (2.74s)
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Tests/MarkdownUITests/Resources/Images.xcassets
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.