The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Down, reference master (e754ab), with Swift 6.0 for macOS (SPM) on 28 Nov 2024 07:12:05 UTC.

Swift 6 data race errors: 10

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

Build Log

========================================
RunAll
========================================
Builder version: 4.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/johnxnguyen/Down.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/johnxnguyen/Down
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at e754ab1 Provide access to the list delimiter (#275)
Cloned https://github.com/johnxnguyen/Down.git
Revision (git rev-parse @):
e754ab1c80920dd51a8e08290c912ac1c2ac8b58
SUCCESS checkout https://github.com/johnxnguyen/Down.git at master
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "down",
      "name": "Down",
      "url": "https://github.com/johnxnguyen/Down.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Down",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/johnxnguyen/Down.git
[1/6251] Fetching down
Fetched https://github.com/johnxnguyen/Down.git from cache (2.09s)
Creating working copy for https://github.com/johnxnguyen/Down.git
Working copy of https://github.com/johnxnguyen/Down.git resolved at master (e754ab1)
warning: '.resolve-product-dependencies': dependency 'down' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/johnxnguyen/Down.git
Running build ...
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 -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/23] Write swift-version--7754E27361AE5C74.txt
[1/23] Compiling libcmark cmark_ctype.c
[2/23] Compiling libcmark references.c
[3/23] Compiling libcmark latex.c
[4/23] Compiling libcmark commonmark.c
[5/23] Compiling libcmark render.c
[6/23] Compiling libcmark xml.c
[7/23] Compiling libcmark houdini_html_e.c
[8/23] Compiling libcmark iterator.c
[9/23] Compiling libcmark html.c
[10/23] Compiling libcmark houdini_href_e.c
[11/23] Copying DownView.bundle
[12/23] Copying DownView (macOS).bundle
[13/23] Write sources
[14/23] Compiling libcmark inlines.c
[15/23] Compiling libcmark houdini_html_u.c
[16/23] Compiling libcmark cmark.c
[17/23] Compiling libcmark buffer.c
[18/23] Compiling libcmark blocks.c
[19/23] Compiling libcmark node.c
[20/23] Compiling libcmark man.c
[21/23] Compiling libcmark utf8.c
[22/23] Compiling libcmark scanners.c
[24/84] Emitting module Down
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:30:23: warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
28 |     /// Include a `data-sourcepos` attribute on all block elements.
29 |
30 |     public static let sourcePos = DownOptions(rawValue: CMARK_OPT_SOURCEPOS)
   |                       |- warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sourcePos' with '@MainActor' 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 |     /// Render `softbreak` elements as hard line breaks.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:34:23: warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
32 |     /// Render `softbreak` elements as hard line breaks.
33 |
34 |     public static let hardBreaks = DownOptions(rawValue: CMARK_OPT_HARDBREAKS)
   |                       |- warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hardBreaks' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Suppress raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:45:23: warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
43 |     ///       to disable this behavior.
44 |
45 |     public static let safe = DownOptions(rawValue: CMARK_OPT_SAFE)
   |                       |- warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'safe' with '@MainActor' 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 |     /// Render raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:55:23: warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
