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 swift-markdown, reference 0.6.0 (ea79e8), with Swift 6.0 for Linux on 1 Apr 2025 17:43:36 UTC.

Swift 6 data race errors: 36

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 -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 37 |
 38 |         /// A "warning" aside.
 39 |         public static let warning = Kind(rawValue: "Warning")!
    |                           |- warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'warning' 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
 40 |
 41 |         /// An "attention" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:42:27: warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 40 |
 41 |         /// An "attention" aside.
 42 |         public static let attention = Kind(rawValue: "Attention")!
    |                           |- warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'attention' 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
 43 |
 44 |         /// An "author" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:45:27: warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 43 |
 44 |         /// An "author" aside.
 45 |         public static let author = Kind(rawValue: "Author")!
    |                           |- warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'author' 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
 46 |
 47 |         /// An "authors" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:48:27: warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 46 |
 47 |         /// An "authors" aside.
 48 |         public static let authors = Kind(rawValue: "Authors")!
    |                           |- warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'authors' 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
 49 |
 50 |         /// A "bug" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:51:27: warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 49 |
 50 |         /// A "bug" aside.
 51 |         public static let bug = Kind(rawValue: "Bug")!
    |                           |- warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'bug' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |         /// A "complexity" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:54:27: warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 52 |
 53 |         /// A "complexity" aside.
 54 |         public static let complexity = Kind(rawValue: "Complexity")!
    |                           |- warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'complexity' 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
 55 |
 56 |         /// A "copyright" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:57:27: warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 55 |
 56 |         /// A "copyright" aside.
 57 |         public static let copyright = Kind(rawValue: "Copyright")!
    |                           |- warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'copyright' 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
 58 |
 59 |         /// A "date" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:60:27: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 58 |
 59 |         /// A "date" aside.
 60 |         public static let date = Kind(rawValue: "Date")!
    |                           |- warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'date' 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
 61 |
 62 |         /// An "invariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:63:27: warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 61 |
 62 |         /// An "invariant" aside.
 63 |         public static let invariant = Kind(rawValue: "Invariant")!
    |                           |- warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'invariant' 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
 64 |
 65 |         /// A "mutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:66:27: warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 64 |
 65 |         /// A "mutatingVariant" aside.
 66 |         public static let mutatingVariant = Kind(rawValue: "MutatingVariant")!
    |                           |- warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'mutatingVariant' 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 |         /// A "nonMutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:69:27: warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 67 |
 68 |         /// A "nonMutatingVariant" aside.
 69 |         public static let nonMutatingVariant = Kind(rawValue: "NonMutatingVariant")!
    |                           |- warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'nonMutatingVariant' 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
 70 |
 71 |         /// A "postcondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:72:27: warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 70 |
 71 |         /// A "postcondition" aside.
 72 |         public static let postcondition = Kind(rawValue: "Postcondition")!
    |                           |- warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'postcondition' 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
 73 |
 74 |         /// A "precondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:75:27: warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 73 |
 74 |         /// A "precondition" aside.
 75 |         public static let precondition = Kind(rawValue: "Precondition")!
    |                           |- warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'precondition' 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
 76 |
 77 |         /// A "remark" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:78:27: warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 76 |
 77 |         /// A "remark" aside.
 78 |         public static let remark = Kind(rawValue: "Remark")!
    |                           |- warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'remark' 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
 79 |
 80 |         /// A "requires" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:81:27: warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 79 |
 80 |         /// A "requires" aside.
 81 |         public static let requires = Kind(rawValue: "Requires")!
    |                           |- warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'requires' 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
 82 |
 83 |         /// A "since" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:84:27: warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 82 |
 83 |         /// A "since" aside.
 84 |         public static let since = Kind(rawValue: "Since")!
    |                           |- warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'since' 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
 85 |
 86 |         /// A "todo" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:87:27: warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 85 |
 86 |         /// A "todo" aside.
 87 |         public static let todo = Kind(rawValue: "ToDo")!
    |                           |- warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'todo' 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
 88 |
 89 |         /// A "version" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:90:27: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 88 |
 89 |         /// A "version" aside.
 90 |         public static let version = Kind(rawValue: "Version")!
    |                           |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'version' 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
 91 |
 92 |         /// A "throws" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:93:27: warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 91 |
 92 |         /// A "throws" aside.
 93 |         public static let `throws` = Kind(rawValue: "Throws")!
    |                           |- warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'throws' 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
 94 |
 95 |         /// A "seeAlso" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:96:27: warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 94 |
 95 |         /// A "seeAlso" aside.
 96 |         public static let seeAlso = Kind(rawValue: "SeeAlso")!
    |                           |- warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'seeAlso' 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
 97 |
 98 |         /// A collection of preconfigured aside kinds.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:29:23: warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
27 |
28 |     /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
29 |     public static let parseMinimalDoxygen = ParseOptions(rawValue: 1 << 3)
   |                       |- warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseMinimalDoxygen' 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
30 |
31 |     /// Disable including a `data-sourcepos` attribute on all block elements during parsing.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:23:23: warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
21 |
22 |     /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
23 |     public static let parseSymbolLinks = ParseOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseSymbolLinks' 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
24 |
25 |     /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
24 |
25 |     /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing.
26 |     public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
   |                       |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disableSmartOpts' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:32:23: warning: static property 'disableSourcePosOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
30 |
31 |     /// Disable including a `data-sourcepos` attribute on all block elements during parsing.
32 |     public static let disableSourcePosOpts = ParseOptions(rawValue: 1 << 4)
   |                       |- warning: static property 'disableSourcePosOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disableSourcePosOpts' 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
