Build Information
Successful build of swift-markdown, reference main (528d49
), with Swift 6.0 for macOS (SPM) on 8 Nov 2024 16:34:20 UTC.
Swift 6 data race errors: 33
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Build Log
| |- warning: static property 'important' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'important' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | /// An "experiment" aside.
/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: annotate 'experiment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// A "warning" aside.
/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: annotate 'warning' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | /// An "attention" aside.
/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: annotate 'attention' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | /// An "author" aside.
/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: annotate 'author' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 | /// An "authors" aside.
/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: annotate 'authors' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | /// A "bug" aside.
/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: annotate 'bug' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | /// A "complexity" aside.
/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: annotate 'complexity' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 |
56 | /// A "copyright" aside.
/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: annotate 'copyright' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |
59 | /// A "date" aside.
/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: annotate 'date' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// An "invariant" aside.
/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: annotate 'invariant' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | /// A "mutatingVariant" aside.
/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: annotate 'mutatingVariant' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |
68 | /// A "nonMutatingVariant" aside.
/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: annotate 'nonMutatingVariant' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 |
71 | /// A "postcondition" aside.
/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: annotate 'postcondition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 |
74 | /// A "precondition" aside.
/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: annotate 'precondition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 |
77 | /// A "remark" aside.
/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: annotate 'remark' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 |
80 | /// A "requires" aside.
/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: annotate 'requires' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | /// A "since" aside.
/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: annotate 'since' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 |
86 | /// A "todo" aside.
/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: annotate 'todo' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 |
89 | /// A "version" aside.
/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: annotate 'version' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | /// A "throws" aside.
/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: annotate 'throws' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 |
95 | /// A "seeAlso" aside.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:96:27: warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
94 |
95 | /// A "seeAlso" aside.
96 | public static let seeAlso = Kind(rawValue: "SeeAlso")!
| |- warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'seeAlso' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 |
98 | /// A collection of preconfigured aside kinds.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:29:23: warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
27 |
28 | /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
29 | public static let parseMinimalDoxygen = ParseOptions(rawValue: 1 << 3)
| |- warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'parseMinimalDoxygen' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
/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: annotate 'parseSymbolLinks' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/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: annotate 'disableSmartOpts' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
/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: annotate 'parseBlockDirectives' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
[165/204] Compiling Markdown CommonMarkConverter.swift
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:27:27: warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
| |- warning: static property 'note' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'note' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// A "tip" aside.
/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: annotate 'tip' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// An "important" aside.
/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: annotate 'important' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | /// An "experiment" aside.
/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: annotate 'experiment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// A "warning" aside.
/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: annotate 'warning' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | /// An "attention" aside.
/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: annotate 'attention' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | /// An "author" aside.
/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: annotate 'author' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 | /// An "authors" aside.
/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: annotate 'authors' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | /// A "bug" aside.
/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: annotate 'bug' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | /// A "complexity" aside.
/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: annotate 'complexity' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 |
56 | /// A "copyright" aside.
/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: annotate 'copyright' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |
59 | /// A "date" aside.
/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: annotate 'date' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// An "invariant" aside.
/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: annotate 'invariant' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | /// A "mutatingVariant" aside.
/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: annotate 'mutatingVariant' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |
68 | /// A "nonMutatingVariant" aside.
/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: annotate 'nonMutatingVariant' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 |
71 | /// A "postcondition" aside.
/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: annotate 'postcondition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 |
74 | /// A "precondition" aside.
/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: annotate 'precondition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 |
77 | /// A "remark" aside.
/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: annotate 'remark' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 |
80 | /// A "requires" aside.
/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: annotate 'requires' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | /// A "since" aside.
/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: annotate 'since' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 |
86 | /// A "todo" aside.
/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: annotate 'todo' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 |
89 | /// A "version" aside.
/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: annotate 'version' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | /// A "throws" aside.
/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: annotate 'throws' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 |
95 | /// A "seeAlso" aside.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:96:27: warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
94 |
95 | /// A "seeAlso" aside.
96 | public static let seeAlso = Kind(rawValue: "SeeAlso")!
| |- warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'seeAlso' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 |
98 | /// A collection of preconfigured aside kinds.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:29:23: warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
27 |
28 | /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
29 | public static let parseMinimalDoxygen = ParseOptions(rawValue: 1 << 3)
| |- warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'parseMinimalDoxygen' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
/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: annotate 'parseSymbolLinks' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/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: annotate 'disableSmartOpts' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
/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: annotate 'parseBlockDirectives' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
[166/204] 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: annotate 'note' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// A "tip" aside.
/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: annotate 'tip' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// An "important" aside.
/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: annotate 'important' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | /// An "experiment" aside.
/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: annotate 'experiment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// A "warning" aside.
/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: annotate 'warning' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | /// An "attention" aside.
/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: annotate 'attention' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | /// An "author" aside.
/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: annotate 'author' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 | /// An "authors" aside.
/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: annotate 'authors' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | /// A "bug" aside.
/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: annotate 'bug' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | /// A "complexity" aside.
/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: annotate 'complexity' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 |
56 | /// A "copyright" aside.
/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: annotate 'copyright' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |
59 | /// A "date" aside.
/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: annotate 'date' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// An "invariant" aside.
/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: annotate 'invariant' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | /// A "mutatingVariant" aside.
/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: annotate 'mutatingVariant' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |
68 | /// A "nonMutatingVariant" aside.
/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: annotate 'nonMutatingVariant' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 |
71 | /// A "postcondition" aside.
/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: annotate 'postcondition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 |
74 | /// A "precondition" aside.
/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: annotate 'precondition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 |
77 | /// A "remark" aside.
/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: annotate 'remark' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 |
80 | /// A "requires" aside.
/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: annotate 'requires' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | /// A "since" aside.
/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: annotate 'since' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 |
86 | /// A "todo" aside.
/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: annotate 'todo' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 |
89 | /// A "version" aside.
/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: annotate 'version' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | /// A "throws" aside.
/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: annotate 'throws' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 |
95 | /// A "seeAlso" aside.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:96:27: warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
94 |
95 | /// A "seeAlso" aside.
96 | public static let seeAlso = Kind(rawValue: "SeeAlso")!
| |- warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'seeAlso' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 |
98 | /// A collection of preconfigured aside kinds.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:29:23: warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
27 |
28 | /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
29 | public static let parseMinimalDoxygen = ParseOptions(rawValue: 1 << 3)
| |- warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'parseMinimalDoxygen' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
/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: annotate 'parseSymbolLinks' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/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: annotate 'disableSmartOpts' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
/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: annotate 'parseBlockDirectives' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
[167/204] 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: annotate 'note' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// A "tip" aside.
/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: annotate 'tip' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | /// An "important" aside.
/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: annotate 'important' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | /// An "experiment" aside.
/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: annotate 'experiment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | /// A "warning" aside.
/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: annotate 'warning' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | /// An "attention" aside.
/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: annotate 'attention' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | /// An "author" aside.
/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: annotate 'author' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 | /// An "authors" aside.
/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: annotate 'authors' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | /// A "bug" aside.
/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: annotate 'bug' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | /// A "complexity" aside.
/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: annotate 'complexity' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 |
56 | /// A "copyright" aside.
/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: annotate 'copyright' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |
59 | /// A "date" aside.
/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: annotate 'date' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// An "invariant" aside.
/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: annotate 'invariant' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | /// A "mutatingVariant" aside.
/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: annotate 'mutatingVariant' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 |
68 | /// A "nonMutatingVariant" aside.
/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: annotate 'nonMutatingVariant' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 |
71 | /// A "postcondition" aside.
/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: annotate 'postcondition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 |
74 | /// A "precondition" aside.
/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: annotate 'precondition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 |
77 | /// A "remark" aside.
/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: annotate 'remark' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 |
80 | /// A "requires" aside.
/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: annotate 'requires' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | /// A "since" aside.
/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: annotate 'since' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 |
86 | /// A "todo" aside.
/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: annotate 'todo' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 |
89 | /// A "version" aside.
/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: annotate 'version' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | /// A "throws" aside.
/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: annotate 'throws' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 |
95 | /// A "seeAlso" aside.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Interpretive Nodes/Aside.swift:96:27: warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public struct Aside {
24 | /// Describes the different kinds of aside.
25 | public struct Kind: RawRepresentable, CaseIterable, Equatable {
| `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
26 | /// A "note" aside.
27 | public static let note = Kind(rawValue: "Note")!
:
94 |
95 | /// A "seeAlso" aside.
96 | public static let seeAlso = Kind(rawValue: "SeeAlso")!
| |- warning: static property 'seeAlso' is not concurrency-safe because non-'Sendable' type 'Aside.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'seeAlso' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 |
98 | /// A collection of preconfigured aside kinds.
/Users/admin/builder/spi-builder-workspace/Sources/Markdown/Parser/ParseOptions.swift:29:23: warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// Options for parsing Markdown.
12 | public struct ParseOptions: OptionSet {
| `- note: consider making struct 'ParseOptions' conform to the 'Sendable' protocol
13 | public var rawValue: UInt
14 |
:
27 |
28 | /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
29 | public static let parseMinimalDoxygen = ParseOptions(rawValue: 1 << 3)
| |- warning: static property 'parseMinimalDoxygen' is not concurrency-safe because non-'Sendable' type 'ParseOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'parseMinimalDoxygen' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
/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: annotate 'parseSymbolLinks' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | /// Disable converting straight quotes to curly, --- to em dashes, -- to en dashes during parsing
/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: annotate 'disableSmartOpts' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | /// Parse a limited set of Doxygen commands. Requires ``parseBlockDirectives``.
/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: annotate 'parseBlockDirectives' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /// Enable interpretation of symbol links from inline code spans surrounded by two backticks.
[168/226] Compiling UnorderedListMarker UnorderedListMarker.swift
[169/226] Emitting module UnorderedListMarker
[170/226] Compiling ThematicBreakCharacter ThematicBreakCharacter.swift
[171/228] Compiling ParseDocumentString ParseDocumentString.swift
[172/228] Emitting module ParseDocumentString
[173/228] Emitting module ThematicBreakCharacter
[174/228] Emitting module UseCodeFence
[175/228] Compiling UseCodeFence UseCodeFence.swift
[176/228] Compiling PreferredHeadingStyle PreferredHeadingStyle.swift
[177/228] Emitting module PreferredHeadingStyle
[178/228] Emitting module ParseDocumentFile
[179/228] Compiling ParseDocumentFile ParseDocumentFile.swift
[180/228] Compiling RemoveElementKind RemoveElementKind.swift
[181/228] Emitting module RemoveElementKind
[182/240] Compiling ReplaceText ReplaceText.swift
[183/240] Emitting module ReplaceText
[184/240] Emitting module XMLConverter
[185/240] Compiling XMLConverter XMLConverter.swift
[185/240] Write Objects.LinkFileList
[188/240] Emitting module OrderedListNumerals
[189/240] Compiling OrderedListNumerals OrderedListNumerals.swift
[190/242] Emitting module MaximumWidth
[191/242] Compiling MaximumWidth MaximumWidth.swift
[192/242] Compiling EmphasisMarkers EmphasisMarkers.swift
[193/242] Emitting module EmphasisMarkers
[194/242] Emitting module CustomLinePrefix
[195/242] Compiling CustomLinePrefix CustomLinePrefix.swift
[196/242] Emitting module DefaultFormatting
[197/242] Compiling DefaultFormatting DefaultFormatting.swift
[197/242] Write Objects.LinkFileList
[204/242] Emitting module CondenseAutolinks
[205/242] Compiling CondenseAutolinks CondenseAutolinks.swift
[206/242] Emitting module LinkCollector
[207/242] Compiling LinkCollector LinkCollector.swift
[208/242] 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: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | @Argument(help: "Optional input file path of a Markdown file to format; default: standard input")
[209/242] 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: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | 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: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 |
75 | @Option(help: "Ordered list start numeral")
[210/242] 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: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | DumpTree.self,
29 | Format.self,
[211/242] 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: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 |
75 | @Option(help: "Ordered list start numeral")
[212/242] Emitting module ChildThrough
[213/242] Compiling ChildThrough ChildThrough.swift
[213/242] Write Objects.LinkFileList
[215/242] Linking UseCodeFence
[216/242] Write Objects.LinkFileList
[218/242] Linking XMLConverter
[219/242] Linking ThematicBreakCharacter
[220/242] Write Objects.LinkFileList
[222/242] Linking ReplaceText
[223/242] Linking RemoveElementKind
[224/242] Write Objects.LinkFileList
[226/242] Linking UnorderedListMarker
[227/242] Linking PreferredHeadingStyle
[227/242] Write Objects.LinkFileList
[230/242] Linking ParseDocumentString
[231/242] Linking ParseDocumentFile
[232/242] Linking markdown-tool
[233/242] Applying markdown-tool
[234/242] Linking MaximumWidth
[235/242] Linking OrderedListNumerals
[236/242] Linking EmphasisMarkers
[237/242] Linking LinkCollector
[238/242] Linking DefaultFormatting
[239/242] Linking CondenseAutolinks
[240/242] Linking CustomLinePrefix
[241/242] Linking ChildThrough
Build complete! (29.36s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-cmark",
"requirement" : {
"branch" : [
"gfm"
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/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.1.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
}
],
"manifest_display_name" : "swift-markdown",
"name" : "swift-markdown",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Markdown",
"targets" : [
"Markdown"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "markdown-tool",
"targets" : [
"markdown-tool"
],
"type" : {
"executable" : null
}
},
{
"name" : "XMLConverter",
"targets" : [
"XMLConverter"
],
"type" : {
"snippet" : null
}
},
{
"name" : "LinkCollector",
"targets" : [
"LinkCollector"
],
"type" : {
"snippet" : null
}
},
{
"name" : "PreferredHeadingStyle",
"targets" : [
"PreferredHeadingStyle"
],
"type" : {
"snippet" : null
}
},
{
"name" : "UseCodeFence",
"targets" : [
"UseCodeFence"
],
"type" : {
"snippet" : null
}
},
{
"name" : "CondenseAutolinks",
"targets" : [
"CondenseAutolinks"
],
"type" : {
"snippet" : null
}
},
{
"name" : "DefaultFormatting",
"targets" : [
"DefaultFormatting"
],
"type" : {
"snippet" : null
}
},
{
"name" : "CustomLinePrefix",
"targets" : [
"CustomLinePrefix"
],
"type" : {
"snippet" : null
}
},
{
"name" : "UnorderedListMarker",
"targets" : [
"UnorderedListMarker"
],
"type" : {
"snippet" : null
}
},
{
"name" : "OrderedListNumerals",
"targets" : [
"OrderedListNumerals"
],
"type" : {
"snippet" : null
}
},
{
"name" : "MaximumWidth",
"targets" : [
"MaximumWidth"
],
"type" : {
"snippet" : null
}
},
{
"name" : "ThematicBreakCharacter",
"targets" : [
"ThematicBreakCharacter"
],
"type" : {
"snippet" : null
}
},
{
"name" : "EmphasisMarkers",
"targets" : [
"EmphasisMarkers"
],
"type" : {
"snippet" : null
}
},
{
"name" : "ChildThrough",
"targets" : [
"ChildThrough"
],
"type" : {
"snippet" : null
}
},
{
"name" : "ParseDocumentString",
"targets" : [
"ParseDocumentString"
],
"type" : {
"snippet" : null
}
},
{
"name" : "ParseDocumentFile",
"targets" : [
"ParseDocumentFile"
],
"type" : {
"snippet" : null
}
},
{
"name" : "RemoveElementKind",
"targets" : [
"RemoveElementKind"
],
"type" : {
"snippet" : null
}
},
{
"name" : "ReplaceText",
"targets" : [
"ReplaceText"
],
"type" : {
"snippet" : null
}
}
],
"targets" : [
{
"c99name" : "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/SourceLocationTests.swift",
"Inline Nodes/ImageTests.swift",
"Inline Nodes/InlineAttributesTests.swift",
"Inline Nodes/InlineCodeTests.swift",
"Inline Nodes/InlineHTMLTests.swift",
"Inline Nodes/LineBreakTests.swift",
"Inline Nodes/LinkTests.swift",
"Inline Nodes/SoftBreakTests.swift",
"Inline Nodes/SymbolLinkTests.swift",
"Inline Nodes/TextTests.swift",
"Interpretive Nodes/AsideTests.swift",
"Parsing/BacktickTests.swift",
"Parsing/BlockDirectiveParserTests.swift",
"Parsing/CommonMarkConverterTests.swift",
"Parsing/DoxygenCommandParserTests.swift",
"Parsing/SourceURLTests.swift",
"Performance/EditPerformanceTests.swift",
"Performance/MarkupChildrenPerformanceTests.swift",
"Structural Restrictions/BasicBlockContainerTests.swift",
"Structural Restrictions/BasicInlineContainerTests.swift",
"Structural Restrictions/ListItemContainerTests.swift",
"Utility/AssertElementDidntChange.swift",
"Visitors/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",
"XMLConverter",
"LinkCollector",
"PreferredHeadingStyle",
"UseCodeFence",
"CondenseAutolinks",
"DefaultFormatting",
"CustomLinePrefix",
"UnorderedListMarker",
"OrderedListNumerals",
"MaximumWidth",
"ThematicBreakCharacter",
"EmphasisMarkers",
"ChildThrough",
"ParseDocumentString",
"ParseDocumentFile",
"RemoveElementKind",
"ReplaceText"
],
"sources" : [
"Base/ChildIndexPath.swift",
"Base/DirectiveArgument.swift",
"Base/Document.swift",
"Base/LiteralMarkup.swift",
"Base/Markup.swift",
"Base/MarkupChildren.swift",
"Base/MarkupData.swift",
"Base/PlainTextConvertibleMarkup.swift",
"Base/RawMarkup.swift",
"Block Nodes/Block Container Blocks/BlockDirective.swift",
"Block Nodes/Block Container Blocks/BlockQuote.swift",
"Block Nodes/Block Container Blocks/CustomBlock.swift",
"Block Nodes/Block Container Blocks/Doxygen Commands/DoxygenParameter.swift",
"Block Nodes/Block Container Blocks/Doxygen Commands/DoxygenReturns.swift",
"Block Nodes/Block Container Blocks/ListItem.swift",
"Block Nodes/Block Container Blocks/OrderedList.swift",
"Block Nodes/Block Container Blocks/UnorderedList.swift",
"Block Nodes/Inline Container Blocks/Paragraph.swift",
"Block Nodes/Leaf Blocks/CodeBlock.swift",
"Block Nodes/Leaf Blocks/HTMLBlock.swift",
"Block Nodes/Leaf Blocks/Heading.swift",
"Block Nodes/Leaf Blocks/ThematicBreak.swift",
"Block Nodes/Tables/Table.swift",
"Block Nodes/Tables/TableBody.swift",
"Block Nodes/Tables/TableCell.swift",
"Block Nodes/Tables/TableCellContainer.swift",
"Block Nodes/Tables/TableHead.swift",
"Block Nodes/Tables/TableRow.swift",
"Infrastructure/Replacement.swift",
"Infrastructure/SourceLocation.swift",
"Inline Nodes/Inline Containers/Emphasis.swift",
"Inline Nodes/Inline Containers/Image.swift",
"Inline Nodes/Inline Containers/InlineAttributes.swift",
"Inline Nodes/Inline Containers/Link.swift",
"Inline Nodes/Inline Containers/Strikethrough.swift",
"Inline Nodes/Inline Containers/Strong.swift",
"Inline Nodes/Inline Leaves/CustomInline.swift",
"Inline Nodes/Inline Leaves/InlineCode.swift",
"Inline Nodes/Inline Leaves/InlineHTML.swift",
"Inline Nodes/Inline Leaves/LineBreak.swift",
"Inline Nodes/Inline Leaves/SoftBreak.swift",
"Inline Nodes/Inline Leaves/SymbolLink.swift",
"Inline Nodes/Inline Leaves/Text.swift",
"Interpretive Nodes/Aside.swift",
"Parser/BlockDirectiveParser.swift",
"Parser/CommonMarkConverter.swift",
"Parser/LazySplitLines.swift",
"Parser/ParseOptions.swift",
"Parser/RangeAdjuster.swift",
"Parser/RangerTracker.swift",
"Rewriter/MarkupRewriter.swift",
"Structural Restrictions/BasicBlockContainer.swift",
"Structural Restrictions/BasicInlineContainer.swift",
"Structural Restrictions/BlockContainer.swift",
"Structural Restrictions/BlockMarkup.swift",
"Structural Restrictions/InlineContainer.swift",
"Structural Restrictions/InlineMarkup.swift",
"Structural Restrictions/ListItemContainer.swift",
"Utility/AtomicCounter.swift",
"Utility/CharacterExtensions.swift",
"Utility/CollectionExtensions.swift",
"Utility/StringExtensions.swift",
"Visitor/MarkupVisitor.swift",
"Walker/MarkupWalker.swift",
"Walker/Walkers/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",
"XMLConverter",
"LinkCollector",
"PreferredHeadingStyle",
"UseCodeFence",
"CondenseAutolinks",
"DefaultFormatting",
"CustomLinePrefix",
"UnorderedListMarker",
"OrderedListNumerals",
"MaximumWidth",
"ThematicBreakCharacter",
"EmphasisMarkers",
"ChildThrough",
"ParseDocumentString",
"ParseDocumentFile",
"RemoveElementKind",
"ReplaceText"
],
"sources" : [
"CAtomic.c"
],
"type" : "library"
},
{
"c99name" : "XMLConverter",
"module_type" : "SwiftTarget",
"name" : "XMLConverter",
"path" : "Snippets/Visitors",
"product_memberships" : [
"XMLConverter"
],
"sources" : [
"XMLConverter.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "LinkCollector",
"module_type" : "SwiftTarget",
"name" : "LinkCollector",
"path" : "Snippets/Walkers",
"product_memberships" : [
"LinkCollector"
],
"sources" : [
"LinkCollector.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "PreferredHeadingStyle",
"module_type" : "SwiftTarget",
"name" : "PreferredHeadingStyle",
"path" : "Snippets/Formatting",
"product_memberships" : [
"PreferredHeadingStyle"
],
"sources" : [
"PreferredHeadingStyle.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "UseCodeFence",
"module_type" : "SwiftTarget",
"name" : "UseCodeFence",
"path" : "Snippets/Formatting",
"product_memberships" : [
"UseCodeFence"
],
"sources" : [
"UseCodeFence.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "CondenseAutolinks",
"module_type" : "SwiftTarget",
"name" : "CondenseAutolinks",
"path" : "Snippets/Formatting",
"product_memberships" : [
"CondenseAutolinks"
],
"sources" : [
"CondenseAutolinks.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "DefaultFormatting",
"module_type" : "SwiftTarget",
"name" : "DefaultFormatting",
"path" : "Snippets/Formatting",
"product_memberships" : [
"DefaultFormatting"
],
"sources" : [
"DefaultFormatting.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "CustomLinePrefix",
"module_type" : "SwiftTarget",
"name" : "CustomLinePrefix",
"path" : "Snippets/Formatting",
"product_memberships" : [
"CustomLinePrefix"
],
"sources" : [
"CustomLinePrefix.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "UnorderedListMarker",
"module_type" : "SwiftTarget",
"name" : "UnorderedListMarker",
"path" : "Snippets/Formatting",
"product_memberships" : [
"UnorderedListMarker"
],
"sources" : [
"UnorderedListMarker.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "OrderedListNumerals",
"module_type" : "SwiftTarget",
"name" : "OrderedListNumerals",
"path" : "Snippets/Formatting",
"product_memberships" : [
"OrderedListNumerals"
],
"sources" : [
"OrderedListNumerals.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "MaximumWidth",
"module_type" : "SwiftTarget",
"name" : "MaximumWidth",
"path" : "Snippets/Formatting",
"product_memberships" : [
"MaximumWidth"
],
"sources" : [
"MaximumWidth.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "ThematicBreakCharacter",
"module_type" : "SwiftTarget",
"name" : "ThematicBreakCharacter",
"path" : "Snippets/Formatting",
"product_memberships" : [
"ThematicBreakCharacter"
],
"sources" : [
"ThematicBreakCharacter.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "EmphasisMarkers",
"module_type" : "SwiftTarget",
"name" : "EmphasisMarkers",
"path" : "Snippets/Formatting",
"product_memberships" : [
"EmphasisMarkers"
],
"sources" : [
"EmphasisMarkers.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "ChildThrough",
"module_type" : "SwiftTarget",
"name" : "ChildThrough",
"path" : "Snippets/Querying",
"product_memberships" : [
"ChildThrough"
],
"sources" : [
"ChildThrough.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "ParseDocumentString",
"module_type" : "SwiftTarget",
"name" : "ParseDocumentString",
"path" : "Snippets/Parsing",
"product_memberships" : [
"ParseDocumentString"
],
"sources" : [
"ParseDocumentString.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "ParseDocumentFile",
"module_type" : "SwiftTarget",
"name" : "ParseDocumentFile",
"path" : "Snippets/Parsing",
"product_memberships" : [
"ParseDocumentFile"
],
"sources" : [
"ParseDocumentFile.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "RemoveElementKind",
"module_type" : "SwiftTarget",
"name" : "RemoveElementKind",
"path" : "Snippets/Rewriters",
"product_memberships" : [
"RemoveElementKind"
],
"sources" : [
"RemoveElementKind.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
},
{
"c99name" : "ReplaceText",
"module_type" : "SwiftTarget",
"name" : "ReplaceText",
"path" : "Snippets/Rewriters",
"product_memberships" : [
"ReplaceText"
],
"sources" : [
"ReplaceText.swift"
],
"target_dependencies" : [
"Markdown"
],
"type" : "snippet"
}
],
"tools_version" : "5.5"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/sdggiesbrecht/swift-markdown/main
Repository: SDGGiesbrecht/swift-markdown
Swift version used: 6.0
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.1.0"),
Target: Markdown
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
* branch 88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'Markdown'...
Finished extracting symbol information for 'Markdown'. (4.25s)
Building documentation for 'Markdown'...
warning: Parameter 'name' not found in initializer declaration
--> ../Block Nodes/Block Container Blocks/Doxygen Commands/DoxygenReturns.swift:45:9-45:69
43 | /// Create a new Doxygen parameter definition.
44 | ///
45 + /// - Parameter name: The name of the parameter being described.
| ╰─suggestion: Remove 'name' parameter documentation
46 | /// - Parameter children: Block child elements.
47 | init<Children: Sequence>(children: Children) where Children.Element == BlockMarkup {
warning: Parameter 'name' not found in initializer declaration
--> ../Block Nodes/Block Container Blocks/Doxygen Commands/DoxygenReturns.swift:53:9-53:69
51 | /// Create a new Doxygen parameter definition.
52 | ///
53 + /// - Parameter name: The name of the parameter being described.
| ╰─suggestion: Remove 'name' parameter documentation
54 | /// - Parameter children: Block child elements.
55 | init(children: BlockMarkup...) {
warning: Parameter 'head' not found in initializer declaration
--> ../Block Nodes/Tables/Table.swift:55:21-55:25
53 | /// - parameter columnAlignments: An optional list of alignments for each column,
54 | /// truncated or expanded with `nil` to fit the table's maximum column count.
55 + /// - parameter head: A ``Table/Head-swift.struct`` element serving as the table's head.
| ╰─suggestion: Replace 'head' with 'header'
56 | /// - parameter body: A ``Table/Body-swift.struct`` element serving as the table's body.
57 | init(columnAlignments: [ColumnAlignment?]? = nil,
warning: Parameter 'header' is missing documentation
--> ../Block Nodes/Tables/Table.swift:56:93-56:93
54 | /// truncated or expanded with `nil` to fit the table's maximum column count.
55 | /// - parameter head: A ``Table/Head-swift.struct`` element serving as the table's head.
56 + /// - parameter body: A ``Table/Body-swift.struct`` element serving as the table's body.
| ╰─suggestion: Document 'header' parameter
57 | init(columnAlignments: [ColumnAlignment?]? = nil,
58 | header: Head = Head(),
warning: 'Snippets' is ambiguous at '/Markdown'
--> Markdown.md:17:8-17:16
15 | A quick overview of examples showing tasks you can achieve with Swift Markdown.
16 |
17 + - <doc:Snippets>
| ├─suggestion: Insert 'anchor' for'Snippets'
| ╰─suggestion: Insert 'article' for'Snippets'
18 |
19 | ### Getting Started
warning: 'Infrastructure' is ambiguous at '/Markdown'
--> Markdown.md:44:8-44:22
42 | ### Infrastructure
43 |
44 + - <doc:Infrastructure>
| ├─suggestion: Insert 'anchor' for'Infrastructure'
| ╰─suggestion: Insert 'article' for'Infrastructure'
45 |
46 | ### Visit Markup
warning: 'DoxygenParam' doesn't exist at '/Markdown/DoxygenCommands'
--> Markdown/DoxygenCommands.md:47:5-47:17
45 | ### Commands
46 |
47 + - ``DoxygenParam``
48 | - ``DoxygenReturns``
49 |
warning: Parameter 'attribute' not found in instance method declaration
--> ../Visitor/MarkupVisitor.swift:273:17-273:26
271 | Visit an `InlineAttributes` element and return the result.
272 |
273 + - parameter attribute: An `InlineAttributes` element.
| ╰─suggestion: Replace 'attribute' with 'attributes'
274 | - returns: The result of the visit.
275 | */
warning: Parameter 'attributes' is missing documentation
--> ../Visitor/MarkupVisitor.swift:273:58-273:58
271 | Visit an `InlineAttributes` element and return the result.
272 |
273 + - parameter attribute: An `InlineAttributes` element.
| ╰─suggestion: Document 'attributes' parameter
274 | - returns: The result of the visit.
275 | */
warning: Parameter 'lineLimit' not found in initializer declaration
--> ../Walker/Walkers/MarkupFormatter.swift:270:15-270:24
268 | - condenseAutolinks: Print links whose link text and destination match as autolinks, e.g. `<https://swift.org>`.
269 | - preferredHeadingStyle: The preferred heading style.
270 + - lineLimit: The preferred maximum line length and method for splitting ``Text`` elements in an attempt to maintain that line length.
| ╰─suggestion: Replace 'lineLimit' with 'preferredLineLimit'
271 | - customLinePrefix: An addition prefix to print at the start of each line, useful for adding documentation comment markers.
272 | */
warning: Parameter 'preferredLineLimit' is missing documentation
--> ../Walker/Walkers/MarkupFormatter.swift:271:136-271:136
269 | - preferredHeadingStyle: The preferred heading style.
270 | - lineLimit: The preferred maximum line length and method for splitting ``Text`` elements in an attempt to maintain that line length.
271 + - customLinePrefix: An addition prefix to print at the start of each line, useful for adding documentation comment markers.
| ╰─suggestion: Document 'preferredLineLimit' parameter
272 | */
273 | public init(unorderedListMarker: UnorderedListMarker = .dash,
warning: Parameter 'doxygenCommandPrefix' is missing documentation
--> ../Walker/Walkers/MarkupFormatter.swift:271:136-271:136
269 | - preferredHeadingStyle: The preferred heading style.
270 | - lineLimit: The preferred maximum line length and method for splitting ``Text`` elements in an attempt to maintain that line length.
271 + - customLinePrefix: An addition prefix to print at the start of each line, useful for adding documentation comment markers.
| ╰─suggestion: Document 'doxygenCommandPrefix' parameter
272 | */
273 | public init(unorderedListMarker: UnorderedListMarker = .dash,Finished building documentation for 'Markdown' (0.80s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/sdggiesbrecht/swift-markdown/main
Building for debugging...
[0/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit DeclarationFragments.swift
[8/57] Compiling SymbolKit Fragment.swift
[9/57] Compiling SymbolKit FragmentKind.swift
[10/57] Compiling SymbolKit FunctionParameter.swift
[11/57] Compiling SymbolKit FunctionSignature.swift
[12/57] Compiling SymbolKit Mixin+Equals.swift
[13/57] Compiling SymbolKit Mixin+Hash.swift
[14/57] Compiling SymbolKit Mixin.swift
[15/57] Compiling SymbolKit LineList.swift
[16/57] Compiling SymbolKit Position.swift
[17/57] Compiling SymbolKit SemanticVersion.swift
[18/57] Compiling SymbolKit AccessControl.swift
[19/57] Compiling SymbolKit Availability.swift
[20/57] Compiling SymbolKit AvailabilityItem.swift
[21/57] Compiling SymbolKit Domain.swift
[22/57] Compiling SymbolKit Relationship.swift
[23/57] Compiling SymbolKit RelationshipKind.swift
[24/57] Compiling SymbolKit SourceOrigin.swift
[25/57] Compiling SymbolKit GenericConstraints.swift
[26/57] Compiling SymbolKit Swift.swift
[27/57] Compiling SymbolKit Names.swift
[28/57] Compiling SymbolKit SPI.swift
[29/57] Compiling SymbolKit Snippet.swift
[30/57] Compiling SymbolKit Extension.swift
[31/57] Compiling SymbolKit Identifier.swift
[32/57] Compiling SymbolKit KindIdentifier.swift
[33/57] Compiling SymbolKit Location.swift
[34/57] Compiling SymbolKit Mutability.swift
[35/57] Compiling SymbolKit Symbol.swift
[36/57] Compiling SymbolKit SymbolKind.swift
[37/57] Compiling SymbolKit SymbolGraph.swift
[38/57] Compiling SymbolKit GraphCollector.swift
[39/57] Compiling SymbolKit GenericConstraint.swift
[40/57] Compiling SymbolKit GenericParameter.swift
[41/57] Compiling SymbolKit Generics.swift
[42/57] Compiling SymbolKit Namespace.swift
[43/57] Compiling SymbolKit SourceRange.swift
[44/57] Compiling SymbolKit Metadata.swift
[45/57] Compiling SymbolKit Module.swift
[46/57] Compiling SymbolKit OperatingSystem.swift
[47/57] Compiling SymbolKit Platform.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Emitting module Snippets
[53/57] Compiling Snippets SnippetParser.swift
[54/57] Compiling Snippets Snippet.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.31s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/62] Compiling Markdown BlockMarkup.swift
[3/62] Compiling Markdown InlineContainer.swift
[4/62] Compiling Markdown InlineMarkup.swift
[5/62] Compiling Markdown ListItemContainer.swift
[6/62] Compiling Markdown AtomicCounter.swift
[7/62] Compiling Markdown CharacterExtensions.swift
[8/68] Compiling Markdown RangeAdjuster.swift
[9/68] Compiling Markdown RangerTracker.swift
[10/68] Compiling Markdown MarkupRewriter.swift
[11/68] Compiling Markdown BasicBlockContainer.swift
[12/68] Compiling Markdown BasicInlineContainer.swift
[13/68] Compiling Markdown BlockContainer.swift
[14/68] Compiling Markdown Strong.swift
[15/68] Compiling Markdown CustomInline.swift
[16/68] Compiling Markdown InlineCode.swift
[17/68] Compiling Markdown InlineHTML.swift
[18/68] Compiling Markdown LineBreak.swift
[19/68] Compiling Markdown SoftBreak.swift
[20/68] Compiling Markdown SymbolLink.swift
[21/68] Emitting module Markdown
[22/68] Compiling Markdown Replacement.swift
[23/68] Compiling Markdown SourceLocation.swift
[24/68] Compiling Markdown Emphasis.swift
[25/68] Compiling Markdown Image.swift
[26/68] Compiling Markdown InlineAttributes.swift
[27/68] Compiling Markdown Link.swift
[28/68] Compiling Markdown Strikethrough.swift
[29/68] Compiling Markdown PlainTextConvertibleMarkup.swift
[30/68] Compiling Markdown RawMarkup.swift
[31/68] Compiling Markdown BlockDirective.swift
[32/68] Compiling Markdown BlockQuote.swift
[33/68] Compiling Markdown CustomBlock.swift
[34/68] Compiling Markdown DoxygenParameter.swift
[35/68] Compiling Markdown DoxygenReturns.swift
[36/68] Compiling Markdown ChildIndexPath.swift
[37/68] Compiling Markdown DirectiveArgument.swift
[38/68] Compiling Markdown Document.swift
[39/68] Compiling Markdown LiteralMarkup.swift
[40/68] Compiling Markdown Markup.swift
[41/68] Compiling Markdown MarkupChildren.swift
[42/68] Compiling Markdown MarkupData.swift
[43/68] Compiling Markdown ThematicBreak.swift
[44/68] Compiling Markdown Table.swift
[45/68] Compiling Markdown TableBody.swift
[46/68] Compiling Markdown TableCell.swift
[47/68] Compiling Markdown TableCellContainer.swift
[48/68] Compiling Markdown TableHead.swift
[49/68] Compiling Markdown TableRow.swift
[50/68] Compiling Markdown CollectionExtensions.swift
[51/68] Compiling Markdown StringExtensions.swift
[52/68] Compiling Markdown MarkupVisitor.swift
[53/68] Compiling Markdown MarkupWalker.swift
[54/68] Compiling Markdown MarkupFormatter.swift
[55/68] Compiling Markdown MarkupTreeDumper.swift
[56/68] Compiling Markdown ListItem.swift
[57/68] Compiling Markdown OrderedList.swift
[58/68] Compiling Markdown UnorderedList.swift
[59/68] Compiling Markdown Paragraph.swift
[60/68] Compiling Markdown CodeBlock.swift
[61/68] Compiling Markdown HTMLBlock.swift
[62/68] Compiling Markdown Heading.swift
[63/68] Compiling Markdown Text.swift
[64/68] Compiling Markdown Aside.swift
[65/68] Compiling Markdown BlockDirectiveParser.swift
[66/68] Compiling Markdown CommonMarkConverter.swift
[67/68] Compiling Markdown LazySplitLines.swift
[68/68] Compiling Markdown ParseOptions.swift
Build of target: 'Markdown' complete! (1.76s)
2942
19 /Users/admin/builder/spi-builder-workspace/.docs/sdggiesbrecht/swift-markdown/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/sdggiesbrecht/swift-markdown/main
File count: 2942
Doc size: 19.0MB
Preparing doc bundle ...
Uploading prod-sdggiesbrecht-swift-markdown-main-2bd8b794.zip to s3://spi-docs-inbox/prod-sdggiesbrecht-swift-markdown-main-2bd8b794.zip
Copying... [11%]
Copying... [21%]
Copying... [31%]
Copying... [40%]
Copying... [51%]
Copying... [61%]
Copying... [71%]
Copying... [80%]
Copying... [92%]
Copying... [100%]
Done.