The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of MarkdownKit, reference master (d9bc97), with Swift 6.0 for Linux on 5 Nov 2024 15:47:37 UTC.

Swift 6 data race errors: 9

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/objecthub/swift-markdownkit.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/objecthub/swift-markdownkit
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at d9bc97f Support converting Markdown into a string without any markup.
Cloned https://github.com/objecthub/swift-markdownkit.git
Revision (git rev-parse @):
d9bc97f7ad32cfdda621eaaa0eb88082eb75fbd8
SUCCESS checkout https://github.com/objecthub/swift-markdownkit.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/objecthub/swift-markdownkit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/7] Write sources
[2/7] Write swift-version-24593BA9C3E375BF.txt
[4/39] Emitting module MarkdownKit
/host/spi-builder-workspace/Sources/MarkdownKit/HTML/HtmlGenerator.swift:31:21: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'HtmlGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 26 | /// individual Markdown structures are converted into HTML.
 27 | ///
 28 | open class HtmlGenerator {
    |            `- note: class 'HtmlGenerator' does not conform to the 'Sendable' protocol
 29 |
 30 |   /// Default `HtmlGenerator` implementation
 31 |   public static let standard = HtmlGenerator()
    |                     |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'HtmlGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |   public init() {}
/host/spi-builder-workspace/Sources/MarkdownKit/Parser/ExtendedMarkdownParser.swift:66:22: warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'ExtendedMarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
42 | /// gets replaced with a structured representation.
43 | ///
44 | open class ExtendedMarkdownParser: MarkdownParser {
   |            `- note: class 'ExtendedMarkdownParser' does not conform to the 'Sendable' protocol
45 |
46 |   /// The default list of block parsers. The order of this list matters.
   :
64 |   }
65 |
66 |   private static let singleton: ExtendedMarkdownParser = ExtendedMarkdownParser()
   |                      |- warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'ExtendedMarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
   |                      |- note: annotate 'singleton' with '@MainActor' if property should only be accessed from the main actor
   |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |
68 |   /// Factory method to customize document parsing in subclasses.
/host/spi-builder-workspace/Sources/MarkdownKit/Parser/MarkdownParser.swift:82:22: warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'MarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | /// replaced with a structured representation.
 41 | ///
 42 | open class MarkdownParser {
    |            `- note: class 'MarkdownParser' does not conform to the 'Sendable' protocol
 43 |
 44 |   /// The default list of block parsers. The order of this list matters.
    :
 80 |   }
 81 |
 82 |   private static let singleton: MarkdownParser = MarkdownParser()
    |                      |- warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'MarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'singleton' with '@MainActor' if property should only be accessed from the main actor
    |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |   /// A custom list of block parsers; if this is provided via the constructor, it overrides
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:230:21: warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
228 |   }
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
    |                     |- warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:231:21: warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
    |                     |- warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:232:21: warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
    |                     |- warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:233:21: warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
    |                     |- warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:234:21: warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
    |                     |- warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'escaped' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
236 |
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:235:21: warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
    |                     |- warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'image' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |
237 |   public var description: String {
[5/39] Compiling MarkdownKit AttributedStringGenerator.swift
[6/39] Compiling MarkdownKit Color.swift
[7/39] Compiling MarkdownKit Block.swift
[8/39] Compiling MarkdownKit Blocks.swift
[9/39] Compiling MarkdownKit CustomBlock.swift
[10/43] Compiling MarkdownKit ExtendedDocumentParser.swift
/host/spi-builder-workspace/Sources/MarkdownKit/Parser/ExtendedMarkdownParser.swift:66:22: warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'ExtendedMarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
42 | /// gets replaced with a structured representation.
43 | ///
44 | open class ExtendedMarkdownParser: MarkdownParser {
   |            `- note: class 'ExtendedMarkdownParser' does not conform to the 'Sendable' protocol
45 |
46 |   /// The default list of block parsers. The order of this list matters.
   :
64 |   }
65 |
66 |   private static let singleton: ExtendedMarkdownParser = ExtendedMarkdownParser()
   |                      |- warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'ExtendedMarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
   |                      |- note: annotate 'singleton' with '@MainActor' if property should only be accessed from the main actor
   |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |
68 |   /// Factory method to customize document parsing in subclasses.
[11/43] Compiling MarkdownKit ExtendedListItemParser.swift
/host/spi-builder-workspace/Sources/MarkdownKit/Parser/ExtendedMarkdownParser.swift:66:22: warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'ExtendedMarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
42 | /// gets replaced with a structured representation.
43 | ///
44 | open class ExtendedMarkdownParser: MarkdownParser {
   |            `- note: class 'ExtendedMarkdownParser' does not conform to the 'Sendable' protocol
45 |
46 |   /// The default list of block parsers. The order of this list matters.
   :
64 |   }
65 |
66 |   private static let singleton: ExtendedMarkdownParser = ExtendedMarkdownParser()
   |                      |- warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'ExtendedMarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
   |                      |- note: annotate 'singleton' with '@MainActor' if property should only be accessed from the main actor
   |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |
68 |   /// Factory method to customize document parsing in subclasses.
[12/43] Compiling MarkdownKit ExtendedMarkdownParser.swift
/host/spi-builder-workspace/Sources/MarkdownKit/Parser/ExtendedMarkdownParser.swift:66:22: warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'ExtendedMarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
42 | /// gets replaced with a structured representation.
43 | ///
44 | open class ExtendedMarkdownParser: MarkdownParser {
   |            `- note: class 'ExtendedMarkdownParser' does not conform to the 'Sendable' protocol
45 |
46 |   /// The default list of block parsers. The order of this list matters.
   :
64 |   }
65 |
66 |   private static let singleton: ExtendedMarkdownParser = ExtendedMarkdownParser()
   |                      |- warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'ExtendedMarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
   |                      |- note: annotate 'singleton' with '@MainActor' if property should only be accessed from the main actor
   |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |
68 |   /// Factory method to customize document parsing in subclasses.
[13/43] Compiling MarkdownKit HtmlBlockParser.swift
/host/spi-builder-workspace/Sources/MarkdownKit/Parser/ExtendedMarkdownParser.swift:66:22: warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'ExtendedMarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
42 | /// gets replaced with a structured representation.
43 | ///
44 | open class ExtendedMarkdownParser: MarkdownParser {
   |            `- note: class 'ExtendedMarkdownParser' does not conform to the 'Sendable' protocol
45 |
46 |   /// The default list of block parsers. The order of this list matters.
   :
64 |   }
65 |
66 |   private static let singleton: ExtendedMarkdownParser = ExtendedMarkdownParser()
   |                      |- warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'ExtendedMarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
   |                      |- note: annotate 'singleton' with '@MainActor' if property should only be accessed from the main actor
   |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |
68 |   /// Factory method to customize document parsing in subclasses.
[14/43] Compiling MarkdownKit InlineParser.swift
[15/43] Compiling MarkdownKit InlineTransformer.swift
[16/43] Compiling MarkdownKit LinkRefDefinitionParser.swift
[17/43] Compiling MarkdownKit LinkTransformer.swift
[18/43] Compiling MarkdownKit DelimiterTransformer.swift
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:234:21: warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
    |                     |- warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'escaped' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
236 |
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:235:21: warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
    |                     |- warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'image' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |
237 |   public var description: String {
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:230:21: warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
228 |   }
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
    |                     |- warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:232:21: warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
    |                     |- warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:233:21: warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
    |                     |- warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:231:21: warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
    |                     |- warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
[19/43] Compiling MarkdownKit DocumentParser.swift
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:234:21: warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
    |                     |- warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'escaped' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
236 |
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:235:21: warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
    |                     |- warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'image' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |
237 |   public var description: String {
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:230:21: warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
228 |   }
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
    |                     |- warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:232:21: warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
    |                     |- warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:233:21: warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
    |                     |- warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:231:21: warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
    |                     |- warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
[20/43] Compiling MarkdownKit EmphasisTransformer.swift
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:234:21: warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
    |                     |- warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'escaped' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
236 |
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:235:21: warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
    |                     |- warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'image' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |
237 |   public var description: String {
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:230:21: warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
228 |   }
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
    |                     |- warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:232:21: warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
    |                     |- warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:233:21: warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
    |                     |- warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:231:21: warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
    |                     |- warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
[21/43] Compiling MarkdownKit EscapeTransformer.swift
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:234:21: warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
    |                     |- warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'escaped' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
236 |
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:235:21: warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
    |                     |- warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'image' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |
237 |   public var description: String {
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:230:21: warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
228 |   }
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
    |                     |- warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:232:21: warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
    |                     |- warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:233:21: warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
    |                     |- warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:231:21: warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
    |                     |- warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
[22/43] Compiling MarkdownKit BlockParser.swift
[23/43] Compiling MarkdownKit BlockquoteParser.swift
[24/43] Compiling MarkdownKit CodeBlockParser.swift
[25/43] Compiling MarkdownKit CodeLinkHtmlTransformer.swift
[26/43] Compiling MarkdownKit Container.swift
[27/43] Compiling MarkdownKit CustomTextFragment.swift
/host/spi-builder-workspace/Sources/MarkdownKit/HTML/HtmlGenerator.swift:31:21: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'HtmlGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 26 | /// individual Markdown structures are converted into HTML.
 27 | ///
 28 | open class HtmlGenerator {
    |            `- note: class 'HtmlGenerator' does not conform to the 'Sendable' protocol
 29 |
 30 |   /// Default `HtmlGenerator` implementation
 31 |   public static let standard = HtmlGenerator()
    |                     |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'HtmlGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |   public init() {}
[28/43] Compiling MarkdownKit HtmlGenerator.swift
/host/spi-builder-workspace/Sources/MarkdownKit/HTML/HtmlGenerator.swift:31:21: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'HtmlGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 26 | /// individual Markdown structures are converted into HTML.
 27 | ///
 28 | open class HtmlGenerator {
    |            `- note: class 'HtmlGenerator' does not conform to the 'Sendable' protocol
 29 |
 30 |   /// Default `HtmlGenerator` implementation
 31 |   public static let standard = HtmlGenerator()
    |                     |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'HtmlGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |   public init() {}
[29/43] Compiling MarkdownKit NamedCharacters.swift
/host/spi-builder-workspace/Sources/MarkdownKit/HTML/HtmlGenerator.swift:31:21: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'HtmlGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 26 | /// individual Markdown structures are converted into HTML.
 27 | ///
 28 | open class HtmlGenerator {
    |            `- note: class 'HtmlGenerator' does not conform to the 'Sendable' protocol
 29 |
 30 |   /// Default `HtmlGenerator` implementation
 31 |   public static let standard = HtmlGenerator()
    |                     |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'HtmlGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |   public init() {}
[30/43] Compiling MarkdownKit String+Entities.swift
/host/spi-builder-workspace/Sources/MarkdownKit/HTML/HtmlGenerator.swift:31:21: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'HtmlGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 26 | /// individual Markdown structures are converted into HTML.
 27 | ///
 28 | open class HtmlGenerator {
    |            `- note: class 'HtmlGenerator' does not conform to the 'Sendable' protocol
 29 |
 30 |   /// Default `HtmlGenerator` implementation
 31 |   public static let standard = HtmlGenerator()
    |                     |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'HtmlGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |   public init() {}
[31/43] Compiling MarkdownKit AtxHeadingParser.swift
/host/spi-builder-workspace/Sources/MarkdownKit/HTML/HtmlGenerator.swift:31:21: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'HtmlGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 26 | /// individual Markdown structures are converted into HTML.
 27 | ///
 28 | open class HtmlGenerator {
    |            `- note: class 'HtmlGenerator' does not conform to the 'Sendable' protocol
 29 |
 30 |   /// Default `HtmlGenerator` implementation
 31 |   public static let standard = HtmlGenerator()
    |                     |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'HtmlGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |   public init() {}
[32/43] Compiling MarkdownKit ListItemParser.swift
/host/spi-builder-workspace/Sources/MarkdownKit/Parser/MarkdownParser.swift:82:22: warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'MarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | /// replaced with a structured representation.
 41 | ///
 42 | open class MarkdownParser {
    |            `- note: class 'MarkdownParser' does not conform to the 'Sendable' protocol
 43 |
 44 |   /// The default list of block parsers. The order of this list matters.
    :
 80 |   }
 81 |
 82 |   private static let singleton: MarkdownParser = MarkdownParser()
    |                      |- warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'MarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'singleton' with '@MainActor' if property should only be accessed from the main actor
    |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |   /// A custom list of block parsers; if this is provided via the constructor, it overrides
[33/43] Compiling MarkdownKit MarkdownParser.swift
/host/spi-builder-workspace/Sources/MarkdownKit/Parser/MarkdownParser.swift:82:22: warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'MarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | /// replaced with a structured representation.
 41 | ///
 42 | open class MarkdownParser {
    |            `- note: class 'MarkdownParser' does not conform to the 'Sendable' protocol
 43 |
 44 |   /// The default list of block parsers. The order of this list matters.
    :
 80 |   }
 81 |
 82 |   private static let singleton: MarkdownParser = MarkdownParser()
    |                      |- warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'MarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'singleton' with '@MainActor' if property should only be accessed from the main actor
    |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |   /// A custom list of block parsers; if this is provided via the constructor, it overrides
[34/43] Compiling MarkdownKit ParserUtil.swift
/host/spi-builder-workspace/Sources/MarkdownKit/Parser/MarkdownParser.swift:82:22: warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'MarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | /// replaced with a structured representation.
 41 | ///
 42 | open class MarkdownParser {
    |            `- note: class 'MarkdownParser' does not conform to the 'Sendable' protocol
 43 |
 44 |   /// The default list of block parsers. The order of this list matters.
    :
 80 |   }
 81 |
 82 |   private static let singleton: MarkdownParser = MarkdownParser()
    |                      |- warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'MarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'singleton' with '@MainActor' if property should only be accessed from the main actor
    |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |   /// A custom list of block parsers; if this is provided via the constructor, it overrides
[35/43] Compiling MarkdownKit SetextHeadingParser.swift
/host/spi-builder-workspace/Sources/MarkdownKit/Parser/MarkdownParser.swift:82:22: warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'MarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | /// replaced with a structured representation.
 41 | ///
 42 | open class MarkdownParser {
    |            `- note: class 'MarkdownParser' does not conform to the 'Sendable' protocol
 43 |
 44 |   /// The default list of block parsers. The order of this list matters.
    :
 80 |   }
 81 |
 82 |   private static let singleton: MarkdownParser = MarkdownParser()
    |                      |- warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'MarkdownParser' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'singleton' with '@MainActor' if property should only be accessed from the main actor
    |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |   /// A custom list of block parsers; if this is provided via the constructor, it overrides
[36/43] Compiling MarkdownKit TableParser.swift
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:230:21: warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
228 |   }
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
    |                     |- warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:231:21: warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
    |                     |- warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:232:21: warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
    |                     |- warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:233:21: warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
    |                     |- warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:234:21: warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
    |                     |- warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'escaped' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
236 |
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:235:21: warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
    |                     |- warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'image' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |
237 |   public var description: String {
[37/43] Compiling MarkdownKit ThematicBreakParser.swift
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:230:21: warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
228 |   }
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
    |                     |- warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:231:21: warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
    |                     |- warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:232:21: warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
    |                     |- warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:233:21: warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
    |                     |- warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:234:21: warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
    |                     |- warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'escaped' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
236 |
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:235:21: warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
    |                     |- warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'image' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |
237 |   public var description: String {
[38/43] Compiling MarkdownKit Text.swift
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:230:21: warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
228 |   }
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
    |                     |- warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:231:21: warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
    |                     |- warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:232:21: warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
    |                     |- warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:233:21: warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
    |                     |- warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:234:21: warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
    |                     |- warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'escaped' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
236 |
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:235:21: warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
    |                     |- warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'image' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |
237 |   public var description: String {
[39/43] Compiling MarkdownKit TextFragment.swift
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:230:21: warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
228 |   }
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
    |                     |- warning: static property 'leftFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:231:21: warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
229 |
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
    |                     |- warning: static property 'rightFlanking' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightFlanking' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:232:21: warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
230 |   public static let leftFlanking = DelimiterRunType(rawValue: 1 << 0)
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
    |                     |- warning: static property 'leftPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'leftPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:233:21: warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
231 |   public static let rightFlanking = DelimiterRunType(rawValue: 1 << 1)
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
    |                     |- warning: static property 'rightPunctuation' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rightPunctuation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:234:21: warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
232 |   public static let leftPunctuation = DelimiterRunType(rawValue: 1 << 2)
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
    |                     |- warning: static property 'escaped' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'escaped' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
236 |
/host/spi-builder-workspace/Sources/MarkdownKit/TextFragment.swift:235:21: warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
221 | /// Each delimiter run is classified into a set of types which are represented via the
222 | /// `DelimiterRunType` struct.
223 | public struct DelimiterRunType: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'DelimiterRunType' conform to the 'Sendable' protocol
224 |   public let rawValue: UInt8
225 |
    :
233 |   public static let rightPunctuation = DelimiterRunType(rawValue: 1 << 3)
234 |   public static let escaped = DelimiterRunType(rawValue: 1 << 4)
235 |   public static let image = DelimiterRunType(rawValue: 1 << 5)
    |                     |- warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'DelimiterRunType' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'image' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |
237 |   public var description: String {
[40/44] Wrapping AST for MarkdownKit for debugging
[42/46] Compiling MarkdownKitProcess main.swift
[43/46] Emitting module MarkdownKitProcess
[44/47] Wrapping AST for MarkdownKitProcess for debugging
[45/47] Write Objects.LinkFileList
[46/47] Linking MarkdownKitProcess
Build complete! (11.66s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "MarkdownKit",
  "name" : "MarkdownKit",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "MarkdownKit",
      "targets" : [
        "MarkdownKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "MarkdownKitProcess",
      "targets" : [
        "MarkdownKitProcess"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "MarkdownKitTests",
      "module_type" : "SwiftTarget",
      "name" : "MarkdownKitTests",
      "path" : "Tests/MarkdownKitTests",
      "sources" : [
        "ExtendedMarkdownBlockTests.swift",
        "ExtendedMarkdownHtmlTests.swift",
        "MarkdownASTests.swift",
        "MarkdownBlockTests.swift",
        "MarkdownExtension.swift",
        "MarkdownFactory.swift",
        "MarkdownHtmlTests.swift",
        "MarkdownInlineTests.swift",
        "MarkdownStringTests.swift"
      ],
      "target_dependencies" : [
        "MarkdownKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MarkdownKitProcess",
      "module_type" : "SwiftTarget",
      "name" : "MarkdownKitProcess",
      "path" : "Sources/MarkdownKitProcess",
      "product_memberships" : [
        "MarkdownKitProcess"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "MarkdownKit"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "MarkdownKit",
      "module_type" : "SwiftTarget",
      "name" : "MarkdownKit",
      "path" : "Sources/MarkdownKit",
      "product_memberships" : [
        "MarkdownKit",
        "MarkdownKitProcess"
      ],
      "sources" : [
        "AttributedString/AttributedStringGenerator.swift",
        "AttributedString/Color.swift",
        "Block.swift",
        "Blocks.swift",
        "CustomBlock.swift",
        "CustomTextFragment.swift",
        "HTML/HtmlGenerator.swift",
        "HTML/NamedCharacters.swift",
        "HTML/String+Entities.swift",
        "Parser/AtxHeadingParser.swift",
        "Parser/BlockParser.swift",
        "Parser/BlockquoteParser.swift",
        "Parser/CodeBlockParser.swift",
        "Parser/CodeLinkHtmlTransformer.swift",
        "Parser/Container.swift",
        "Parser/DelimiterTransformer.swift",
        "Parser/DocumentParser.swift",
        "Parser/EmphasisTransformer.swift",
        "Parser/EscapeTransformer.swift",
        "Parser/ExtendedDocumentParser.swift",
        "Parser/ExtendedListItemParser.swift",
        "Parser/ExtendedMarkdownParser.swift",
        "Parser/HtmlBlockParser.swift",
        "Parser/InlineParser.swift",
        "Parser/InlineTransformer.swift",
        "Parser/LinkRefDefinitionParser.swift",
        "Parser/LinkTransformer.swift",
        "Parser/ListItemParser.swift",
        "Parser/MarkdownParser.swift",
        "Parser/ParserUtil.swift",
        "Parser/SetextHeadingParser.swift",
        "Parser/TableParser.swift",
        "Parser/ThematicBreakParser.swift",
        "Text.swift",
        "TextFragment.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.4"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.