53 |     /// Note: `safe` is the default as of cmark v0.29.0
54 |
55 |     public static let unsafe = DownOptions(rawValue: CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 |     // MARK: - Parsing Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:61:23: warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
59 |     /// Normalize tree by consolidating adjacent text nodes.
60 |
61 |     public static let normalize = DownOptions(rawValue: CMARK_OPT_NORMALIZE)
   |                       |- warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'normalize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |
63 |     /// Validate UTF-8 in the input before parsing, replacing illegal
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:66:23: warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
64 |     /// sequences with the replacement character U+FFFD.
65 |
66 |     public static let validateUTF8 = DownOptions(rawValue: CMARK_OPT_VALIDATE_UTF8)
   |                       |- warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'validateUTF8' with '@MainActor' 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 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:70:23: warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
68 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
69 |
70 |     public static let smart = DownOptions(rawValue: CMARK_OPT_SMART)
   |                       |- warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smart' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 |     // MARK: - Combo Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:76:23: warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
74 |     /// Combines 'unsafe' and 'smart' to render raw HTML and produce smart typography.
75 |
76 |     public static let smartUnsafe = DownOptions(rawValue: CMARK_OPT_SMART + CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smartUnsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | }
/Users/admin/builder/spi-builder-workspace/Sources/Down/Views/BundleHelper.swift:11:14: warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |   /// Returns the resource bundle associated with the current Swift module.
10 |
11 |   static var moduleBundle: Bundle? = {
   |              |- warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'moduleBundle' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'moduleBundle' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     let bundleName = "Down_Down"
13 |
[25/90] Compiling Down BaseNode.swift
[26/90] Compiling Down BlockQuote.swift
[27/90] Compiling Down ChildSequence.swift
[28/90] Compiling Down Code.swift
[29/90] Compiling Down CodeBlock.swift
[30/90] Compiling Down CustomBlock.swift
[31/90] Compiling Down CustomInline.swift
[32/90] Compiling Down Document.swift
[33/90] Compiling Down Emphasis.swift
[34/90] Compiling Down Heading.swift
[35/90] Compiling Down HtmlBlock.swift
[36/90] Compiling Down HtmlInline.swift
[37/90] Compiling Down Image.swift
[38/90] Compiling Down Item.swift
[39/90] Compiling Down String+ToHTML.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
[40/90] Compiling Down DownASTRenderable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
[41/90] Compiling Down DownAttributedStringRenderable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
[42/90] Compiling Down DownCommonMarkRenderable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
[43/90] Compiling Down DownGroffRenderable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
[44/90] Compiling Down DownHTMLRenderable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
[45/90] Compiling Down DownLaTeXRenderable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Views/BundleHelper.swift:11:14: warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |   /// Returns the resource bundle associated with the current Swift module.
10 |
11 |   static var moduleBundle: Bundle? = {
   |              |- warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'moduleBundle' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'moduleBundle' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     let bundleName = "Down_Down"
13 |
/Users/admin/builder/spi-builder-workspace/Sources/Down/Views/DownView.swift:80:9: warning: call to main actor-isolated instance method 'clearTemporaryDirectory()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 |     #if os(macOS)
 79 |     deinit {
 80 |         clearTemporaryDirectory()
    |         `- warning: call to main actor-isolated instance method 'clearTemporaryDirectory()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 81 |     }
 82 |     #endif
    :
200 |
201 |     @objc
202 |     func clearTemporaryDirectory() {
    |          `- note: calls to instance method 'clearTemporaryDirectory()' from outside of its actor context are implicitly asynchronous
203 |         if let temporaryDirectoryURL = temporaryDirectoryURL {
204 |             try? FileManager.default.removeItem(at: temporaryDirectoryURL)
[46/90] Compiling Down DownRenderable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Views/BundleHelper.swift:11:14: warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |   /// Returns the resource bundle associated with the current Swift module.
10 |
11 |   static var moduleBundle: Bundle? = {
   |              |- warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'moduleBundle' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'moduleBundle' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     let bundleName = "Down_Down"
13 |
/Users/admin/builder/spi-builder-workspace/Sources/Down/Views/DownView.swift:80:9: warning: call to main actor-isolated instance method 'clearTemporaryDirectory()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 |     #if os(macOS)
 79 |     deinit {
 80 |         clearTemporaryDirectory()
    |         `- warning: call to main actor-isolated instance method 'clearTemporaryDirectory()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 81 |     }
 82 |     #endif
    :
200 |
201 |     @objc
202 |     func clearTemporaryDirectory() {
    |          `- note: calls to instance method 'clearTemporaryDirectory()' from outside of its actor context are implicitly asynchronous
203 |         if let temporaryDirectoryURL = temporaryDirectoryURL {
204 |             try? FileManager.default.removeItem(at: temporaryDirectoryURL)
[47/90] Compiling Down DownXMLRenderable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Views/BundleHelper.swift:11:14: warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |   /// Returns the resource bundle associated with the current Swift module.
10 |
11 |   static var moduleBundle: Bundle? = {
   |              |- warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'moduleBundle' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'moduleBundle' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     let bundleName = "Down_Down"
13 |
/Users/admin/builder/spi-builder-workspace/Sources/Down/Views/DownView.swift:80:9: warning: call to main actor-isolated instance method 'clearTemporaryDirectory()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 |     #if os(macOS)
 79 |     deinit {
 80 |         clearTemporaryDirectory()
    |         `- warning: call to main actor-isolated instance method 'clearTemporaryDirectory()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 81 |     }
 82 |     #endif
    :
200 |
201 |     @objc
202 |     func clearTemporaryDirectory() {
    |          `- note: calls to instance method 'clearTemporaryDirectory()' from outside of its actor context are implicitly asynchronous
203 |         if let temporaryDirectoryURL = temporaryDirectoryURL {
204 |             try? FileManager.default.removeItem(at: temporaryDirectoryURL)
[48/90] Compiling Down BundleHelper.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Views/BundleHelper.swift:11:14: warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |   /// Returns the resource bundle associated with the current Swift module.
10 |
11 |   static var moduleBundle: Bundle? = {
   |              |- warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'moduleBundle' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'moduleBundle' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     let bundleName = "Down_Down"
13 |
/Users/admin/builder/spi-builder-workspace/Sources/Down/Views/DownView.swift:80:9: warning: call to main actor-isolated instance method 'clearTemporaryDirectory()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 |     #if os(macOS)
 79 |     deinit {
 80 |         clearTemporaryDirectory()
    |         `- warning: call to main actor-isolated instance method 'clearTemporaryDirectory()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 81 |     }
 82 |     #endif
    :
200 |
201 |     @objc
202 |     func clearTemporaryDirectory() {
    |          `- note: calls to instance method 'clearTemporaryDirectory()' from outside of its actor context are implicitly asynchronous
203 |         if let temporaryDirectoryURL = temporaryDirectoryURL {
204 |             try? FileManager.default.removeItem(at: temporaryDirectoryURL)
[49/90] Compiling Down DownView.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Views/BundleHelper.swift:11:14: warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |   /// Returns the resource bundle associated with the current Swift module.
10 |
11 |   static var moduleBundle: Bundle? = {
   |              |- warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'moduleBundle' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'moduleBundle' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     let bundleName = "Down_Down"
13 |
/Users/admin/builder/spi-builder-workspace/Sources/Down/Views/DownView.swift:80:9: warning: call to main actor-isolated instance method 'clearTemporaryDirectory()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 |     #if os(macOS)
 79 |     deinit {
 80 |         clearTemporaryDirectory()
    |         `- warning: call to main actor-isolated instance method 'clearTemporaryDirectory()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 81 |     }
 82 |     #endif
    :
200 |
201 |     @objc
202 |     func clearTemporaryDirectory() {
    |          `- note: calls to instance method 'clearTemporaryDirectory()' from outside of its actor context are implicitly asynchronous
203 |         if let temporaryDirectoryURL = temporaryDirectoryURL {
204 |             try? FileManager.default.removeItem(at: temporaryDirectoryURL)
[50/90] Compiling Down resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Views/BundleHelper.swift:11:14: warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |   /// Returns the resource bundle associated with the current Swift module.
10 |
11 |   static var moduleBundle: Bundle? = {
   |              |- warning: static property 'moduleBundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'moduleBundle' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'moduleBundle' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     let bundleName = "Down_Down"
13 |
/Users/admin/builder/spi-builder-workspace/Sources/Down/Views/DownView.swift:80:9: warning: call to main actor-isolated instance method 'clearTemporaryDirectory()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 |     #if os(macOS)
 79 |     deinit {
 80 |         clearTemporaryDirectory()
    |         `- warning: call to main actor-isolated instance method 'clearTemporaryDirectory()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 81 |     }
 82 |     #endif
    :
200 |
201 |     @objc
202 |     func clearTemporaryDirectory() {
    |          `- note: calls to instance method 'clearTemporaryDirectory()' from outside of its actor context are implicitly asynchronous
203 |         if let temporaryDirectoryURL = temporaryDirectoryURL {
204 |             try? FileManager.default.removeItem(at: temporaryDirectoryURL)
[51/90] Compiling Down LineBreak.swift
[52/90] Compiling Down Link.swift
[53/90] Compiling Down List.swift
[54/90] Compiling Down Node.swift
[55/90] Compiling Down Paragraph.swift
[56/90] Compiling Down SoftBreak.swift
[57/90] Compiling Down Strong.swift
[58/90] Compiling Down ListItemPrefixGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:30:23: warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
28 |     /// Include a `data-sourcepos` attribute on all block elements.
29 |
30 |     public static let sourcePos = DownOptions(rawValue: CMARK_OPT_SOURCEPOS)
   |                       |- warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sourcePos' with '@MainActor' 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 |     /// Render `softbreak` elements as hard line breaks.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:34:23: warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
32 |     /// Render `softbreak` elements as hard line breaks.
33 |
34 |     public static let hardBreaks = DownOptions(rawValue: CMARK_OPT_HARDBREAKS)
   |                       |- warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hardBreaks' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Suppress raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:45:23: warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
43 |     ///       to disable this behavior.
44 |
45 |     public static let safe = DownOptions(rawValue: CMARK_OPT_SAFE)
   |                       |- warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'safe' with '@MainActor' 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 |     /// Render raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:55:23: warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
53 |     /// Note: `safe` is the default as of cmark v0.29.0
54 |
55 |     public static let unsafe = DownOptions(rawValue: CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 |     // MARK: - Parsing Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:61:23: warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
59 |     /// Normalize tree by consolidating adjacent text nodes.
60 |
61 |     public static let normalize = DownOptions(rawValue: CMARK_OPT_NORMALIZE)
   |                       |- warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'normalize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |
63 |     /// Validate UTF-8 in the input before parsing, replacing illegal
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:66:23: warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
64 |     /// sequences with the replacement character U+FFFD.
65 |
66 |     public static let validateUTF8 = DownOptions(rawValue: CMARK_OPT_VALIDATE_UTF8)
   |                       |- warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'validateUTF8' with '@MainActor' 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 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:70:23: warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
68 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
69 |
70 |     public static let smart = DownOptions(rawValue: CMARK_OPT_SMART)
   |                       |- warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smart' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 |     // MARK: - Combo Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:76:23: warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
74 |     /// Combines 'unsafe' and 'smart' to render raw HTML and produce smart typography.
75 |
76 |     public static let smartUnsafe = DownOptions(rawValue: CMARK_OPT_SMART + CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smartUnsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | }
[59/90] Compiling Down Visitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:30:23: warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
28 |     /// Include a `data-sourcepos` attribute on all block elements.
29 |
30 |     public static let sourcePos = DownOptions(rawValue: CMARK_OPT_SOURCEPOS)
   |                       |- warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sourcePos' with '@MainActor' 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 |     /// Render `softbreak` elements as hard line breaks.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:34:23: warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
32 |     /// Render `softbreak` elements as hard line breaks.
33 |
34 |     public static let hardBreaks = DownOptions(rawValue: CMARK_OPT_HARDBREAKS)
   |                       |- warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hardBreaks' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Suppress raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:45:23: warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
43 |     ///       to disable this behavior.
44 |
45 |     public static let safe = DownOptions(rawValue: CMARK_OPT_SAFE)
   |                       |- warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'safe' with '@MainActor' 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 |     /// Render raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:55:23: warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
53 |     /// Note: `safe` is the default as of cmark v0.29.0
54 |
55 |     public static let unsafe = DownOptions(rawValue: CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 |     // MARK: - Parsing Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:61:23: warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
59 |     /// Normalize tree by consolidating adjacent text nodes.
60 |
61 |     public static let normalize = DownOptions(rawValue: CMARK_OPT_NORMALIZE)
   |                       |- warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'normalize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |
63 |     /// Validate UTF-8 in the input before parsing, replacing illegal
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:66:23: warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
64 |     /// sequences with the replacement character U+FFFD.
65 |
66 |     public static let validateUTF8 = DownOptions(rawValue: CMARK_OPT_VALIDATE_UTF8)
   |                       |- warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'validateUTF8' with '@MainActor' 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 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:70:23: warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
68 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
69 |
70 |     public static let smart = DownOptions(rawValue: CMARK_OPT_SMART)
   |                       |- warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smart' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 |     // MARK: - Combo Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:76:23: warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
74 |     /// Combines 'unsafe' and 'smart' to render raw HTML and produce smart typography.
75 |
76 |     public static let smartUnsafe = DownOptions(rawValue: CMARK_OPT_SMART + CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smartUnsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | }
[60/90] Compiling Down Down.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:30:23: warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
28 |     /// Include a `data-sourcepos` attribute on all block elements.
29 |
30 |     public static let sourcePos = DownOptions(rawValue: CMARK_OPT_SOURCEPOS)
   |                       |- warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sourcePos' with '@MainActor' 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 |     /// Render `softbreak` elements as hard line breaks.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:34:23: warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
32 |     /// Render `softbreak` elements as hard line breaks.
33 |
34 |     public static let hardBreaks = DownOptions(rawValue: CMARK_OPT_HARDBREAKS)
   |                       |- warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hardBreaks' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Suppress raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:45:23: warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
43 |     ///       to disable this behavior.
44 |
45 |     public static let safe = DownOptions(rawValue: CMARK_OPT_SAFE)
   |                       |- warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'safe' with '@MainActor' 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 |     /// Render raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:55:23: warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
53 |     /// Note: `safe` is the default as of cmark v0.29.0
54 |
55 |     public static let unsafe = DownOptions(rawValue: CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 |     // MARK: - Parsing Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:61:23: warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
59 |     /// Normalize tree by consolidating adjacent text nodes.
60 |
61 |     public static let normalize = DownOptions(rawValue: CMARK_OPT_NORMALIZE)
   |                       |- warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'normalize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |
63 |     /// Validate UTF-8 in the input before parsing, replacing illegal
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:66:23: warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
64 |     /// sequences with the replacement character U+FFFD.
65 |
66 |     public static let validateUTF8 = DownOptions(rawValue: CMARK_OPT_VALIDATE_UTF8)
   |                       |- warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'validateUTF8' with '@MainActor' 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 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:70:23: warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
68 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
69 |
70 |     public static let smart = DownOptions(rawValue: CMARK_OPT_SMART)
   |                       |- warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smart' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 |     // MARK: - Combo Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:76:23: warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
74 |     /// Combines 'unsafe' and 'smart' to render raw HTML and produce smart typography.
75 |
76 |     public static let smartUnsafe = DownOptions(rawValue: CMARK_OPT_SMART + CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smartUnsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | }
[61/90] Compiling Down DownErrors.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:30:23: warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
28 |     /// Include a `data-sourcepos` attribute on all block elements.
29 |
30 |     public static let sourcePos = DownOptions(rawValue: CMARK_OPT_SOURCEPOS)
   |                       |- warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sourcePos' with '@MainActor' 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 |     /// Render `softbreak` elements as hard line breaks.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:34:23: warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
32 |     /// Render `softbreak` elements as hard line breaks.
33 |
34 |     public static let hardBreaks = DownOptions(rawValue: CMARK_OPT_HARDBREAKS)
   |                       |- warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hardBreaks' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Suppress raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:45:23: warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
43 |     ///       to disable this behavior.
44 |
45 |     public static let safe = DownOptions(rawValue: CMARK_OPT_SAFE)
   |                       |- warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'safe' with '@MainActor' 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 |     /// Render raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:55:23: warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
53 |     /// Note: `safe` is the default as of cmark v0.29.0
54 |
55 |     public static let unsafe = DownOptions(rawValue: CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 |     // MARK: - Parsing Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:61:23: warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
59 |     /// Normalize tree by consolidating adjacent text nodes.
60 |
61 |     public static let normalize = DownOptions(rawValue: CMARK_OPT_NORMALIZE)
   |                       |- warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'normalize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |
63 |     /// Validate UTF-8 in the input before parsing, replacing illegal
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:66:23: warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
64 |     /// sequences with the replacement character U+FFFD.
65 |
66 |     public static let validateUTF8 = DownOptions(rawValue: CMARK_OPT_VALIDATE_UTF8)
   |                       |- warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'validateUTF8' with '@MainActor' 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 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:70:23: warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
68 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
69 |
70 |     public static let smart = DownOptions(rawValue: CMARK_OPT_SMART)
   |                       |- warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smart' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 |     // MARK: - Combo Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:76:23: warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
74 |     /// Combines 'unsafe' and 'smart' to render raw HTML and produce smart typography.
75 |
76 |     public static let smartUnsafe = DownOptions(rawValue: CMARK_OPT_SMART + CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smartUnsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | }
[62/90] Compiling Down DownOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:30:23: warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
28 |     /// Include a `data-sourcepos` attribute on all block elements.
29 |
30 |     public static let sourcePos = DownOptions(rawValue: CMARK_OPT_SOURCEPOS)
   |                       |- warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sourcePos' with '@MainActor' 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 |     /// Render `softbreak` elements as hard line breaks.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:34:23: warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
32 |     /// Render `softbreak` elements as hard line breaks.
33 |
34 |     public static let hardBreaks = DownOptions(rawValue: CMARK_OPT_HARDBREAKS)
   |                       |- warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hardBreaks' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Suppress raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:45:23: warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
43 |     ///       to disable this behavior.
44 |
45 |     public static let safe = DownOptions(rawValue: CMARK_OPT_SAFE)
   |                       |- warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'safe' with '@MainActor' 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 |     /// Render raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:55:23: warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
53 |     /// Note: `safe` is the default as of cmark v0.29.0
54 |
55 |     public static let unsafe = DownOptions(rawValue: CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 |     // MARK: - Parsing Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:61:23: warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
59 |     /// Normalize tree by consolidating adjacent text nodes.
60 |
61 |     public static let normalize = DownOptions(rawValue: CMARK_OPT_NORMALIZE)
   |                       |- warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'normalize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |
63 |     /// Validate UTF-8 in the input before parsing, replacing illegal
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:66:23: warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
64 |     /// sequences with the replacement character U+FFFD.
65 |
66 |     public static let validateUTF8 = DownOptions(rawValue: CMARK_OPT_VALIDATE_UTF8)
   |                       |- warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'validateUTF8' with '@MainActor' 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 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:70:23: warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
68 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
69 |
70 |     public static let smart = DownOptions(rawValue: CMARK_OPT_SMART)
   |                       |- warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smart' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 |     // MARK: - Combo Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:76:23: warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
74 |     /// Combines 'unsafe' and 'smart' to render raw HTML and produce smart typography.
75 |
76 |     public static let smartUnsafe = DownOptions(rawValue: CMARK_OPT_SMART + CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smartUnsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | }
[63/90] Compiling Down NSAttributedString+HTML.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:30:23: warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
28 |     /// Include a `data-sourcepos` attribute on all block elements.
29 |
30 |     public static let sourcePos = DownOptions(rawValue: CMARK_OPT_SOURCEPOS)
   |                       |- warning: static property 'sourcePos' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sourcePos' with '@MainActor' 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 |     /// Render `softbreak` elements as hard line breaks.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:34:23: warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
32 |     /// Render `softbreak` elements as hard line breaks.
33 |
34 |     public static let hardBreaks = DownOptions(rawValue: CMARK_OPT_HARDBREAKS)
   |                       |- warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hardBreaks' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Suppress raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:45:23: warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
43 |     ///       to disable this behavior.
44 |
45 |     public static let safe = DownOptions(rawValue: CMARK_OPT_SAFE)
   |                       |- warning: static property 'safe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'safe' with '@MainActor' 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 |     /// Render raw HTML and unsafe links (`javascript:`, `vbscript:`,
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:55:23: warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
53 |     /// Note: `safe` is the default as of cmark v0.29.0
54 |
55 |     public static let unsafe = DownOptions(rawValue: CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'unsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 |     // MARK: - Parsing Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:61:23: warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
59 |     /// Normalize tree by consolidating adjacent text nodes.
60 |
61 |     public static let normalize = DownOptions(rawValue: CMARK_OPT_NORMALIZE)
   |                       |- warning: static property 'normalize' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'normalize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |
63 |     /// Validate UTF-8 in the input before parsing, replacing illegal
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:66:23: warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
64 |     /// sequences with the replacement character U+FFFD.
65 |
66 |     public static let validateUTF8 = DownOptions(rawValue: CMARK_OPT_VALIDATE_UTF8)
   |                       |- warning: static property 'validateUTF8' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'validateUTF8' with '@MainActor' 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 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:70:23: warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
68 |     /// Convert straight quotes to curly, --- to em dashes, -- to en dashes.
69 |
70 |     public static let smart = DownOptions(rawValue: CMARK_OPT_SMART)
   |                       |- warning: static property 'smart' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smart' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 |     // MARK: - Combo Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:76:23: warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
74 |     /// Combines 'unsafe' and 'smart' to render raw HTML and produce smart typography.
75 |
76 |     public static let smartUnsafe = DownOptions(rawValue: CMARK_OPT_SMART + CMARK_OPT_UNSAFE)
   |                       |- warning: static property 'smartUnsafe' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'smartUnsafe' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | }
[64/90] Compiling Down Text.swift
[65/90] Compiling Down ThematicBreak.swift
[66/90] Compiling Down ColorCollection.swift
[67/90] Compiling Down FontCollection.swift
[68/90] Compiling Down ParagraphStyleCollection.swift
[69/90] Compiling Down BlockBackgroundColorAttribute.swift
[70/90] Compiling Down QuoteStripeAttribute.swift
[71/90] Compiling Down DownDebugLayoutManager.swift
[72/90] Compiling Down DownLayoutManager.swift
[73/90] Compiling Down CodeBlockOptions.swift
[74/90] Compiling Down ListItemOptions.swift
[75/90] Compiling Down QuoteStripeOptions.swift
[76/90] Compiling Down ThematicBreakOptions.swift
[77/90] Compiling Down DownStyler.swift
[78/90] Compiling Down ThematicBreakAttribute.swift
[79/90] Compiling Down CGPoint+Translate.swift
[80/90] Compiling Down CGRect+Helpers.swift
[81/90] Compiling Down NSAttributedString+Helpers.swift
[82/90] Compiling Down NSMutableAttributedString+Attributes.swift
[83/90] Compiling Down UIFont+Traits.swift
[84/90] Compiling Down ListItemParagraphStyler.swift
[85/90] Compiling Down DownStylerConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:34:23: warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
32 |     /// Render `softbreak` elements as hard line breaks.
33 |
34 |     public static let hardBreaks = DownOptions(rawValue: CMARK_OPT_HARDBREAKS)
   |                       |- warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hardBreaks' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Suppress raw HTML and unsafe links (`javascript:`, `vbscript:`,
[86/90] Compiling Down Styler.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:34:23: warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
32 |     /// Render `softbreak` elements as hard line breaks.
33 |
34 |     public static let hardBreaks = DownOptions(rawValue: CMARK_OPT_HARDBREAKS)
   |                       |- warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hardBreaks' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Suppress raw HTML and unsafe links (`javascript:`, `vbscript:`,
[87/90] Compiling Down DownDebugTextView.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:34:23: warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
32 |     /// Render `softbreak` elements as hard line breaks.
33 |
34 |     public static let hardBreaks = DownOptions(rawValue: CMARK_OPT_HARDBREAKS)
   |                       |- warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hardBreaks' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Suppress raw HTML and unsafe links (`javascript:`, `vbscript:`,
[88/90] Compiling Down DownTextView.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:34:23: warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
32 |     /// Render `softbreak` elements as hard line breaks.
33 |
34 |     public static let hardBreaks = DownOptions(rawValue: CMARK_OPT_HARDBREAKS)
   |                       |- warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hardBreaks' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Suppress raw HTML and unsafe links (`javascript:`, `vbscript:`,
[89/90] Compiling Down AttributedStringVisitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:34:23: warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
32 |     /// Render `softbreak` elements as hard line breaks.
33 |
34 |     public static let hardBreaks = DownOptions(rawValue: CMARK_OPT_HARDBREAKS)
   |                       |- warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hardBreaks' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Suppress raw HTML and unsafe links (`javascript:`, `vbscript:`,
[90/90] Compiling Down DebugVisitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
22 |     /// Default options.
23 |
24 |     public static let `default` = DownOptions(rawValue: CMARK_OPT_DEFAULT)
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     // MARK: - Rendering Options
/Users/admin/builder/spi-builder-workspace/Sources/Down/Enums & Options/DownOptions.swift:34:23: warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
10 | import libcmark
11 |
12 | public struct DownOptions: OptionSet {
   |               `- note: consider making struct 'DownOptions' conform to the 'Sendable' protocol
13 |
14 |     // MARK: - Properties
   :
32 |     /// Render `softbreak` elements as hard line breaks.
33 |
34 |     public static let hardBreaks = DownOptions(rawValue: CMARK_OPT_HARDBREAKS)
   |                       |- warning: static property 'hardBreaks' is not concurrency-safe because non-'Sendable' type 'DownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hardBreaks' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Suppress raw HTML and unsafe links (`javascript:`, `vbscript:`,
Build complete! (20.52s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Down",
  "name" : "Down",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.11"
    },
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "Down",
      "targets" : [
        "Down"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "libcmark",
      "module_type" : "ClangTarget",
      "name" : "libcmark",
      "path" : "Sources/cmark",
      "product_memberships" : [
        "Down"
      ],
      "sources" : [
        "blocks.c",
        "buffer.c",
        "cmark.c",
        "cmark_ctype.c",
        "commonmark.c",
        "houdini_href_e.c",
        "houdini_html_e.c",
        "houdini_html_u.c",
        "html.c",
        "inlines.c",
        "iterator.c",
        "latex.c",
        "man.c",
        "node.c",
        "references.c",
        "render.c",
        "scanners.c",
        "utf8.c",
        "xml.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DownTests",
      "module_type" : "SwiftTarget",
      "name" : "DownTests",
      "path" : "Tests/DownTests",
      "sources" : [
        "AST/ListItemPrefixGeneratorTests.swift",
        "AST/NodeTests.swift",
        "BindingTests.swift",
        "NSAttributedStringTests.swift",
        "StringTests.swift",
        "Styler/Helpers/CGPointTranslateTests.swift",
        "Styler/Helpers/CGRectHelpersTests.swift",
        "Styler/Helpers/NSAttributedString+HelpersTests.swift",
        "Styler/Helpers/NSMutableAttributedString+AttributesTests.swift"
      ],
      "target_dependencies" : [
        "Down"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Down",
      "module_type" : "SwiftTarget",
      "name" : "Down",
      "path" : "Sources/Down",
      "product_memberships" : [
        "Down"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Down/Resources/DownView (macOS).bundle",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Down/Resources/DownView.bundle",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "AST/Nodes/BaseNode.swift",
        "AST/Nodes/BlockQuote.swift",
        "AST/Nodes/ChildSequence.swift",
        "AST/Nodes/Code.swift",
        "AST/Nodes/CodeBlock.swift",
        "AST/Nodes/CustomBlock.swift",
        "AST/Nodes/CustomInline.swift",
        "AST/Nodes/Document.swift",
        "AST/Nodes/Emphasis.swift",
        "AST/Nodes/Heading.swift",
        "AST/Nodes/HtmlBlock.swift",
        "AST/Nodes/HtmlInline.swift",
        "AST/Nodes/Image.swift",
        "AST/Nodes/Item.swift",
        "AST/Nodes/LineBreak.swift",
        "AST/Nodes/Link.swift",
        "AST/Nodes/List.swift",
        "AST/Nodes/Node.swift",
        "AST/Nodes/Paragraph.swift",
        "AST/Nodes/SoftBreak.swift",
        "AST/Nodes/Strong.swift",
        "AST/Nodes/Text.swift",
        "AST/Nodes/ThematicBreak.swift",
        "AST/Styling/Attribute Collections/ColorCollection.swift",
        "AST/Styling/Attribute Collections/FontCollection.swift",
        "AST/Styling/Attribute Collections/ParagraphStyleCollection.swift",
        "AST/Styling/Custom Attributes/BlockBackgroundColorAttribute.swift",
        "AST/Styling/Custom Attributes/QuoteStripeAttribute.swift",
        "AST/Styling/Custom Attributes/ThematicBreakAttribute.swift",
        "AST/Styling/Helpers/Extensions/CGPoint+Translate.swift",
        "AST/Styling/Helpers/Extensions/CGRect+Helpers.swift",
        "AST/Styling/Helpers/Extensions/NSAttributedString+Helpers.swift",
        "AST/Styling/Helpers/Extensions/NSMutableAttributedString+Attributes.swift",
        "AST/Styling/Helpers/Extensions/UIFont+Traits.swift",
        "AST/Styling/Helpers/ListItemParagraphStyler.swift",
        "AST/Styling/Layout Managers/DownDebugLayoutManager.swift",
        "AST/Styling/Layout Managers/DownLayoutManager.swift",
        "AST/Styling/Options/CodeBlockOptions.swift",
        "AST/Styling/Options/ListItemOptions.swift",
        "AST/Styling/Options/QuoteStripeOptions.swift",
        "AST/Styling/Options/ThematicBreakOptions.swift",
        "AST/Styling/Stylers/DownStyler.swift",
        "AST/Styling/Stylers/DownStylerConfiguration.swift",
        "AST/Styling/Stylers/Styler.swift",
        "AST/Styling/Text Views/DownDebugTextView.swift",
        "AST/Styling/Text Views/DownTextView.swift",
        "AST/Visitors/AttributedStringVisitor.swift",
        "AST/Visitors/DebugVisitor.swift",
        "AST/Visitors/ListItemPrefixGenerator.swift",
        "AST/Visitors/Visitor.swift",
        "Down.swift",
        "Enums & Options/DownErrors.swift",
        "Enums & Options/DownOptions.swift",
        "Extensions/NSAttributedString+HTML.swift",
        "Extensions/String+ToHTML.swift",
        "Renderers/DownASTRenderable.swift",
        "Renderers/DownAttributedStringRenderable.swift",
        "Renderers/DownCommonMarkRenderable.swift",
        "Renderers/DownGroffRenderable.swift",
        "Renderers/DownHTMLRenderable.swift",
        "Renderers/DownLaTeXRenderable.swift",
        "Renderers/DownRenderable.swift",
        "Renderers/DownXMLRenderable.swift",
        "Views/BundleHelper.swift",
        "Views/DownView.swift"
      ],
      "target_dependencies" : [
        "libcmark"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.