33 | }
34 |
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:20:23: warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
18 |
19 |     /// Enable block directive syntax.
20 |     public static let parseBlockDirectives = ParseOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseBlockDirectives' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
[123/178] Compiling Markdown ParseOptions.swift
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:27:27: warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    |                           |- warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'note' 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
 28 |
 29 |         /// A "tip" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:30:27: warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
 28 |
 29 |         /// A "tip" aside.
 30 |         public static let tip = Kind(rawValue: "Tip")!
    |                           |- warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'tip' 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
 31 |
 32 |         /// An "important" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:33:27: warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 31 |
 32 |         /// An "important" aside.
 33 |         public static let important = Kind(rawValue: "Important")!
    |                           |- warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'important' 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
 34 |
 35 |         /// An "experiment" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:36:27: warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 34 |
 35 |         /// An "experiment" aside.
 36 |         public static let experiment = Kind(rawValue: "Experiment")!
    |                           |- warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'experiment' 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
 37 |
 38 |         /// A "warning" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:39:27: warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 37 |
 38 |         /// A "warning" aside.
 39 |         public static let warning = Kind(rawValue: "Warning")!
    |                           |- warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'warning' 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
 40 |
 41 |         /// An "attention" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:42:27: warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 40 |
 41 |         /// An "attention" aside.
 42 |         public static let attention = Kind(rawValue: "Attention")!
    |                           |- warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'attention' 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
 43 |
 44 |         /// An "author" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:45:27: warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 43 |
 44 |         /// An "author" aside.
 45 |         public static let author = Kind(rawValue: "Author")!
    |                           |- warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'author' 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
 46 |
 47 |         /// An "authors" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:48:27: warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 46 |
 47 |         /// An "authors" aside.
 48 |         public static let authors = Kind(rawValue: "Authors")!
    |                           |- warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'authors' 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
 49 |
 50 |         /// A "bug" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:51:27: warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 49 |
 50 |         /// A "bug" aside.
 51 |         public static let bug = Kind(rawValue: "Bug")!
    |                           |- warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'bug' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |         /// A "complexity" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:54:27: warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 52 |
 53 |         /// A "complexity" aside.
 54 |         public static let complexity = Kind(rawValue: "Complexity")!
    |                           |- warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'complexity' 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
 55 |
 56 |         /// A "copyright" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:57:27: warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 55 |
 56 |         /// A "copyright" aside.
 57 |         public static let copyright = Kind(rawValue: "Copyright")!
    |                           |- warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'copyright' 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
 58 |
 59 |         /// A "date" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:60:27: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 58 |
 59 |         /// A "date" aside.
 60 |         public static let date = Kind(rawValue: "Date")!
    |                           |- warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'date' 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
 61 |
 62 |         /// An "invariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:63:27: warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 61 |
 62 |         /// An "invariant" aside.
 63 |         public static let invariant = Kind(rawValue: "Invariant")!
    |                           |- warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'invariant' 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
 64 |
 65 |         /// A "mutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:66:27: warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 64 |
 65 |         /// A "mutatingVariant" aside.
 66 |         public static let mutatingVariant = Kind(rawValue: "MutatingVariant")!
    |                           |- warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'mutatingVariant' 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 |         /// A "nonMutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:69:27: warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 67 |
 68 |         /// A "nonMutatingVariant" aside.
 69 |         public static let nonMutatingVariant = Kind(rawValue: "NonMutatingVariant")!
    |                           |- warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'nonMutatingVariant' 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
 70 |
 71 |         /// A "postcondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:72:27: warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 70 |
 71 |         /// A "postcondition" aside.
 72 |         public static let postcondition = Kind(rawValue: "Postcondition")!
    |                           |- warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'postcondition' 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
 73 |
 74 |         /// A "precondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:75:27: warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 73 |
 74 |         /// A "precondition" aside.
 75 |         public static let precondition = Kind(rawValue: "Precondition")!
    |                           |- warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'precondition' 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
 76 |
 77 |         /// A "remark" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:78:27: warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 76 |
 77 |         /// A "remark" aside.
 78 |         public static let remark = Kind(rawValue: "Remark")!
    |                           |- warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'remark' 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
 79 |
 80 |         /// A "requires" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:81:27: warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 79 |
 80 |         /// A "requires" aside.
 81 |         public static let requires = Kind(rawValue: "Requires")!
    |                           |- warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'requires' 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
 82 |
 83 |         /// A "since" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:84:27: warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 82 |
 83 |         /// A "since" aside.
 84 |         public static let since = Kind(rawValue: "Since")!
    |                           |- warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'since' 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
 85 |
 86 |         /// A "todo" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:87:27: warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 85 |
 86 |         /// A "todo" aside.
 87 |         public static let todo = Kind(rawValue: "ToDo")!
    |                           |- warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'todo' 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
 88 |
 89 |         /// A "version" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:90:27: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 88 |
 89 |         /// A "version" aside.
 90 |         public static let version = Kind(rawValue: "Version")!
    |                           |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'version' 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
 91 |
 92 |         /// A "throws" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:93:27: warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 91 |
 92 |         /// A "throws" aside.
 93 |         public static let `throws` = Kind(rawValue: "Throws")!
    |                           |- warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'throws' 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
 94 |
 95 |         /// A "seeAlso" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:96:27: warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 94 |
 95 |         /// A "seeAlso" aside.
 96 |         public static let seeAlso = Kind(rawValue: "SeeAlso")!
    |                           |- warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'seeAlso' 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
 97 |
 98 |         /// A collection of preconfigured aside kinds.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:29:23: warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
27 |
28 |     /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
29 |     public static let parseMinimalDoxygen = ParseOptions(rawValue: 1 << 3)
   |                       |- warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseMinimalDoxygen' 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
30 |
31 |     /// Disable including a `data-sourcepos` attribute on all block elements during parsing.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:23:23: warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
21 |
22 |     /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
23 |     public static let parseSymbolLinks = ParseOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseSymbolLinks' 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
24 |
25 |     /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
24 |
25 |     /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing.
26 |     public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
   |                       |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disableSmartOpts' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:32:23: warning: static property 'disableSourcePosOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
30 |
31 |     /// Disable including a `data-sourcepos` attribute on all block elements during parsing.
32 |     public static let disableSourcePosOpts = ParseOptions(rawValue: 1 << 4)
   |                       |- warning: static property 'disableSourcePosOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disableSourcePosOpts' 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
