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.1 for macOS (SPM) on 25 Apr 2025 04:12:45 UTC.

Swift 6 data race errors: 36

Build Command

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

Build Log

    |                   `- 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: add '@MainActor' to make static property 'complexity' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |         /// A "copyright" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'copyright' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |
 59 |         /// A "date" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |
 62 |         /// An "invariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'invariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 |
 65 |         /// A "mutatingVariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'mutatingVariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 |
 68 |         /// A "nonMutatingVariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'nonMutatingVariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |
 71 |         /// A "postcondition" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'postcondition' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |
 74 |         /// A "precondition" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'precondition' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 |
 77 |         /// A "remark" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'remark' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         /// A "requires" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'requires' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |
 83 |         /// A "since" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'since' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |
 86 |         /// A "todo" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'todo' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |
 89 |         /// A "version" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'version' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |         /// A "throws" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'throws' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |
 95 |         /// A "seeAlso" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'seeAlso' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |
 98 |         /// A collection of preconfigured aside kinds.
[122/160] Compiling Markdown Text.swift
/Users/admin/builder/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: add '@MainActor' to make static property 'note' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |         /// A "tip" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'tip' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |
 32 |         /// An "important" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'important' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         /// An "experiment" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'experiment' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |         /// A "warning" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'warning' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |
 41 |         /// An "attention" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'attention' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |         /// An "author" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'author' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |
 47 |         /// An "authors" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'authors' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |
 50 |         /// A "bug" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'bug' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |         /// A "complexity" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'complexity' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |         /// A "copyright" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'copyright' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |
 59 |         /// A "date" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |
 62 |         /// An "invariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'invariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 |
 65 |         /// A "mutatingVariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'mutatingVariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 |
 68 |         /// A "nonMutatingVariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'nonMutatingVariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |
 71 |         /// A "postcondition" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'postcondition' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |
 74 |         /// A "precondition" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'precondition' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 |
 77 |         /// A "remark" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'remark' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         /// A "requires" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'requires' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |
 83 |         /// A "since" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'since' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |
 86 |         /// A "todo" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'todo' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |
 89 |         /// A "version" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'version' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |         /// A "throws" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'throws' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |
 95 |         /// A "seeAlso" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'seeAlso' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |
 98 |         /// A collection of preconfigured aside kinds.
[123/160] Compiling Markdown Aside.swift
/Users/admin/builder/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: add '@MainActor' to make static property 'note' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |         /// A "tip" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'tip' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |
 32 |         /// An "important" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'important' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         /// An "experiment" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'experiment' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |         /// A "warning" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'warning' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |
 41 |         /// An "attention" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'attention' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |         /// An "author" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'author' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |
 47 |         /// An "authors" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'authors' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |
 50 |         /// A "bug" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'bug' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |         /// A "complexity" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'complexity' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |         /// A "copyright" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'copyright' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |
 59 |         /// A "date" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |
 62 |         /// An "invariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'invariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 |
 65 |         /// A "mutatingVariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'mutatingVariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 |
 68 |         /// A "nonMutatingVariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'nonMutatingVariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |
 71 |         /// A "postcondition" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'postcondition' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |
 74 |         /// A "precondition" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'precondition' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 |
 77 |         /// A "remark" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'remark' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         /// A "requires" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'requires' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |
 83 |         /// A "since" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'since' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |
 86 |         /// A "todo" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'todo' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |
 89 |         /// A "version" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'version' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |         /// A "throws" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'throws' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |
 95 |         /// A "seeAlso" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'seeAlso' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |
 98 |         /// A collection of preconfigured aside kinds.
[124/160] Compiling Markdown BlockDirectiveParser.swift
/Users/admin/builder/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: add '@MainActor' to make static property 'note' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |         /// A "tip" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'tip' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |
 32 |         /// An "important" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'important' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         /// An "experiment" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'experiment' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |         /// A "warning" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'warning' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |
 41 |         /// An "attention" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'attention' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |         /// An "author" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'author' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |
 47 |         /// An "authors" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'authors' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |
 50 |         /// A "bug" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'bug' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |         /// A "complexity" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'complexity' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |         /// A "copyright" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'copyright' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |
 59 |         /// A "date" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |
 62 |         /// An "invariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'invariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 |
 65 |         /// A "mutatingVariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'mutatingVariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 |
 68 |         /// A "nonMutatingVariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'nonMutatingVariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |
 71 |         /// A "postcondition" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'postcondition' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |
 74 |         /// A "precondition" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'precondition' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 |
 77 |         /// A "remark" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'remark' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         /// A "requires" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'requires' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |
 83 |         /// A "since" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'since' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |
 86 |         /// A "todo" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'todo' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |
 89 |         /// A "version" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'version' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |         /// A "throws" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'throws' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |
 95 |         /// A "seeAlso" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'seeAlso' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |
 98 |         /// A collection of preconfigured aside kinds.
[125/160] Compiling Markdown CommonMarkConverter.swift
/Users/admin/builder/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: add '@MainActor' to make static property 'note' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |         /// A "tip" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'tip' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |
 32 |         /// An "important" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'important' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         /// An "experiment" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'experiment' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |         /// A "warning" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'warning' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |
 41 |         /// An "attention" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'attention' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |         /// An "author" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'author' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |
 47 |         /// An "authors" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'authors' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |
 50 |         /// A "bug" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'bug' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |         /// A "complexity" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'complexity' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |         /// A "copyright" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'copyright' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |
 59 |         /// A "date" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |
 62 |         /// An "invariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'invariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 |
 65 |         /// A "mutatingVariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'mutatingVariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 |
 68 |         /// A "nonMutatingVariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'nonMutatingVariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |
 71 |         /// A "postcondition" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'postcondition' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |
 74 |         /// A "precondition" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'precondition' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 |
 77 |         /// A "remark" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'remark' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         /// A "requires" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'requires' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |
 83 |         /// A "since" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'since' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |
 86 |         /// A "todo" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'todo' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |
 89 |         /// A "version" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'version' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |         /// A "throws" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'throws' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |
 95 |         /// A "seeAlso" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'seeAlso' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |
 98 |         /// A collection of preconfigured aside kinds.
[126/160] Compiling Markdown LazySplitLines.swift
/Users/admin/builder/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: add '@MainActor' to make static property 'note' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |         /// A "tip" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'tip' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |
 32 |         /// An "important" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'important' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         /// An "experiment" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'experiment' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 |         /// A "warning" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'warning' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |
 41 |         /// An "attention" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'attention' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |         /// An "author" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'author' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |
 47 |         /// An "authors" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'authors' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |
 50 |         /// A "bug" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'bug' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |         /// A "complexity" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'complexity' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |         /// A "copyright" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'copyright' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |
 59 |         /// A "date" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |
 62 |         /// An "invariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'invariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 |
 65 |         /// A "mutatingVariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'mutatingVariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 |
 68 |         /// A "nonMutatingVariant" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'nonMutatingVariant' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |
 71 |         /// A "postcondition" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'postcondition' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |
 74 |         /// A "precondition" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'precondition' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 |
 77 |         /// A "remark" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'remark' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         /// A "requires" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'requires' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |
 83 |         /// A "since" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'since' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |
 86 |         /// A "todo" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'todo' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |
 89 |         /// A "version" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'version' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |         /// A "throws" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'throws' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |
 95 |         /// A "seeAlso" aside.
/Users/admin/builder/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: add '@MainActor' to make static property 'seeAlso' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |
 98 |         /// A collection of preconfigured aside kinds.
[127/180] Emitting module PreferredHeadingStyle
[128/180] Compiling PreferredHeadingStyle PreferredHeadingStyle.swift
[129/180] Emitting module UnorderedListMarker
[130/180] Compiling UnorderedListMarker UnorderedListMarker.swift
[131/180] Emitting module ParseDocumentString
[132/180] Compiling ParseDocumentString ParseDocumentString.swift
[133/180] Compiling ThematicBreakCharacter ThematicBreakCharacter.swift
[134/180] Emitting module ThematicBreakCharacter
[135/180] Emitting module ParseDocumentFile
[136/180] Compiling ParseDocumentFile ParseDocumentFile.swift
[137/180] Emitting module UseCodeFence
[138/180] Compiling UseCodeFence UseCodeFence.swift
[139/180] Emitting module OrderedListNumerals
[140/180] Compiling OrderedListNumerals OrderedListNumerals.swift
[141/194] Emitting module RemoveElementKind
[142/194] Compiling RemoveElementKind RemoveElementKind.swift
[142/194] Write Objects.LinkFileList
[145/194] Emitting module ReplaceText
[146/194] Compiling ReplaceText ReplaceText.swift
[147/194] Emitting module XMLConverter
[148/194] Compiling XMLConverter XMLConverter.swift
[148/194] Write Objects.LinkFileList
[151/194] Compiling MaximumWidth MaximumWidth.swift
[152/194] Emitting module MaximumWidth
[153/194] Compiling EmphasisMarkers EmphasisMarkers.swift
[154/194] Emitting module EmphasisMarkers
[155/194] Compiling LinkCollector LinkCollector.swift
[156/194] Emitting module LinkCollector
[156/194] Write Objects.LinkFileList
[159/194] Compiling DefaultFormatting DefaultFormatting.swift
[160/194] Emitting module DefaultFormatting
[160/194] Write Objects.LinkFileList
[163/194] Emitting module CustomLinePrefix
[164/194] Compiling CustomLinePrefix CustomLinePrefix.swift
[165/194] Emitting module CondenseAutolinks
[166/194] Compiling CondenseAutolinks CondenseAutolinks.swift
[166/194] Write Objects.LinkFileList
[169/194] Compiling ChildThrough ChildThrough.swift
[170/194] Emitting module ChildThrough
[170/194] Linking UseCodeFence
[171/194] Write Objects.LinkFileList
[173/194] Linking UnorderedListMarker
[174/194] Linking ThematicBreakCharacter
[175/194] Write Objects.LinkFileList
[177/194] Linking XMLConverter
[178/194] Linking ReplaceText
[179/194] Write Objects.LinkFileList
[181/194] Linking RemoveElementKind
[182/194] Linking PreferredHeadingStyle
[183/194] Write Objects.LinkFileList
[184/194] Linking ParseDocumentString
[185/194] Linking OrderedListNumerals
[186/194] Linking ParseDocumentFile
[187/194] Linking MaximumWidth
[188/194] Linking LinkCollector
[189/194] Linking EmphasisMarkers
[190/194] Linking DefaultFormatting
[191/194] Linking CustomLinePrefix
[192/194] Linking CondenseAutolinks
[193/194] Linking ChildThrough
Build complete! (20.43s)
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" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Markdown",
      "targets" : [
        "Markdown"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "XMLConverter",
      "targets" : [
        "XMLConverter"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "LinkCollector",
      "targets" : [
        "LinkCollector"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "PreferredHeadingStyle",
      "targets" : [
        "PreferredHeadingStyle"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "UseCodeFence",
      "targets" : [
        "UseCodeFence"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "CondenseAutolinks",
      "targets" : [
        "CondenseAutolinks"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "DefaultFormatting",
      "targets" : [
        "DefaultFormatting"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "CustomLinePrefix",
      "targets" : [
        "CustomLinePrefix"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "UnorderedListMarker",
      "targets" : [
        "UnorderedListMarker"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "OrderedListNumerals",
      "targets" : [
        "OrderedListNumerals"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "MaximumWidth",
      "targets" : [
        "MaximumWidth"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "ThematicBreakCharacter",
      "targets" : [
        "ThematicBreakCharacter"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "EmphasisMarkers",
      "targets" : [
        "EmphasisMarkers"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "ChildThrough",
      "targets" : [
        "ChildThrough"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "ParseDocumentString",
      "targets" : [
        "ParseDocumentString"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "ParseDocumentFile",
      "targets" : [
        "ParseDocumentFile"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "RemoveElementKind",
      "targets" : [
        "RemoveElementKind"
      ],
      "type" : {
        "snippet" : null
      }
    },
    {
      "name" : "ReplaceText",
      "targets" : [
        "ReplaceText"
      ],
      "type" : {
        "snippet" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MarkdownTests",
      "module_type" : "SwiftTarget",
      "name" : "MarkdownTests",
      "path" : "Tests/MarkdownTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/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",
        "LinkCollector",
        "PreferredHeadingStyle",
        "UseCodeFence",
        "CondenseAutolinks",
        "DefaultFormatting",
        "CustomLinePrefix",
        "UnorderedListMarker",
        "OrderedListNumerals",
        "MaximumWidth",
        "ThematicBreakCharacter",
        "EmphasisMarkers",
        "ChildThrough",
        "ParseDocumentString",
        "ParseDocumentFile",
        "RemoveElementKind",
        "ReplaceText"
      ],
      "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",
        "LinkCollector",
        "PreferredHeadingStyle",
        "UseCodeFence",
        "CondenseAutolinks",
        "DefaultFormatting",
        "CustomLinePrefix",
        "UnorderedListMarker",
        "OrderedListNumerals",
        "MaximumWidth",
        "ThematicBreakCharacter",
        "EmphasisMarkers",
        "ChildThrough",
        "ParseDocumentString",
        "ParseDocumentFile",
        "RemoveElementKind",
        "ReplaceText"
      ],
      "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" : "LinkCollector",
      "module_type" : "SwiftTarget",
      "name" : "LinkCollector",
      "path" : "Snippets/Walkers",
      "product_memberships" : [
        "LinkCollector"
      ],
      "sources" : [
        "LinkCollector.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" : "UseCodeFence",
      "module_type" : "SwiftTarget",
      "name" : "UseCodeFence",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "UseCodeFence"
      ],
      "sources" : [
        "UseCodeFence.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" : "DefaultFormatting",
      "module_type" : "SwiftTarget",
      "name" : "DefaultFormatting",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "DefaultFormatting"
      ],
      "sources" : [
        "DefaultFormatting.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" : "UnorderedListMarker",
      "module_type" : "SwiftTarget",
      "name" : "UnorderedListMarker",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "UnorderedListMarker"
      ],
      "sources" : [
        "UnorderedListMarker.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" : "MaximumWidth",
      "module_type" : "SwiftTarget",
      "name" : "MaximumWidth",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "MaximumWidth"
      ],
      "sources" : [
        "MaximumWidth.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" : "EmphasisMarkers",
      "module_type" : "SwiftTarget",
      "name" : "EmphasisMarkers",
      "path" : "Snippets/Formatting",
      "product_memberships" : [
        "EmphasisMarkers"
      ],
      "sources" : [
        "EmphasisMarkers.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" : "ParseDocumentString",
      "module_type" : "SwiftTarget",
      "name" : "ParseDocumentString",
      "path" : "Snippets/Parsing",
      "product_memberships" : [
        "ParseDocumentString"
      ],
      "sources" : [
        "ParseDocumentString.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" : "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"
    }
  ],
  "tools_version" : "5.7"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/swiftlang/swift-markdown/0.6.0
Repository:               swiftlang/swift-markdown
Swift version used:       6.1
        .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.1.0"),
Target:                   Markdown
Extracting symbol information for 'Markdown'...
Finished extracting symbol information for 'Markdown'. (4.22s)
Building documentation for 'Markdown'...
warning: 'Snippets' is ambiguous at '/Markdown'
  --> Markdown.md:17:8-17:16
15 | A quick overview of examples showing tasks you can achieve with Swift Markdown.
16 |
17 + - <doc:Snippets>
   |                ├─suggestion: Insert '-anchor' for 'Snippets'
   |                ╰─suggestion: Insert '-article' for 'Snippets'
18 |
19 | ### Getting Started
warning: 'Infrastructure' is ambiguous at '/Markdown'
  --> Markdown.md:44:8-44:22
42 | ### Infrastructure
43 |
44 + - <doc:Infrastructure>
   |                      ├─suggestion: Insert '-anchor' for 'Infrastructure'
   |                      ╰─suggestion: Insert '-article' for 'Infrastructure'
45 |
46 | ### Visit Markup
Finished building documentation for 'Markdown' (1.00s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/swiftlang/swift-markdown/0.6.0
Building for debugging...
[0/8] Write sources
[1/8] Write snippet-extract-tool-entitlement.plist
[3/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit DeclarationFragments.swift
[8/57] Compiling SymbolKit Fragment.swift
[9/57] Compiling SymbolKit FragmentKind.swift
[10/57] Compiling SymbolKit FunctionParameter.swift
[11/57] Compiling SymbolKit FunctionSignature.swift
[12/57] Compiling SymbolKit GenericConstraint.swift
[13/57] Compiling SymbolKit GenericParameter.swift
[14/57] Compiling SymbolKit Generics.swift
[15/57] Compiling SymbolKit Namespace.swift
[16/57] Compiling SymbolKit Mixin+Equals.swift
[17/57] Compiling SymbolKit Mixin+Hash.swift
[18/57] Compiling SymbolKit Mixin.swift
[19/57] Compiling SymbolKit LineList.swift
[20/57] Compiling SymbolKit Position.swift
[21/57] Compiling SymbolKit SemanticVersion.swift
[22/57] Compiling SymbolKit AccessControl.swift
[23/57] Compiling SymbolKit Availability.swift
[24/57] Compiling SymbolKit AvailabilityItem.swift
[25/57] Compiling SymbolKit Domain.swift
[26/57] Compiling SymbolKit Names.swift
[27/57] Compiling SymbolKit SPI.swift
[28/57] Compiling SymbolKit Snippet.swift
[29/57] Compiling SymbolKit Extension.swift
[30/57] Compiling SymbolKit Identifier.swift
[31/57] Compiling SymbolKit KindIdentifier.swift
[32/57] Compiling SymbolKit Location.swift
[33/57] Compiling SymbolKit Mutability.swift
[34/57] Compiling SymbolKit SourceRange.swift
[35/57] Compiling SymbolKit Metadata.swift
[36/57] Compiling SymbolKit Module.swift
[37/57] Compiling SymbolKit OperatingSystem.swift
[38/57] Compiling SymbolKit Platform.swift
[39/57] Compiling SymbolKit Relationship.swift
[40/57] Compiling SymbolKit RelationshipKind.swift
[41/57] Compiling SymbolKit SourceOrigin.swift
[42/57] Compiling SymbolKit GenericConstraints.swift
[43/57] Compiling SymbolKit Swift.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets Snippet.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.32s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/65] Compiling Markdown BlockMarkup.swift
[3/65] Compiling Markdown InlineContainer.swift
[4/65] Compiling Markdown InlineMarkup.swift
[5/65] Compiling Markdown ListItemContainer.swift
[6/65] Compiling Markdown AtomicCounter.swift
[7/65] Compiling Markdown CharacterExtensions.swift
[8/65] Compiling Markdown CollectionExtensions.swift
[9/65] Compiling Markdown DoxygenParameter.swift
[10/65] Compiling Markdown DoxygenReturns.swift
[11/65] Compiling Markdown ListItem.swift
[12/65] Compiling Markdown OrderedList.swift
[13/65] Compiling Markdown UnorderedList.swift
[14/65] Compiling Markdown Paragraph.swift
[15/65] Compiling Markdown CodeBlock.swift
[16/71] Compiling Markdown HTMLBlock.swift
[17/71] Compiling Markdown Heading.swift
[18/71] Compiling Markdown ThematicBreak.swift
[19/71] Compiling Markdown Table.swift
[20/71] Compiling Markdown TableBody.swift
[21/71] Compiling Markdown TableCell.swift
[22/71] Compiling Markdown TableCellContainer.swift
[23/71] Compiling Markdown ParseOptions.swift
[24/71] Compiling Markdown RangeAdjuster.swift
[25/71] Compiling Markdown RangerTracker.swift
[26/71] Compiling Markdown MarkupRewriter.swift
[27/71] Compiling Markdown BasicBlockContainer.swift
[28/71] Compiling Markdown BasicInlineContainer.swift
[29/71] Compiling Markdown BlockContainer.swift
[30/71] Compiling Markdown Link.swift
[31/71] Compiling Markdown Strikethrough.swift
[32/71] Compiling Markdown Strong.swift
[33/71] Compiling Markdown CustomInline.swift
[34/71] Compiling Markdown InlineCode.swift
[35/71] Compiling Markdown InlineHTML.swift
[36/71] Compiling Markdown LineBreak.swift
[37/71] Compiling Markdown TableHead.swift
[38/71] Compiling Markdown TableRow.swift
[39/71] Compiling Markdown Replacement.swift
[40/71] Compiling Markdown SourceLocation.swift
[41/71] Compiling Markdown Emphasis.swift
[42/71] Compiling Markdown Image.swift
[43/71] Compiling Markdown InlineAttributes.swift
[44/71] Emitting module Markdown
[45/71] Compiling Markdown PlainTextConvertibleMarkup.swift
[46/71] Compiling Markdown RawMarkup.swift
[47/71] Compiling Markdown BlockDirective.swift
[48/71] Compiling Markdown BlockQuote.swift
[49/71] Compiling Markdown CustomBlock.swift
[50/71] Compiling Markdown DoxygenDiscussion.swift
[51/71] Compiling Markdown DoxygenNote.swift
[52/71] Compiling Markdown ChildIndexPath.swift
[53/71] Compiling Markdown DirectiveArgument.swift
[54/71] Compiling Markdown Document.swift
[55/71] Compiling Markdown LiteralMarkup.swift
[56/71] Compiling Markdown Markup.swift
[57/71] Compiling Markdown MarkupChildren.swift
[58/71] Compiling Markdown MarkupData.swift
[59/71] Compiling Markdown StringExtensions.swift
[60/71] Compiling Markdown MarkupVisitor.swift
[61/71] Compiling Markdown MarkupWalker.swift
[62/71] Compiling Markdown HTMLFormatter.swift
[63/71] Compiling Markdown MarkupFormatter.swift
[64/71] Compiling Markdown MarkupTreeDumper.swift
[65/71] Compiling Markdown SoftBreak.swift
[66/71] Compiling Markdown SymbolLink.swift
[67/71] Compiling Markdown Text.swift
[68/71] Compiling Markdown Aside.swift
[69/71] Compiling Markdown BlockDirectiveParser.swift
[70/71] Compiling Markdown CommonMarkConverter.swift
[71/71] Compiling Markdown LazySplitLines.swift
Build of target: 'Markdown' complete! (2.01s)
    3320
21	/Users/admin/builder/spi-builder-workspace/.docs/swiftlang/swift-markdown/0.6.0
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/swiftlang/swift-markdown/0.6.0
File count: 3320
Doc size:   21.0MB
Preparing doc bundle ...
Uploading prod-swiftlang-swift-markdown-0.6.0-0eb4edbc.zip to s3://spi-docs-inbox/prod-swiftlang-swift-markdown-0.6.0-0eb4edbc.zip
Copying... [10%]
Copying... [21%]
Copying... [31%]
Copying... [40%]
Copying... [50%]
Copying... [61%]
Copying... [71%]
Copying... [80%]
Copying... [91%]
Copying... [100%]
Done.