Build Information
Successful build of swift-markdown, reference 0.3.0 (83188d
), with Swift 6.1 for macOS (SPM) on 28 Apr 2025 06:14:51 UTC.
Swift 6 data race errors: 31
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: add '@MainActor' to make static property 'parseSymbolLinks' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
26 | public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
| |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'disableSmartOpts' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/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 collection of preconfigured aside kinds.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:20:23: warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
18 |
19 | /// Enable block directive syntax.
20 | public static let parseBlockDirectives = ParseOptions(rawValue: 1 << 0)
| |- warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseBlockDirectives' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:23:23: warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
23 | public static let parseSymbolLinks = ParseOptions(rawValue: 1 << 1)
| |- warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseSymbolLinks' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
26 | public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
| |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'disableSmartOpts' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/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 collection of preconfigured aside kinds.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:20:23: warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
18 |
19 | /// Enable block directive syntax.
20 | public static let parseBlockDirectives = ParseOptions(rawValue: 1 << 0)
| |- warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseBlockDirectives' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:23:23: warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
23 | public static let parseSymbolLinks = ParseOptions(rawValue: 1 << 1)
| |- warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseSymbolLinks' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
26 | public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
| |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'disableSmartOpts' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/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 collection of preconfigured aside kinds.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:20:23: warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
18 |
19 | /// Enable block directive syntax.
20 | public static let parseBlockDirectives = ParseOptions(rawValue: 1 << 0)
| |- warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseBlockDirectives' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:23:23: warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
23 | public static let parseSymbolLinks = ParseOptions(rawValue: 1 << 1)
| |- warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseSymbolLinks' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
26 | public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
| |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'disableSmartOpts' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
[146/150] 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 collection of preconfigured aside kinds.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:20:23: warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
18 |
19 | /// Enable block directive syntax.
20 | public static let parseBlockDirectives = ParseOptions(rawValue: 1 << 0)
| |- warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseBlockDirectives' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:23:23: warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
23 | public static let parseSymbolLinks = ParseOptions(rawValue: 1 << 1)
| |- warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseSymbolLinks' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
26 | public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
| |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'disableSmartOpts' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
[147/150] Compiling Markdown ParseOptions.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 collection of preconfigured aside kinds.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:20:23: warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
18 |
19 | /// Enable block directive syntax.
20 | public static let parseBlockDirectives = ParseOptions(rawValue: 1 << 0)
| |- warning: static property 'parseBlockDirectives' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseBlockDirectives' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:23:23: warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
23 | public static let parseSymbolLinks = ParseOptions(rawValue: 1 << 1)
| |- warning: static property 'parseSymbolLinks' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'parseSymbolLinks' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:26:23: warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
26 | public static let disableSmartOpts = ParseOptions(rawValue: 1 << 2)
| |- warning: static property 'disableSmartOpts' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'disableSmartOpts' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
[148/154] Compiling markdown_tool main.swift
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/main.swift:27:16: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
25 | }
26 |
27 | static let configuration = CommandConfiguration(commandName: "markdown", shouldDisplay: false, subcommands: [
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
28 | DumpTree.self,
29 | Format.self,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/main.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
9 | */
10 |
11 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
12 | import Foundation
13 | import Markdown
:
25 | }
26 |
27 | static let configuration = CommandConfiguration(commandName: "markdown", shouldDisplay: false, subcommands: [
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | DumpTree.self,
29 | Format.self,
[149/154] Emitting module markdown_tool
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/main.swift:27:16: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
25 | }
26 |
27 | static let configuration = CommandConfiguration(commandName: "markdown", shouldDisplay: false, subcommands: [
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
28 | DumpTree.self,
29 | Format.self,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/main.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
9 | */
10 |
11 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
12 | import Foundation
13 | import Markdown
:
25 | }
26 |
27 | static let configuration = CommandConfiguration(commandName: "markdown", shouldDisplay: false, subcommands: [
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | DumpTree.self,
29 | Format.self,
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/DumpTreeCommand.swift:17:20: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// A command to dump the parsed input's debug tree representation.
16 | struct DumpTree: ParsableCommand {
17 | static let configuration = CommandConfiguration(commandName: "dump-tree", abstract: "Dump the parsed standard input as a tree representation for debugging")
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | @Argument(help: "Optional input file path of a Markdown file to format; default: standard input")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/DumpTreeCommand.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
9 | */
10 |
11 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
12 | import Markdown
13 |
:
15 | /// A command to dump the parsed input's debug tree representation.
16 | struct DumpTree: ParsableCommand {
17 | static let configuration = CommandConfiguration(commandName: "dump-tree", abstract: "Dump the parsed standard input as a tree representation for debugging")
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | @Argument(help: "Optional input file path of a Markdown file to format; default: standard input")
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:49:1: warning: extension declares a conformance of imported type 'UnorderedListMarker' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
47 | }
48 |
49 | extension MarkupFormatter.Options.UnorderedListMarker: ExpressibleByArgument {}
| |- warning: extension declares a conformance of imported type 'UnorderedListMarker' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
50 | extension MarkupFormatter.Options.UseCodeFence: ExpressibleByArgument {}
51 | extension MarkupFormatter.Options.ThematicBreakCharacter: ExpressibleByArgument {}
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:50:1: warning: extension declares a conformance of imported type 'UseCodeFence' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
48 |
49 | extension MarkupFormatter.Options.UnorderedListMarker: ExpressibleByArgument {}
50 | extension MarkupFormatter.Options.UseCodeFence: ExpressibleByArgument {}
| |- warning: extension declares a conformance of imported type 'UseCodeFence' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
51 | extension MarkupFormatter.Options.ThematicBreakCharacter: ExpressibleByArgument {}
52 | extension MarkupFormatter.Options.EmphasisMarker: ExpressibleByArgument {}
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:51:1: warning: extension declares a conformance of imported type 'ThematicBreakCharacter' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
49 | extension MarkupFormatter.Options.UnorderedListMarker: ExpressibleByArgument {}
50 | extension MarkupFormatter.Options.UseCodeFence: ExpressibleByArgument {}
51 | extension MarkupFormatter.Options.ThematicBreakCharacter: ExpressibleByArgument {}
| |- warning: extension declares a conformance of imported type 'ThematicBreakCharacter' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
52 | extension MarkupFormatter.Options.EmphasisMarker: ExpressibleByArgument {}
53 | extension MarkupFormatter.Options.PreferredHeadingStyle: ExpressibleByArgument {}
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:52:1: warning: extension declares a conformance of imported type 'EmphasisMarker' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
50 | extension MarkupFormatter.Options.UseCodeFence: ExpressibleByArgument {}
51 | extension MarkupFormatter.Options.ThematicBreakCharacter: ExpressibleByArgument {}
52 | extension MarkupFormatter.Options.EmphasisMarker: ExpressibleByArgument {}
| |- warning: extension declares a conformance of imported type 'EmphasisMarker' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
53 | extension MarkupFormatter.Options.PreferredHeadingStyle: ExpressibleByArgument {}
54 | extension MarkupFormatter.Options.PreferredLineLimit.SplittingElement: ExpressibleByArgument {}
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:53:1: warning: extension declares a conformance of imported type 'PreferredHeadingStyle' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
51 | extension MarkupFormatter.Options.ThematicBreakCharacter: ExpressibleByArgument {}
52 | extension MarkupFormatter.Options.EmphasisMarker: ExpressibleByArgument {}
53 | extension MarkupFormatter.Options.PreferredHeadingStyle: ExpressibleByArgument {}
| |- warning: extension declares a conformance of imported type 'PreferredHeadingStyle' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
54 | extension MarkupFormatter.Options.PreferredLineLimit.SplittingElement: ExpressibleByArgument {}
55 |
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:54:1: warning: extension declares a conformance of imported type 'SplittingElement' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
52 | extension MarkupFormatter.Options.EmphasisMarker: ExpressibleByArgument {}
53 | extension MarkupFormatter.Options.PreferredHeadingStyle: ExpressibleByArgument {}
54 | extension MarkupFormatter.Options.PreferredLineLimit.SplittingElement: ExpressibleByArgument {}
| |- warning: extension declares a conformance of imported type 'SplittingElement' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
55 |
56 | extension MarkdownCommand {
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:73:20: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
71 | }
72 | }
73 | static let configuration = CommandConfiguration(commandName: "format", abstract: "Format markdown on standard input to standard output")
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
74 |
75 | @Option(help: "Ordered list start numeral")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
9 | */
10 |
11 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
12 | import Foundation
13 | import Markdown
:
71 | }
72 | }
73 | static let configuration = CommandConfiguration(commandName: "format", abstract: "Format markdown on standard input to standard output")
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 |
75 | @Option(help: "Ordered list start numeral")
[150/154] Compiling markdown_tool FormatCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:49:1: warning: extension declares a conformance of imported type 'UnorderedListMarker' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
47 | }
48 |
49 | extension MarkupFormatter.Options.UnorderedListMarker: ExpressibleByArgument {}
| |- warning: extension declares a conformance of imported type 'UnorderedListMarker' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
50 | extension MarkupFormatter.Options.UseCodeFence: ExpressibleByArgument {}
51 | extension MarkupFormatter.Options.ThematicBreakCharacter: ExpressibleByArgument {}
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:50:1: warning: extension declares a conformance of imported type 'UseCodeFence' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
48 |
49 | extension MarkupFormatter.Options.UnorderedListMarker: ExpressibleByArgument {}
50 | extension MarkupFormatter.Options.UseCodeFence: ExpressibleByArgument {}
| |- warning: extension declares a conformance of imported type 'UseCodeFence' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
51 | extension MarkupFormatter.Options.ThematicBreakCharacter: ExpressibleByArgument {}
52 | extension MarkupFormatter.Options.EmphasisMarker: ExpressibleByArgument {}
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:51:1: warning: extension declares a conformance of imported type 'ThematicBreakCharacter' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
49 | extension MarkupFormatter.Options.UnorderedListMarker: ExpressibleByArgument {}
50 | extension MarkupFormatter.Options.UseCodeFence: ExpressibleByArgument {}
51 | extension MarkupFormatter.Options.ThematicBreakCharacter: ExpressibleByArgument {}
| |- warning: extension declares a conformance of imported type 'ThematicBreakCharacter' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
52 | extension MarkupFormatter.Options.EmphasisMarker: ExpressibleByArgument {}
53 | extension MarkupFormatter.Options.PreferredHeadingStyle: ExpressibleByArgument {}
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:52:1: warning: extension declares a conformance of imported type 'EmphasisMarker' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
50 | extension MarkupFormatter.Options.UseCodeFence: ExpressibleByArgument {}
51 | extension MarkupFormatter.Options.ThematicBreakCharacter: ExpressibleByArgument {}
52 | extension MarkupFormatter.Options.EmphasisMarker: ExpressibleByArgument {}
| |- warning: extension declares a conformance of imported type 'EmphasisMarker' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
53 | extension MarkupFormatter.Options.PreferredHeadingStyle: ExpressibleByArgument {}
54 | extension MarkupFormatter.Options.PreferredLineLimit.SplittingElement: ExpressibleByArgument {}
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:53:1: warning: extension declares a conformance of imported type 'PreferredHeadingStyle' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
51 | extension MarkupFormatter.Options.ThematicBreakCharacter: ExpressibleByArgument {}
52 | extension MarkupFormatter.Options.EmphasisMarker: ExpressibleByArgument {}
53 | extension MarkupFormatter.Options.PreferredHeadingStyle: ExpressibleByArgument {}
| |- warning: extension declares a conformance of imported type 'PreferredHeadingStyle' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
54 | extension MarkupFormatter.Options.PreferredLineLimit.SplittingElement: ExpressibleByArgument {}
55 |
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:54:1: warning: extension declares a conformance of imported type 'SplittingElement' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
52 | extension MarkupFormatter.Options.EmphasisMarker: ExpressibleByArgument {}
53 | extension MarkupFormatter.Options.PreferredHeadingStyle: ExpressibleByArgument {}
54 | extension MarkupFormatter.Options.PreferredLineLimit.SplittingElement: ExpressibleByArgument {}
| |- warning: extension declares a conformance of imported type 'SplittingElement' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Markdown' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
55 |
56 | extension MarkdownCommand {
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:73:20: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
71 | }
72 | }
73 | static let configuration = CommandConfiguration(commandName: "format", abstract: "Format markdown on standard input to standard output")
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
74 |
75 | @Option(help: "Ordered list start numeral")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/FormatCommand.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
9 | */
10 |
11 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
12 | import Foundation
13 | import Markdown
:
71 | }
72 | }
73 | static let configuration = CommandConfiguration(commandName: "format", abstract: "Format markdown on standard input to standard output")
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 |
75 | @Option(help: "Ordered list start numeral")
[151/154] Compiling markdown_tool DumpTreeCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/DumpTreeCommand.swift:17:20: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// A command to dump the parsed input's debug tree representation.
16 | struct DumpTree: ParsableCommand {
17 | static let configuration = CommandConfiguration(commandName: "dump-tree", abstract: "Dump the parsed standard input as a tree representation for debugging")
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | @Argument(help: "Optional input file path of a Markdown file to format; default: standard input")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/markdown-tool/Commands/DumpTreeCommand.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
9 | */
10 |
11 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
12 | import Markdown
13 |
:
15 | /// A command to dump the parsed input's debug tree representation.
16 | struct DumpTree: ParsableCommand {
17 | static let configuration = CommandConfiguration(commandName: "dump-tree", abstract: "Dump the parsed standard input as a tree representation for debugging")
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | @Argument(help: "Optional input file path of a Markdown file to format; default: standard input")
[151/154] Write Objects.LinkFileList
[152/154] Linking markdown-tool
[153/154] Applying markdown-tool
Build complete! (17.31s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-cmark",
"requirement" : {
"range" : [
{
"lower_bound" : "0.2.0",
"upper_bound" : "0.3.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/shaps80/swift-cmark.git"
},
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.1",
"upper_bound" : "1.1.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
},
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.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" : "markdown-tool",
"targets" : [
"markdown-tool"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "markdown_tool",
"module_type" : "SwiftTarget",
"name" : "markdown-tool",
"path" : "Sources/markdown-tool",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"markdown-tool"
],
"sources" : [
"Commands/DumpTreeCommand.swift",
"Commands/FormatCommand.swift",
"main.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "executable"
},
{
"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/SourceLoacationTests.swift",
"Inline Nodes/ImageTests.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/SourceURLTests.swift",
"Performance/EditPerformanceTests.swift",
"Performance/MarkupChildrenPerformanceTests.swift",
"Structural Restrictions/BasicBlockContainerTests.swift",
"Structural Restrictions/BasicInlineContainerTests.swift",
"Structural Restrictions/ListItemContainerTests.swift",
"Utility/AssertElementDidntChange.swift",
"Visitors/MarkupFormatterTests.swift",
"Visitors/MarkupRewriterTests.swift",
"Visitors/MarkupTreeDumperTests.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",
"markdown-tool"
],
"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/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/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/MarkupFormatter.swift",
"Walker/Walkers/MarkupTreeDumper.swift"
],
"target_dependencies" : [
"CAtomic"
],
"type" : "library"
},
{
"c99name" : "CAtomic",
"module_type" : "ClangTarget",
"name" : "CAtomic",
"path" : "Sources/CAtomic",
"product_memberships" : [
"Markdown",
"markdown-tool"
],
"sources" : [
"CAtomic.c"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.