33 | }
34 |
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:20:23: warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
18 |
19 |     /// Enable block directive syntax.
20 |     public static let parseBlockDirectives = ParseOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseBlockDirectives' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
[124/178] Compiling Markdown RangeAdjuster.swift
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:27:27: warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    |                           |- warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'note' 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
 28 |
 29 |         /// A "tip" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:30:27: warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
 28 |
 29 |         /// A "tip" aside.
 30 |         public static let tip = Kind(rawValue: "Tip")!
    |                           |- warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'tip' 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
 31 |
 32 |         /// An "important" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:33:27: warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 31 |
 32 |         /// An "important" aside.
 33 |         public static let important = Kind(rawValue: "Important")!
    |                           |- warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'important' 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
 34 |
 35 |         /// An "experiment" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:36:27: warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 34 |
 35 |         /// An "experiment" aside.
 36 |         public static let experiment = Kind(rawValue: "Experiment")!
    |                           |- warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'experiment' 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
 37 |
 38 |         /// A "warning" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:39:27: warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 37 |
 38 |         /// A "warning" aside.
 39 |         public static let warning = Kind(rawValue: "Warning")!
    |                           |- warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'warning' 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
 40 |
 41 |         /// An "attention" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:42:27: warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 40 |
 41 |         /// An "attention" aside.
 42 |         public static let attention = Kind(rawValue: "Attention")!
    |                           |- warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'attention' 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
 43 |
 44 |         /// An "author" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:45:27: warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 43 |
 44 |         /// An "author" aside.
 45 |         public static let author = Kind(rawValue: "Author")!
    |                           |- warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'author' 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
 46 |
 47 |         /// An "authors" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:48:27: warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 46 |
 47 |         /// An "authors" aside.
 48 |         public static let authors = Kind(rawValue: "Authors")!
    |                           |- warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'authors' 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
 49 |
 50 |         /// A "bug" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:51:27: warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 49 |
 50 |         /// A "bug" aside.
 51 |         public static let bug = Kind(rawValue: "Bug")!
    |                           |- warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'bug' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |         /// A "complexity" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:54:27: warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 52 |
 53 |         /// A "complexity" aside.
 54 |         public static let complexity = Kind(rawValue: "Complexity")!
    |                           |- warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'complexity' 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
 55 |
 56 |         /// A "copyright" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:57:27: warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 55 |
 56 |         /// A "copyright" aside.
 57 |         public static let copyright = Kind(rawValue: "Copyright")!
    |                           |- warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'copyright' 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
 58 |
 59 |         /// A "date" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:60:27: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 58 |
 59 |         /// A "date" aside.
 60 |         public static let date = Kind(rawValue: "Date")!
    |                           |- warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'date' 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
 61 |
 62 |         /// An "invariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:63:27: warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 61 |
 62 |         /// An "invariant" aside.
 63 |         public static let invariant = Kind(rawValue: "Invariant")!
    |                           |- warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'invariant' 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
 64 |
 65 |         /// A "mutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:66:27: warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 64 |
 65 |         /// A "mutatingVariant" aside.
 66 |         public static let mutatingVariant = Kind(rawValue: "MutatingVariant")!
    |                           |- warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'mutatingVariant' 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 |         /// A "nonMutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:69:27: warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 67 |
 68 |         /// A "nonMutatingVariant" aside.
 69 |         public static let nonMutatingVariant = Kind(rawValue: "NonMutatingVariant")!
    |                           |- warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'nonMutatingVariant' 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
 70 |
 71 |         /// A "postcondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:72:27: warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 70 |
 71 |         /// A "postcondition" aside.
 72 |         public static let postcondition = Kind(rawValue: "Postcondition")!
    |                           |- warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'postcondition' 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
 73 |
 74 |         /// A "precondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:75:27: warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 73 |
 74 |         /// A "precondition" aside.
 75 |         public static let precondition = Kind(rawValue: "Precondition")!
    |                           |- warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'precondition' 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
 76 |
 77 |         /// A "remark" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:78:27: warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 76 |
 77 |         /// A "remark" aside.
 78 |         public static let remark = Kind(rawValue: "Remark")!
    |                           |- warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'remark' 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
 79 |
 80 |         /// A "requires" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:81:27: warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 79 |
 80 |         /// A "requires" aside.
 81 |         public static let requires = Kind(rawValue: "Requires")!
    |                           |- warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'requires' 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
 82 |
 83 |         /// A "since" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:84:27: warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 82 |
 83 |         /// A "since" aside.
 84 |         public static let since = Kind(rawValue: "Since")!
    |                           |- warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'since' 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
 85 |
 86 |         /// A "todo" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:87:27: warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 85 |
 86 |         /// A "todo" aside.
 87 |         public static let todo = Kind(rawValue: "ToDo")!
    |                           |- warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'todo' 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
 88 |
 89 |         /// A "version" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:90:27: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 88 |
 89 |         /// A "version" aside.
 90 |         public static let version = Kind(rawValue: "Version")!
    |                           |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'version' 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
 91 |
 92 |         /// A "throws" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:93:27: warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 91 |
 92 |         /// A "throws" aside.
 93 |         public static let `throws` = Kind(rawValue: "Throws")!
    |                           |- warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'throws' 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
 94 |
 95 |         /// A "seeAlso" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:96:27: warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 94 |
 95 |         /// A "seeAlso" aside.
 96 |         public static let seeAlso = Kind(rawValue: "SeeAlso")!
    |                           |- warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'seeAlso' 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
 97 |
 98 |         /// A collection of preconfigured aside kinds.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:29:23: warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
27 |
28 |     /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
29 |     public static let parseMinimalDoxygen = ParseOptions(rawValue: 1 << 3)
   |                       |- warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseMinimalDoxygen' 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
30 |
31 |     /// Disable including a `data-sourcepos` attribute on all block elements during parsing.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:23:23: warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
21 |
22 |     /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
23 |     public static let parseSymbolLinks = ParseOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseSymbolLinks' 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
24 |
25 |     /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
24 |
25 |     /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing.
26 |     public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
   |                       |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disableSmartOpts' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:32:23: warning: static property 'disableSourcePosOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
30 |
31 |     /// Disable including a `data-sourcepos` attribute on all block elements during parsing.
32 |     public static let disableSourcePosOpts = ParseOptions(rawValue: 1 << 4)
   |                       |- warning: static property 'disableSourcePosOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disableSourcePosOpts' 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
33 | }
34 |
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:20:23: warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
18 |
19 |     /// Enable block directive syntax.
20 |     public static let parseBlockDirectives = ParseOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseBlockDirectives' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
[125/178] Compiling Markdown RangerTracker.swift
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:27:27: warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    |                           |- warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'note' 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
 28 |
 29 |         /// A "tip" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:30:27: warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
 28 |
 29 |         /// A "tip" aside.
 30 |         public static let tip = Kind(rawValue: "Tip")!
    |                           |- warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'tip' 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
 31 |
 32 |         /// An "important" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:33:27: warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 31 |
 32 |         /// An "important" aside.
 33 |         public static let important = Kind(rawValue: "Important")!
    |                           |- warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'important' 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
 34 |
 35 |         /// An "experiment" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:36:27: warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 34 |
 35 |         /// An "experiment" aside.
 36 |         public static let experiment = Kind(rawValue: "Experiment")!
    |                           |- warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'experiment' 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
 37 |
 38 |         /// A "warning" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:39:27: warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 37 |
 38 |         /// A "warning" aside.
 39 |         public static let warning = Kind(rawValue: "Warning")!
    |                           |- warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'warning' 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
 40 |
 41 |         /// An "attention" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:42:27: warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 40 |
 41 |         /// An "attention" aside.
 42 |         public static let attention = Kind(rawValue: "Attention")!
    |                           |- warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'attention' 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
 43 |
 44 |         /// An "author" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:45:27: warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 43 |
 44 |         /// An "author" aside.
 45 |         public static let author = Kind(rawValue: "Author")!
    |                           |- warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'author' 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
 46 |
 47 |         /// An "authors" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:48:27: warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 46 |
 47 |         /// An "authors" aside.
 48 |         public static let authors = Kind(rawValue: "Authors")!
    |                           |- warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'authors' 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
 49 |
 50 |         /// A "bug" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:51:27: warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 49 |
 50 |         /// A "bug" aside.
 51 |         public static let bug = Kind(rawValue: "Bug")!
    |                           |- warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'bug' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |         /// A "complexity" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:54:27: warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 52 |
 53 |         /// A "complexity" aside.
 54 |         public static let complexity = Kind(rawValue: "Complexity")!
    |                           |- warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'complexity' 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
 55 |
 56 |         /// A "copyright" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:57:27: warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 55 |
 56 |         /// A "copyright" aside.
 57 |         public static let copyright = Kind(rawValue: "Copyright")!
    |                           |- warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'copyright' 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
 58 |
 59 |         /// A "date" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:60:27: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 58 |
 59 |         /// A "date" aside.
 60 |         public static let date = Kind(rawValue: "Date")!
    |                           |- warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'date' 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
 61 |
 62 |         /// An "invariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:63:27: warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 61 |
 62 |         /// An "invariant" aside.
 63 |         public static let invariant = Kind(rawValue: "Invariant")!
    |                           |- warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'invariant' 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
 64 |
 65 |         /// A "mutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:66:27: warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 64 |
 65 |         /// A "mutatingVariant" aside.
 66 |         public static let mutatingVariant = Kind(rawValue: "MutatingVariant")!
    |                           |- warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'mutatingVariant' 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 |         /// A "nonMutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:69:27: warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 67 |
 68 |         /// A "nonMutatingVariant" aside.
 69 |         public static let nonMutatingVariant = Kind(rawValue: "NonMutatingVariant")!
    |                           |- warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'nonMutatingVariant' 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
 70 |
 71 |         /// A "postcondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:72:27: warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 70 |
 71 |         /// A "postcondition" aside.
 72 |         public static let postcondition = Kind(rawValue: "Postcondition")!
    |                           |- warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'postcondition' 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
 73 |
 74 |         /// A "precondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:75:27: warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 73 |
 74 |         /// A "precondition" aside.
 75 |         public static let precondition = Kind(rawValue: "Precondition")!
    |                           |- warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'precondition' 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
 76 |
 77 |         /// A "remark" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:78:27: warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 76 |
 77 |         /// A "remark" aside.
 78 |         public static let remark = Kind(rawValue: "Remark")!
    |                           |- warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'remark' 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
 79 |
 80 |         /// A "requires" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:81:27: warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 79 |
 80 |         /// A "requires" aside.
 81 |         public static let requires = Kind(rawValue: "Requires")!
    |                           |- warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'requires' 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
 82 |
 83 |         /// A "since" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:84:27: warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 82 |
 83 |         /// A "since" aside.
 84 |         public static let since = Kind(rawValue: "Since")!
    |                           |- warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'since' 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
 85 |
 86 |         /// A "todo" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:87:27: warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 85 |
 86 |         /// A "todo" aside.
 87 |         public static let todo = Kind(rawValue: "ToDo")!
    |                           |- warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'todo' 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
 88 |
 89 |         /// A "version" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:90:27: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 88 |
 89 |         /// A "version" aside.
 90 |         public static let version = Kind(rawValue: "Version")!
    |                           |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'version' 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
 91 |
 92 |         /// A "throws" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:93:27: warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 91 |
 92 |         /// A "throws" aside.
 93 |         public static let `throws` = Kind(rawValue: "Throws")!
    |                           |- warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'throws' 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
 94 |
 95 |         /// A "seeAlso" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:96:27: warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 94 |
 95 |         /// A "seeAlso" aside.
 96 |         public static let seeAlso = Kind(rawValue: "SeeAlso")!
    |                           |- warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'seeAlso' 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
 97 |
 98 |         /// A collection of preconfigured aside kinds.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:29:23: warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
27 |
28 |     /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
29 |     public static let parseMinimalDoxygen = ParseOptions(rawValue: 1 << 3)
   |                       |- warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseMinimalDoxygen' 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
30 |
31 |     /// Disable including a `data-sourcepos` attribute on all block elements during parsing.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:23:23: warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
21 |
22 |     /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
23 |     public static let parseSymbolLinks = ParseOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseSymbolLinks' 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
24 |
25 |     /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
24 |
25 |     /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing.
26 |     public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
   |                       |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disableSmartOpts' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:32:23: warning: static property 'disableSourcePosOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
30 |
31 |     /// Disable including a `data-sourcepos` attribute on all block elements during parsing.
32 |     public static let disableSourcePosOpts = ParseOptions(rawValue: 1 << 4)
   |                       |- warning: static property 'disableSourcePosOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disableSourcePosOpts' 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
33 | }
34 |
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:20:23: warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
18 |
19 |     /// Enable block directive syntax.
20 |     public static let parseBlockDirectives = ParseOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseBlockDirectives' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
[126/178] Compiling Markdown MarkupRewriter.swift
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:27:27: warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    |                           |- warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'note' 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
 28 |
 29 |         /// A "tip" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:30:27: warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
 28 |
 29 |         /// A "tip" aside.
 30 |         public static let tip = Kind(rawValue: "Tip")!
    |                           |- warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'tip' 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
 31 |
 32 |         /// An "important" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:33:27: warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 31 |
 32 |         /// An "important" aside.
 33 |         public static let important = Kind(rawValue: "Important")!
    |                           |- warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'important' 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
 34 |
 35 |         /// An "experiment" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:36:27: warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 34 |
 35 |         /// An "experiment" aside.
 36 |         public static let experiment = Kind(rawValue: "Experiment")!
    |                           |- warning: static property 'experiment' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'experiment' 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
 37 |
 38 |         /// A "warning" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:39:27: warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 37 |
 38 |         /// A "warning" aside.
 39 |         public static let warning = Kind(rawValue: "Warning")!
    |                           |- warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'warning' 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
 40 |
 41 |         /// An "attention" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:42:27: warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 40 |
 41 |         /// An "attention" aside.
 42 |         public static let attention = Kind(rawValue: "Attention")!
    |                           |- warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'attention' 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
 43 |
 44 |         /// An "author" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:45:27: warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 43 |
 44 |         /// An "author" aside.
 45 |         public static let author = Kind(rawValue: "Author")!
    |                           |- warning: static property 'author' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'author' 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
 46 |
 47 |         /// An "authors" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:48:27: warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 46 |
 47 |         /// An "authors" aside.
 48 |         public static let authors = Kind(rawValue: "Authors")!
    |                           |- warning: static property 'authors' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'authors' 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
 49 |
 50 |         /// A "bug" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:51:27: warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 49 |
 50 |         /// A "bug" aside.
 51 |         public static let bug = Kind(rawValue: "Bug")!
    |                           |- warning: static property 'bug' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'bug' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |         /// A "complexity" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:54:27: warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 52 |
 53 |         /// A "complexity" aside.
 54 |         public static let complexity = Kind(rawValue: "Complexity")!
    |                           |- warning: static property 'complexity' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'complexity' 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
 55 |
 56 |         /// A "copyright" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:57:27: warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 55 |
 56 |         /// A "copyright" aside.
 57 |         public static let copyright = Kind(rawValue: "Copyright")!
    |                           |- warning: static property 'copyright' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'copyright' 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
 58 |
 59 |         /// A "date" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:60:27: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 58 |
 59 |         /// A "date" aside.
 60 |         public static let date = Kind(rawValue: "Date")!
    |                           |- warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'date' 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
 61 |
 62 |         /// An "invariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:63:27: warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 61 |
 62 |         /// An "invariant" aside.
 63 |         public static let invariant = Kind(rawValue: "Invariant")!
    |                           |- warning: static property 'invariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'invariant' 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
 64 |
 65 |         /// A "mutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:66:27: warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 64 |
 65 |         /// A "mutatingVariant" aside.
 66 |         public static let mutatingVariant = Kind(rawValue: "MutatingVariant")!
    |                           |- warning: static property 'mutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'mutatingVariant' 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 |         /// A "nonMutatingVariant" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:69:27: warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 67 |
 68 |         /// A "nonMutatingVariant" aside.
 69 |         public static let nonMutatingVariant = Kind(rawValue: "NonMutatingVariant")!
    |                           |- warning: static property 'nonMutatingVariant' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'nonMutatingVariant' 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
 70 |
 71 |         /// A "postcondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:72:27: warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 70 |
 71 |         /// A "postcondition" aside.
 72 |         public static let postcondition = Kind(rawValue: "Postcondition")!
    |                           |- warning: static property 'postcondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'postcondition' 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
 73 |
 74 |         /// A "precondition" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:75:27: warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 73 |
 74 |         /// A "precondition" aside.
 75 |         public static let precondition = Kind(rawValue: "Precondition")!
    |                           |- warning: static property 'precondition' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'precondition' 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
 76 |
 77 |         /// A "remark" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:78:27: warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 76 |
 77 |         /// A "remark" aside.
 78 |         public static let remark = Kind(rawValue: "Remark")!
    |                           |- warning: static property 'remark' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'remark' 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
 79 |
 80 |         /// A "requires" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:81:27: warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 79 |
 80 |         /// A "requires" aside.
 81 |         public static let requires = Kind(rawValue: "Requires")!
    |                           |- warning: static property 'requires' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'requires' 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
 82 |
 83 |         /// A "since" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:84:27: warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 82 |
 83 |         /// A "since" aside.
 84 |         public static let since = Kind(rawValue: "Since")!
    |                           |- warning: static property 'since' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'since' 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
 85 |
 86 |         /// A "todo" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:87:27: warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 85 |
 86 |         /// A "todo" aside.
 87 |         public static let todo = Kind(rawValue: "ToDo")!
    |                           |- warning: static property 'todo' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'todo' 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
 88 |
 89 |         /// A "version" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:90:27: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 88 |
 89 |         /// A "version" aside.
 90 |         public static let version = Kind(rawValue: "Version")!
    |                           |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'version' 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
 91 |
 92 |         /// A "throws" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:93:27: warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 91 |
 92 |         /// A "throws" aside.
 93 |         public static let `throws` = Kind(rawValue: "Throws")!
    |                           |- warning: static property 'throws' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'throws' 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
 94 |
 95 |         /// A "seeAlso" aside.
/host/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:96:27: warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public struct Aside {
 24 |     /// Describes the different kinds of aside.
 25 |     public struct Kind: RawRepresentable, CaseIterable, Equatable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 26 |         /// A "note" aside.
 27 |         public static let note = Kind(rawValue: "Note")!
    :
 94 |
 95 |         /// A "seeAlso" aside.
 96 |         public static let seeAlso = Kind(rawValue: "SeeAlso")!
    |                           |- warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'seeAlso' 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
 97 |
 98 |         /// A collection of preconfigured aside kinds.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:29:23: warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
27 |
28 |     /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
29 |     public static let parseMinimalDoxygen = ParseOptions(rawValue: 1 << 3)
   |                       |- warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseMinimalDoxygen' 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
30 |
31 |     /// Disable including a `data-sourcepos` attribute on all block elements during parsing.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:23:23: warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
21 |
22 |     /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
23 |     public static let parseSymbolLinks = ParseOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseSymbolLinks' 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
24 |
25 |     /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
24 |
25 |     /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing.
26 |     public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
   |                       |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disableSmartOpts' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:32:23: warning: static property 'disableSourcePosOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
30 |
31 |     /// Disable including a `data-sourcepos` attribute on all block elements during parsing.
32 |     public static let disableSourcePosOpts = ParseOptions(rawValue: 1 << 4)
   |                       |- warning: static property 'disableSourcePosOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disableSourcePosOpts' 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
33 | }
34 |
/host/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:20:23: warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
   |               `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 |     public var rawValue: UInt
14 |
   :
18 |
19 |     /// Enable block directive syntax.
20 |     public static let parseBlockDirectives = ParseOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parseBlockDirectives' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
[128/195] Compiling PreferredHeadingStyle PreferredHeadingStyle.swift
[129/195] Emitting module ThematicBreakCharacter
[130/195] Compiling ThematicBreakCharacter ThematicBreakCharacter.swift
[131/195] Emitting module PreferredHeadingStyle
[132/195] Emitting module ParseDocumentString
[133/195] Compiling ParseDocumentString ParseDocumentString.swift
[134/197] Emitting module UseCodeFence
[135/197] Compiling UseCodeFence UseCodeFence.swift
[136/199] Emitting module UnorderedListMarker
[137/199] Compiling UnorderedListMarker UnorderedListMarker.swift
[138/199] Emitting module ReplaceText
[139/199] Compiling ReplaceText ReplaceText.swift
[143/201] Emitting module RemoveElementKind
[144/201] Compiling RemoveElementKind RemoveElementKind.swift
[149/202] Emitting module XMLConverter
[150/202] Compiling XMLConverter XMLConverter.swift
[152/213] Emitting module ParseDocumentFile
[153/213] Compiling ParseDocumentFile ParseDocumentFile.swift
[154/213] Emitting module OrderedListNumerals
[155/213] Compiling OrderedListNumerals OrderedListNumerals.swift
[156/219] Emitting module MaximumWidth
[157/219] Compiling MaximumWidth MaximumWidth.swift
[158/220] Emitting module LinkCollector
[159/220] Compiling LinkCollector LinkCollector.swift
[162/223] Compiling CustomLinePrefix CustomLinePrefix.swift
[164/223] Emitting module CustomLinePrefix
[166/224] Emitting module DefaultFormatting
[167/224] Compiling DefaultFormatting DefaultFormatting.swift
[168/224] Emitting module EmphasisMarkers
[169/224] Compiling EmphasisMarkers EmphasisMarkers.swift
[169/225] Wrapping AST for XMLConverter for debugging
[171/226] Emitting module CondenseAutolinks
[172/226] Wrapping AST for UseCodeFence for debugging
[174/226] Compiling CondenseAutolinks CondenseAutolinks.swift
[175/227] Wrapping AST for UnorderedListMarker for debugging
[177/227] Wrapping AST for ThematicBreakCharacter for debugging
[179/227] Wrapping AST for ReplaceText for debugging
[180/227] Wrapping AST for RemoveElementKind for debugging
[181/227] Wrapping AST for PreferredHeadingStyle for debugging
[182/227] Wrapping AST for ParseDocumentString for debugging
[183/227] Wrapping AST for ParseDocumentFile for debugging
[184/228] Wrapping AST for OrderedListNumerals for debugging
[185/228] Wrapping AST for MaximumWidth for debugging
[186/229] Wrapping AST for Markdown for debugging
[187/229] Write Objects.LinkFileList
[191/229] Wrapping AST for LinkCollector for debugging
[192/229] Wrapping AST for DefaultFormatting for debugging
[193/229] Wrapping AST for EmphasisMarkers for debugging
[194/229] Write Objects.LinkFileList
[195/229] Wrapping AST for CustomLinePrefix for debugging
[196/229] Write Objects.LinkFileList
[198/229] Wrapping AST for CondenseAutolinks for debugging
[200/229] Emitting module ChildThrough
[201/229] Compiling ChildThrough ChildThrough.swift
[202/230] Write Objects.LinkFileList
[204/230] Linking XMLConverter
[205/230] Linking RemoveElementKind
[206/230] Write Objects.LinkFileList
[207/230] Linking UnorderedListMarker
[208/230] Write Objects.LinkFileList
[209/230] Linking UseCodeFence
[210/230] Write Objects.LinkFileList
[212/230] Linking ReplaceText
[213/230] Linking ThematicBreakCharacter
[213/230] Write Objects.LinkFileList
[217/230] Linking PreferredHeadingStyle
[218/230] Wrapping AST for ChildThrough for debugging
[219/230] Linking ParseDocumentString
[220/230] Linking ParseDocumentFile
[220/230] Write Objects.LinkFileList
[222/230] Linking OrderedListNumerals
[223/230] Linking MaximumWidth
[224/230] Linking LinkCollector
[225/230] Linking EmphasisMarkers
[226/230] Linking DefaultFormatting
[227/230] Linking CustomLinePrefix
[228/230] Linking CondenseAutolinks
[229/230] Linking ChildThrough
Build complete! (29.06s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-cmark",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.6.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-cmark.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "swift-markdown",
  "name" : "swift-markdown",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Markdown",
      "targets" : [
        "Markdown"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "XMLConverter",
      "targets" : [
        "XMLConverter"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "ParseDocumentFile",
      "targets" : [
        "ParseDocumentFile"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "ParseDocumentString",
      "targets" : [
        "ParseDocumentString"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "RemoveElementKind",
      "targets" : [
        "RemoveElementKind"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "ReplaceText",
      "targets" : [
        "ReplaceText"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "PreferredHeadingStyle",
      "targets" : [
        "PreferredHeadingStyle"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "ThematicBreakCharacter",
      "targets" : [
        "ThematicBreakCharacter"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "MaximumWidth",
      "targets" : [
        "MaximumWidth"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "CondenseAutolinks",
      "targets" : [
        "CondenseAutolinks"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "EmphasisMarkers",
      "targets" : [
        "EmphasisMarkers"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "OrderedListNumerals",
      "targets" : [
        "OrderedListNumerals"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "CustomLinePrefix",
      "targets" : [
        "CustomLinePrefix"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "UseCodeFence",
      "targets" : [
        "UseCodeFence"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "UnorderedListMarker",
      "targets" : [
        "UnorderedListMarker"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "DefaultFormatting",
      "targets" : [
        "DefaultFormatting"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "ChildThrough",
      "targets" : [
        "ChildThrough"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "LinkCollector",
      "targets" : [
        "LinkCollector"
      ],
      "type" : {
        "snippet" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MarkdownTests",
      "module_type" : "SwiftTarget",
      "name" : "MarkdownTests",
      "path" : "Tests/MarkdownTests",
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Tests/MarkdownTests/Visitors/Everything.md",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Base/AtomicCounterTests.swift",
        "Base/HierarchyTests.swift",
        "Base/MarkupIdentifierTests.swift",
        "Base/MarkupTests.swift",
        "Base/ParsedRangePreservedAfterEditing.swift",
        "Base/PlainTextConvertibleMarkupTests.swift",
        "Base/RawMarkupTests.swift",
        "Base/RawMarkupToMarkupTests.swift",
        "Base/StableIdentifierTests.swift",
        "Block Nodes/CodeBlockTests.swift",
        "Block Nodes/DocumentTests.swift",
        "Block Nodes/HTMLBlockTests.swift",
        "Block Nodes/HeadingTests.swift",
        "Block Nodes/ParagraphTests.swift",
        "Block Nodes/TableTests.swift",
        "Infrastructure/SourceLocationTests.swift",
        "Inline Nodes/ImageTests.swift",
        "Inline Nodes/InlineAttributesTests.swift",
        "Inline Nodes/InlineCodeTests.swift",
        "Inline Nodes/InlineHTMLTests.swift",
        "Inline Nodes/LineBreakTests.swift",
        "Inline Nodes/LinkTests.swift",
        "Inline Nodes/SoftBreakTests.swift",
        "Inline Nodes/SymbolLinkTests.swift",
        "Inline Nodes/TextTests.swift",
        "Interpretive Nodes/AsideTests.swift",
        "Parsing/BacktickTests.swift",
        "Parsing/BlockDirectiveParserTests.swift",
        "Parsing/CommonMarkConverterTests.swift",
        "Parsing/DoxygenCommandParserTests.swift",
        "Parsing/SourceURLTests.swift",
        "Performance/EditPerformanceTests.swift",
        "Performance/MarkupChildrenPerformanceTests.swift",
        "Structural Restrictions/BasicBlockContainerTests.swift",
        "Structural Restrictions/BasicInlineContainerTests.swift",
        "Structural Restrictions/ListItemContainerTests.swift",
        "Utility/AssertElementDidntChange.swift",
        "Visitors/HTMLFormatterTests.swift",
        "Visitors/MarkupFormatterTests.swift",
        "Visitors/MarkupRewriterTests.swift",
        "Visitors/MarkupTreeDumperTests.swift",
        "Visitors/MarkupVisitorTests.swift",
        "Visitors/MarkupWalkerTests.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Markdown",
      "module_type" : "SwiftTarget",
      "name" : "Markdown",
      "path" : "Sources/Markdown",
      "product_dependencies" : [
        "cmark-gfm",
        "cmark-gfm-extensions"
      ],
      "product_memberships" : [
        "Markdown",
        "XMLConverter",
        "ParseDocumentFile",
        "ParseDocumentString",
        "RemoveElementKind",
        "ReplaceText",
        "PreferredHeadingStyle",
        "ThematicBreakCharacter",
        "MaximumWidth",
        "CondenseAutolinks",
        "EmphasisMarkers",
        "OrderedListNumerals",
        "CustomLinePrefix",
        "UseCodeFence",
        "UnorderedListMarker",
        "DefaultFormatting",
        "ChildThrough",
        "LinkCollector"
      ],
      "sources" : [
        "Base/ChildIndexPath.swift",
        "Base/DirectiveArgument.swift",
        "Base/Document.swift",
        "Base/LiteralMarkup.swift",
        "Base/Markup.swift",
        "Base/MarkupChildren.swift",
        "Base/MarkupData.swift",
        "Base/PlainTextConvertibleMarkup.swift",
        "Base/RawMarkup.swift",
        "Block Nodes/Block Container Blocks/BlockDirective.swift",
        "Block Nodes/Block Container Blocks/BlockQuote.swift",
        "Block Nodes/Block Container Blocks/CustomBlock.swift",
        "Block Nodes/Block Container Blocks/Doxygen Commands/DoxygenDiscussion.swift",
        "Block Nodes/Block Container Blocks/Doxygen Commands/DoxygenNote.swift",
        "Block Nodes/Block Container Blocks/Doxygen Commands/DoxygenParameter.swift",
        "Block Nodes/Block Container Blocks/Doxygen Commands/DoxygenReturns.swift",
        "Block Nodes/Block Container Blocks/ListItem.swift",
        "Block Nodes/Block Container Blocks/OrderedList.swift",
        "Block Nodes/Block Container Blocks/UnorderedList.swift",
        "Block Nodes/Inline Container Blocks/Paragraph.swift",
        "Block Nodes/Leaf Blocks/CodeBlock.swift",
        "Block Nodes/Leaf Blocks/HTMLBlock.swift",
        "Block Nodes/Leaf Blocks/Heading.swift",
        "Block Nodes/Leaf Blocks/ThematicBreak.swift",
        "Block Nodes/Tables/Table.swift",
        "Block Nodes/Tables/TableBody.swift",
        "Block Nodes/Tables/TableCell.swift",
        "Block Nodes/Tables/TableCellContainer.swift",
        "Block Nodes/Tables/TableHead.swift",
        "Block Nodes/Tables/TableRow.swift",
        "Infrastructure/Replacement.swift",
        "Infrastructure/SourceLocation.swift",
        "Inline Nodes/Inline Containers/Emphasis.swift",
        "Inline Nodes/Inline Containers/Image.swift",
        "Inline Nodes/Inline Containers/InlineAttributes.swift",
        "Inline Nodes/Inline Containers/Link.swift",
        "Inline Nodes/Inline Containers/Strikethrough.swift",
        "Inline Nodes/Inline Containers/Strong.swift",
        "Inline Nodes/Inline Leaves/CustomInline.swift",
        "Inline Nodes/Inline Leaves/InlineCode.swift",
        "Inline Nodes/Inline Leaves/InlineHTML.swift",
        "Inline Nodes/Inline Leaves/LineBreak.swift",
        "Inline Nodes/Inline Leaves/SoftBreak.swift",
        "Inline Nodes/Inline Leaves/SymbolLink.swift",
        "Inline Nodes/Inline Leaves/Text.swift",
        "Interpretive Nodes/Aside.swift",
        "Parser/BlockDirectiveParser.swift",
        "Parser/CommonMarkConverter.swift",
        "Parser/LazySplitLines.swift",
        "Parser/ParseOptions.swift",
        "Parser/RangeAdjuster.swift",
        "Parser/RangerTracker.swift",
        "Rewriter/MarkupRewriter.swift",
        "Structural Restrictions/BasicBlockContainer.swift",
        "Structural Restrictions/BasicInlineContainer.swift",
        "Structural Restrictions/BlockContainer.swift",
        "Structural Restrictions/BlockMarkup.swift",
        "Structural Restrictions/InlineContainer.swift",
        "Structural Restrictions/InlineMarkup.swift",
        "Structural Restrictions/ListItemContainer.swift",
        "Utility/AtomicCounter.swift",
        "Utility/CharacterExtensions.swift",
        "Utility/CollectionExtensions.swift",
        "Utility/StringExtensions.swift",
        "Visitor/MarkupVisitor.swift",
        "Walker/MarkupWalker.swift",
        "Walker/Walkers/HTMLFormatter.swift",
        "Walker/Walkers/MarkupFormatter.swift",
        "Walker/Walkers/MarkupTreeDumper.swift"
      ],
      "target_dependencies" : [
        "CAtomic"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CAtomic",
      "module_type" : "ClangTarget",
      "name" : "CAtomic",
      "path" : "Sources/CAtomic",
      "product_memberships" : [
        "Markdown",
        "XMLConverter",
        "ParseDocumentFile",
        "ParseDocumentString",
        "RemoveElementKind",
        "ReplaceText",
        "PreferredHeadingStyle",
        "ThematicBreakCharacter",
        "MaximumWidth",
        "CondenseAutolinks",
        "EmphasisMarkers",
        "OrderedListNumerals",
        "CustomLinePrefix",
        "UseCodeFence",
        "UnorderedListMarker",
        "DefaultFormatting",
        "ChildThrough",
        "LinkCollector"
      ],
      "sources" : [
        "CAtomic.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "XMLConverter",
      "module_type" : "SwiftTarget",
      "name" : "XMLConverter",
      "path" : "Snippets/Visitors",
      "product_memberships" : [
        "XMLConverter"
      ],
      "sources" : [
        "XMLConverter.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "ParseDocumentFile",
      "module_type" : "SwiftTarget",
      "name" : "ParseDocumentFile",
      "path" : "Snippets/Parsing",
      "product_memberships" : [
        "ParseDocumentFile"
      ],
      "sources" : [
        "ParseDocumentFile.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "ParseDocumentString",
      "module_type" : "SwiftTarget",
      "name" : "ParseDocumentString",
      "path" : "Snippets/Parsing",
      "product_memberships" : [
        "ParseDocumentString"
      ],
      "sources" : [
        "ParseDocumentString.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "RemoveElementKind",
      "module_type" : "SwiftTarget",
      "name" : "RemoveElementKind",
      "path" : "Snippets/Rewriters",
      "product_memberships" : [
        "RemoveElementKind"
      ],
      "sources" : [
        "RemoveElementKind.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "ReplaceText",
      "module_type" : "SwiftTarget",
      "name" : "ReplaceText",
      "path" : "Snippets/Rewriters",
      "product_memberships" : [
        "ReplaceText"
      ],
      "sources" : [
        "ReplaceText.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "PreferredHeadingStyle",
      "module_type" : "SwiftTarget",
      "name" : "PreferredHeadingStyle",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "PreferredHeadingStyle"
      ],
      "sources" : [
        "PreferredHeadingStyle.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "ThematicBreakCharacter",
      "module_type" : "SwiftTarget",
      "name" : "ThematicBreakCharacter",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "ThematicBreakCharacter"
      ],
      "sources" : [
        "ThematicBreakCharacter.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "MaximumWidth",
      "module_type" : "SwiftTarget",
      "name" : "MaximumWidth",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "MaximumWidth"
      ],
      "sources" : [
        "MaximumWidth.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "CondenseAutolinks",
      "module_type" : "SwiftTarget",
      "name" : "CondenseAutolinks",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "CondenseAutolinks"
      ],
      "sources" : [
        "CondenseAutolinks.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "EmphasisMarkers",
      "module_type" : "SwiftTarget",
      "name" : "EmphasisMarkers",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "EmphasisMarkers"
      ],
      "sources" : [
        "EmphasisMarkers.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "OrderedListNumerals",
      "module_type" : "SwiftTarget",
      "name" : "OrderedListNumerals",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "OrderedListNumerals"
      ],
      "sources" : [
        "OrderedListNumerals.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "CustomLinePrefix",
      "module_type" : "SwiftTarget",
      "name" : "CustomLinePrefix",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "CustomLinePrefix"
      ],
      "sources" : [
        "CustomLinePrefix.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "UseCodeFence",
      "module_type" : "SwiftTarget",
      "name" : "UseCodeFence",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "UseCodeFence"
      ],
      "sources" : [
        "UseCodeFence.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "UnorderedListMarker",
      "module_type" : "SwiftTarget",
      "name" : "UnorderedListMarker",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "UnorderedListMarker"
      ],
      "sources" : [
        "UnorderedListMarker.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "DefaultFormatting",
      "module_type" : "SwiftTarget",
      "name" : "DefaultFormatting",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "DefaultFormatting"
      ],
      "sources" : [
        "DefaultFormatting.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "ChildThrough",
      "module_type" : "SwiftTarget",
      "name" : "ChildThrough",
      "path" : "Snippets/Querying",
      "product_memberships" : [
        "ChildThrough"
      ],
      "sources" : [
        "ChildThrough.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    },
    {
      "c99name" : "LinkCollector",
      "module_type" : "SwiftTarget",
      "name" : "LinkCollector",
      "path" : "Snippets/Walkers",
      "product_memberships" : [
        "LinkCollector"
      ],
      "sources" : [
        "LinkCollector.swift"
      ],
      "target_dependencies" : [
        "Markdown"
      ],
      "type" : "snippet"
    }
  ],
  "tools_version" : "5.7"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:081dcf4fb829aea9d08447f4790431afbdfbcc335bfeed728ca69c6f181ae2aa
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.