This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 Markup with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 40

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/SwiftDocOrg/Markup.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/SwiftDocOrg/Markup
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 1ae88db Update README.md
Cloned https://github.com/SwiftDocOrg/Markup.git
Revision (git rev-parse @):
1ae88db3de6b549aec9cb45e6a88f675b51e2460
SUCCESS checkout https://github.com/SwiftDocOrg/Markup.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/SwiftDocOrg/Markup.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/7] Write sources
[6/7] Write swift-version-6F35C1178C84523A.txt
[8/23] Emitting module XSLT
[9/23] Compiling XSLT XSLT.swift
[10/23] Emitting module XInclude
[11/23] Compiling XInclude XInclude.swift
[12/23] Compiling DOM Node.swift
[13/24] Compiling DOM ProcessingInstruction.swift
[14/24] Compiling DOM Error.swift
[15/24] Compiling DOM String+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/DOM/Extensions/String+Extensions.swift:8:17: warning: reference to var 'xmlFree' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 6 |         defer {
 7 |             if freeWhenDone {
 8 |                 xmlFree(xmlString)
   |                 `- warning: reference to var 'xmlFree' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 9 |             }
10 |         }
libxml2.xmlFree:1:12: note: var declared here
1 | public var xmlFree: xmlFreeFunc!
  |            `- note: var declared here
[16/24] Compiling DOM DocumentType.swift
[17/24] Compiling DOM Element.swift
[18/24] Compiling DOM Text.swift
[19/24] Compiling DOM DocumentFragment.swift
[20/24] Compiling DOM DOMBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/DOM/Builders/DOMBuilder.swift:1:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
 1 | @_functionBuilder
   |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
 2 | public struct DOMBuilder {
 3 |
/Users/admin/builder/spi-builder-workspace/Sources/DOM/Builders/StringBuilder.swift:1:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
 1 | @_functionBuilder
   |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
 2 | public struct StringBuilder {
 3 |     // MARK: buildBlock
[21/24] Compiling DOM StringBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/DOM/Builders/DOMBuilder.swift:1:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
 1 | @_functionBuilder
   |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
 2 | public struct DOMBuilder {
 3 |
/Users/admin/builder/spi-builder-workspace/Sources/DOM/Builders/StringBuilder.swift:1:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
 1 | @_functionBuilder
   |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
 2 | public struct StringBuilder {
 3 |     // MARK: buildBlock
[22/24] Emitting module DOM
/Users/admin/builder/spi-builder-workspace/Sources/DOM/Builders/DOMBuilder.swift:1:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
 1 | @_functionBuilder
   |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
 2 | public struct DOMBuilder {
 3 |
/Users/admin/builder/spi-builder-workspace/Sources/DOM/Builders/StringBuilder.swift:1:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
 1 | @_functionBuilder
   |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
 2 | public struct StringBuilder {
 3 |     // MARK: buildBlock
[23/24] Compiling DOM Comment.swift
[24/24] Compiling DOM Document.swift
[25/30] Compiling XPath XPath.swift
/Users/admin/builder/spi-builder-workspace/Sources/XPath/XPath.swift:3:17: warning: var 'initialization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
1 | import libxml2
2 |
3 | fileprivate var initialization: Void = { xmlXPathInit() }()
  |                 |- warning: var 'initialization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
  |                 |- note: convert 'initialization' to a 'let' constant to make 'Sendable' shared state immutable
  |                 |- note: annotate 'initialization' with '@MainActor' if property should only be accessed from the main actor
  |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4 |
5 | public enum Error: Swift.Error {
[26/30] Compiling XPath NodeSet.swift
[27/30] Compiling XPath Expression.swift
[28/30] Compiling XPath Object.swift
[29/30] Compiling XPath Context.swift
[30/30] Emitting module XPath
/Users/admin/builder/spi-builder-workspace/Sources/XPath/XPath.swift:3:17: warning: var 'initialization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
1 | import libxml2
2 |
3 | fileprivate var initialization: Void = { xmlXPathInit() }()
  |                 |- warning: var 'initialization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
  |                 |- note: convert 'initialization' to a 'let' constant to make 'Sendable' shared state immutable
  |                 |- note: annotate 'initialization' with '@MainActor' if property should only be accessed from the main actor
  |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4 |
5 | public enum Error: Swift.Error {
[31/47] Compiling XML Node.swift
/Users/admin/builder/spi-builder-workspace/Sources/XML/Node.swift:5:1: warning: extension declares a conformance of imported type 'Node' to imported protocol 'Constructable'; this will not behave correctly if the owners of 'DOM' introduce this conformance in the future
 3 | import DOM
 4 |
 5 | extension Node: Constructable {
   | |- warning: extension declares a conformance of imported type 'Node' to imported protocol 'Constructable'; this will not behave correctly if the owners of 'DOM' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 |     public static func construct(with rawValue: xmlNodePtr?) -> Node? {
 7 |         guard let rawValue = rawValue else {
[32/47] Compiling XML Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:10:27: warning: static property 'relaxed' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
  9 |         /// Relaxed parser
 10 |         public static let relaxed = Options(XML_PARSE_RECOVER)
    |                           |- warning: static property 'relaxed' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'relaxed' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |
 12 |         /// Substitute entities.
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:13:27: warning: static property 'substituteEntities' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 11 |
 12 |         /// Substitute entities.
 13 |         public static let substituteEntities = Options(XML_PARSE_NOENT)
    |                           |- warning: static property 'substituteEntities' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'substituteEntities' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |
 15 |         /// Load external subset
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:16:27: warning: static property 'loadDTDExternalSubset' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 14 |
 15 |         /// Load external subset
 16 |         public static let loadDTDExternalSubset = Options(XML_PARSE_DTDLOAD)
    |                           |- warning: static property 'loadDTDExternalSubset' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'loadDTDExternalSubset' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 17 |
 18 |         /// Use default DTD attributes
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:19:27: warning: static property 'useDefaultDTDAttributes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 17 |
 18 |         /// Use default DTD attributes
 19 |         public static let useDefaultDTDAttributes = Options(XML_PARSE_DTDATTR)
    |                           |- warning: static property 'useDefaultDTDAttributes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'useDefaultDTDAttributes' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 |
 21 |         /// Validate with the DTD
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:22:27: warning: static property 'validateDTD' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 20 |
 21 |         /// Validate with the DTD
 22 |         public static let validateDTD = Options(XML_PARSE_DTDVALID)
    |                           |- warning: static property 'validateDTD' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'validateDTD' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |
 24 |         /// Suppress errors
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:25:27: warning: static property 'suppressErrors' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 23 |
 24 |         /// Suppress errors
 25 |         public static let suppressErrors = Options(XML_PARSE_NOERROR)
    |                           |- warning: static property 'suppressErrors' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'suppressErrors' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |         /// Suppress warnings
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:28:27: warning: static property 'suppressWarnings' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 26 |
 27 |         /// Suppress warnings
 28 |         public static let suppressWarnings = Options(XML_PARSE_NOWARNING)
    |                           |- warning: static property 'suppressWarnings' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'suppressWarnings' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |
 30 |         /// Pedantic error reporting
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:31:27: warning: static property 'pedantic' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 29 |
 30 |         /// Pedantic error reporting
 31 |         public static let pedantic = Options(XML_PARSE_PEDANTIC)
    |                           |- warning: static property 'pedantic' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'pedantic' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |         /// Remove blank nodes
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:34:27: warning: static property 'removeBlankNodes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 32 |
 33 |         /// Remove blank nodes
 34 |         public static let removeBlankNodes = Options(XML_PARSE_NOBLANKS)
    |                           |- warning: static property 'removeBlankNodes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'removeBlankNodes' with '@MainActor' 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 |         /// Use the SAX1 interface
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:37:27: warning: static property 'useSAX1Interface' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 35 |
 36 |         /// Use the SAX1 interface
 37 |         public static let useSAX1Interface = Options(XML_PARSE_SAX1)
    |                           |- warning: static property 'useSAX1Interface' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'useSAX1Interface' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |         /// Implement XInclude substituion
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:40:27: warning: static property 'implementXIncludeSubstitution' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 38 |
 39 |         /// Implement XInclude substituion
 40 |         public static let implementXIncludeSubstitution = Options(XML_PARSE_XINCLUDE)
    |                           |- warning: static property 'implementXIncludeSubstitution' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'implementXIncludeSubstitution' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |         /// Forbid network access
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:43:27: warning: static property 'forbidNetworkAccess' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 41 |
 42 |         /// Forbid network access
 43 |         public static let forbidNetworkAccess = Options(XML_PARSE_NONET)
    |                           |- warning: static property 'forbidNetworkAccess' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'forbidNetworkAccess' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |         /// Do not reuse the context dictionary
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:46:27: warning: static property 'noContextDictionaryReuse' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 44 |
 45 |         /// Do not reuse the context dictionary
 46 |         public static let noContextDictionaryReuse = Options(XML_PARSE_NODICT)
    |                           |- warning: static property 'noContextDictionaryReuse' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'noContextDictionaryReuse' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |         /// Remove redundant namespaces declarations
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:49:27: warning: static property 'removeRedundantNamespaceDeclarations' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 47 |
 48 |         /// Remove redundant namespaces declarations
 49 |         public static let removeRedundantNamespaceDeclarations = Options(XML_PARSE_NSCLEAN)
    |                           |- warning: static property 'removeRedundantNamespaceDeclarations' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'removeRedundantNamespaceDeclarations' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |         /// Merge CDATA as text nodes
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:52:27: warning: static property 'mergeCDATA' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 50 |
 51 |         /// Merge CDATA as text nodes
 52 |         public static let mergeCDATA = Options(XML_PARSE_NOCDATA)
    |                           |- warning: static property 'mergeCDATA' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'mergeCDATA' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |
 54 |         /// Do not generate XINCLUDE START/END nodes
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:55:27: warning: static property 'noXIncludeDelimiterNodes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 53 |
 54 |         /// Do not generate XINCLUDE START/END nodes
 55 |         public static let noXIncludeDelimiterNodes = Options(XML_PARSE_NOXINCNODE)
    |                           |- warning: static property 'noXIncludeDelimiterNodes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'noXIncludeDelimiterNodes' with '@MainActor' 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 |         /// Compact small text nodes.
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:59:27: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 57 |         /// Compact small text nodes.
 58 |         /// - Warning: Modification of the resulting tree isn't allowed
 59 |         public static let compact = Options(XML_PARSE_COMPACT)
    |                           |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 60 |
 61 |         /// Do not fixup XINCLUDE xml:base uris
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:62:27: warning: static property 'noXIncludeBaseURIFixup' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 60 |
 61 |         /// Do not fixup XINCLUDE xml:base uris
 62 |         public static let noXIncludeBaseURIFixup = Options(XML_PARSE_NOBASEFIX)
    |                           |- warning: static property 'noXIncludeBaseURIFixup' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'noXIncludeBaseURIFixup' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 63 |
 64 |         /// Relax any hardcoded limit from the parser
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:65:27: warning: static property 'relaxHardcodedLimits' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 63 |
 64 |         /// Relax any hardcoded limit from the parser
 65 |         public static let relaxHardcodedLimits = Options(XML_PARSE_HUGE)
    |                           |- warning: static property 'relaxHardcodedLimits' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'relaxHardcodedLimits' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |
 67 |         /// Ignore internal document encoding hint
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:68:27: warning: static property 'ignoreEncodingHint' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 66 |
 67 |         /// Ignore internal document encoding hint
 68 |         public static let ignoreEncodingHint = Options(XML_PARSE_IGNORE_ENC)
    |                           |- warning: static property 'ignoreEncodingHint' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'ignoreEncodingHint' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |
 70 |         /// Store big lines numbers in text PSVI field
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:71:27: warning: static property 'bigLineNumbers' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 69 |
 70 |         /// Store big lines numbers in text PSVI field
 71 |         public static let bigLineNumbers = Options(XML_PARSE_BIG_LINES)
    |                           |- warning: static property 'bigLineNumbers' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'bigLineNumbers' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         init(_ xmlParserOption: xmlParserOption) {
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:109:17: warning: var 'initialization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
107 | // MARK: -
108 |
109 | fileprivate var initialization: Void = { xmlInitParser() }()
    |                 |- warning: var 'initialization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: convert 'initialization' to a 'let' constant to make 'Sendable' shared state immutable
    |                 |- note: annotate 'initialization' with '@MainActor' if property should only be accessed from the main actor
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |
[33/47] Compiling XML Namespace.swift
[34/47] Compiling HTML Node.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Node.swift:5:1: warning: extension declares a conformance of imported type 'Node' to imported protocol 'Constructable'; this will not behave correctly if the owners of 'DOM' introduce this conformance in the future
 3 | import DOM
 4 |
 5 | extension Node: Constructable {
   | |- warning: extension declares a conformance of imported type 'Node' to imported protocol 'Constructable'; this will not behave correctly if the owners of 'DOM' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 |     public static func construct(with rawValue: xmlNodePtr?) -> Node? {
 7 |         guard let rawValue = rawValue else {
[35/47] Compiling HTML XPath+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Extensions/XPath+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'NodeSet' to imported protocols 'RandomAccessCollection', 'BidirectionalCollection', 'Collection', 'Sequence'; this will not behave correctly if the owners of 'XPath' introduce this conformance in the future
 4 | import XPath
 5 |
 6 | extension XPath.NodeSet: RandomAccessCollection {
   | |- warning: extension declares a conformance of imported type 'NodeSet' to imported protocols 'RandomAccessCollection', 'BidirectionalCollection', 'Collection', 'Sequence'; this will not behave correctly if the owners of 'XPath' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |     public subscript(position: Int) -> Node? {
 8 |         precondition(position >= startIndex && position <= endIndex)
[36/47] Compiling HTML HTMLTags.swift
[37/47] Compiling HTML Element.swift
[38/47] Compiling HTML Document.swift
[39/47] Compiling HTML Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:10:27: warning: static property 'relaxed' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
 9 |         /// Relaxed parsing
10 |         public static let relaxed = Options(HTML_PARSE_RECOVER)
   |                           |- warning: static property 'relaxed' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'relaxed' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |         /// Do not default a doctype if not found
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:13:27: warning: static property 'noDefaultDTD' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
11 |
12 |         /// Do not default a doctype if not found
13 |         public static let noDefaultDTD = Options(HTML_PARSE_NODEFDTD)
   |                           |- warning: static property 'noDefaultDTD' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'noDefaultDTD' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |         /// Suppress errors
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:16:27: warning: static property 'suppressErrors' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
14 |
15 |         /// Suppress errors
16 |         public static let suppressErrors = Options(HTML_PARSE_NOERROR)
   |                           |- warning: static property 'suppressErrors' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'suppressErrors' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |         /// Suppress warnings
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:19:27: warning: static property 'suppressWarnings' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
17 |
18 |         /// Suppress warnings
19 |         public static let suppressWarnings = Options(HTML_PARSE_NOWARNING)
   |                           |- warning: static property 'suppressWarnings' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'suppressWarnings' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |         /// Pedantic error reporting
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:22:27: warning: static property 'pedantic' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
20 |
21 |         /// Pedantic error reporting
22 |         public static let pedantic = Options(HTML_PARSE_PEDANTIC)
   |                           |- warning: static property 'pedantic' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'pedantic' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |         /// Remove blank nodes
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:25:27: warning: static property 'removeBlankNodes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
23 |
24 |         /// Remove blank nodes
25 |         public static let removeBlankNodes = Options(HTML_PARSE_NOBLANKS)
   |                           |- warning: static property 'removeBlankNodes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'removeBlankNodes' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |         /// Forbid network access
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:28:27: warning: static property 'forbidNetworkAccess' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
26 |
27 |         /// Forbid network access
28 |         public static let forbidNetworkAccess = Options(HTML_PARSE_NONET)
   |                           |- warning: static property 'forbidNetworkAccess' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'forbidNetworkAccess' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |         /// Do not add implied html/body... elements
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:31:27: warning: static property 'omitImpliedTags' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
29 |
30 |         /// Do not add implied html/body... elements
31 |         public static let omitImpliedTags = Options(HTML_PARSE_NOIMPLIED)
   |                           |- warning: static property 'omitImpliedTags' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'omitImpliedTags' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 |         /// Compact small text nodes
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:34:27: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
32 |
33 |         /// Compact small text nodes
34 |         public static let compact = Options(HTML_PARSE_COMPACT)
   |                           |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'compact' with '@MainActor' 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 |         /// Ignore internal document encoding hint
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:37:27: warning: static property 'ignoreDocumentEncodingHint' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
35 |
36 |         /// Ignore internal document encoding hint
37 |         public static let ignoreDocumentEncodingHint = Options(HTML_PARSE_IGNORE_ENC)
   |                           |- warning: static property 'ignoreDocumentEncodingHint' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'ignoreDocumentEncodingHint' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 |         init(_ xmlParserOption: htmlParserOption) {
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:77:17: warning: var 'initialization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
75 | // MARK: -
76 |
77 | fileprivate var initialization: Void = { xmlInitParser() }()
   |                 |- warning: var 'initialization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: convert 'initialization' to a 'let' constant to make 'Sendable' shared state immutable
   |                 |- note: annotate 'initialization' with '@MainActor' if property should only be accessed from the main actor
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
[40/47] Compiling HTML DocumentFragment.swift
[41/47] Emitting module HTML
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Extensions/XPath+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'NodeSet' to imported protocols 'RandomAccessCollection', 'BidirectionalCollection', 'Collection', 'Sequence'; this will not behave correctly if the owners of 'XPath' introduce this conformance in the future
 4 | import XPath
 5 |
 6 | extension XPath.NodeSet: RandomAccessCollection {
   | |- warning: extension declares a conformance of imported type 'NodeSet' to imported protocols 'RandomAccessCollection', 'BidirectionalCollection', 'Collection', 'Sequence'; this will not behave correctly if the owners of 'XPath' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |     public subscript(position: Int) -> Node? {
 8 |         precondition(position >= startIndex && position <= endIndex)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Node.swift:5:1: warning: extension declares a conformance of imported type 'Node' to imported protocol 'Constructable'; this will not behave correctly if the owners of 'DOM' introduce this conformance in the future
 3 | import DOM
 4 |
 5 | extension Node: Constructable {
   | |- warning: extension declares a conformance of imported type 'Node' to imported protocol 'Constructable'; this will not behave correctly if the owners of 'DOM' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 |     public static func construct(with rawValue: xmlNodePtr?) -> Node? {
 7 |         guard let rawValue = rawValue else {
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:10:27: warning: static property 'relaxed' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
 9 |         /// Relaxed parsing
10 |         public static let relaxed = Options(HTML_PARSE_RECOVER)
   |                           |- warning: static property 'relaxed' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'relaxed' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |         /// Do not default a doctype if not found
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:13:27: warning: static property 'noDefaultDTD' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
11 |
12 |         /// Do not default a doctype if not found
13 |         public static let noDefaultDTD = Options(HTML_PARSE_NODEFDTD)
   |                           |- warning: static property 'noDefaultDTD' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'noDefaultDTD' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |         /// Suppress errors
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:16:27: warning: static property 'suppressErrors' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
14 |
15 |         /// Suppress errors
16 |         public static let suppressErrors = Options(HTML_PARSE_NOERROR)
   |                           |- warning: static property 'suppressErrors' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'suppressErrors' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |         /// Suppress warnings
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:19:27: warning: static property 'suppressWarnings' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
17 |
18 |         /// Suppress warnings
19 |         public static let suppressWarnings = Options(HTML_PARSE_NOWARNING)
   |                           |- warning: static property 'suppressWarnings' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'suppressWarnings' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |         /// Pedantic error reporting
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:22:27: warning: static property 'pedantic' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
20 |
21 |         /// Pedantic error reporting
22 |         public static let pedantic = Options(HTML_PARSE_PEDANTIC)
   |                           |- warning: static property 'pedantic' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'pedantic' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |         /// Remove blank nodes
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:25:27: warning: static property 'removeBlankNodes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
23 |
24 |         /// Remove blank nodes
25 |         public static let removeBlankNodes = Options(HTML_PARSE_NOBLANKS)
   |                           |- warning: static property 'removeBlankNodes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'removeBlankNodes' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |         /// Forbid network access
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:28:27: warning: static property 'forbidNetworkAccess' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
26 |
27 |         /// Forbid network access
28 |         public static let forbidNetworkAccess = Options(HTML_PARSE_NONET)
   |                           |- warning: static property 'forbidNetworkAccess' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'forbidNetworkAccess' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |         /// Do not add implied html/body... elements
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:31:27: warning: static property 'omitImpliedTags' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
29 |
30 |         /// Do not add implied html/body... elements
31 |         public static let omitImpliedTags = Options(HTML_PARSE_NOIMPLIED)
   |                           |- warning: static property 'omitImpliedTags' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'omitImpliedTags' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 |         /// Compact small text nodes
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:34:27: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
32 |
33 |         /// Compact small text nodes
34 |         public static let compact = Options(HTML_PARSE_COMPACT)
   |                           |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'compact' with '@MainActor' 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 |         /// Ignore internal document encoding hint
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:37:27: warning: static property 'ignoreDocumentEncodingHint' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | public enum Parser {
 6 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 7 |         public var rawValue: Int32
 8 |
   :
35 |
36 |         /// Ignore internal document encoding hint
37 |         public static let ignoreDocumentEncodingHint = Options(HTML_PARSE_IGNORE_ENC)
   |                           |- warning: static property 'ignoreDocumentEncodingHint' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'ignoreDocumentEncodingHint' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 |         init(_ xmlParserOption: htmlParserOption) {
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Parser.swift:77:17: warning: var 'initialization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
75 | // MARK: -
76 |
77 | fileprivate var initialization: Void = { xmlInitParser() }()
   |                 |- warning: var 'initialization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: convert 'initialization' to a 'let' constant to make 'Sendable' shared state immutable
   |                 |- note: annotate 'initialization' with '@MainActor' if property should only be accessed from the main actor
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
[42/47] Compiling XML DocumentFragment.swift
[43/47] Compiling XML XPath+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/XML/Extensions/XPath+Extensions.swift:12:1: warning: extension declares a conformance of imported type 'NodeSet' to imported protocols 'RandomAccessCollection', 'BidirectionalCollection', 'Collection', 'Sequence'; this will not behave correctly if the owners of 'XPath' introduce this conformance in the future
10 | }
11 |
12 | extension XPath.NodeSet: RandomAccessCollection {
   | |- warning: extension declares a conformance of imported type 'NodeSet' to imported protocols 'RandomAccessCollection', 'BidirectionalCollection', 'Collection', 'Sequence'; this will not behave correctly if the owners of 'XPath' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
13 |     public subscript(position: Int) -> Node? {
14 |         precondition(position >= startIndex && position <= endIndex)
[44/47] Compiling XML Element.swift
[45/47] Compiling XML CDATA.swift
[46/47] Emitting module XML
/Users/admin/builder/spi-builder-workspace/Sources/XML/Document.swift:11:27: warning: static property 'wellFormed' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | public final class Document: DOM.Document {
  7 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
  8 |         public var rawValue: Int32
  9 |
 10 |         /// Document is XML well formed
 11 |         public static let wellFormed = Properties(XML_DOC_WELLFORMED)
    |                           |- warning: static property 'wellFormed' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'wellFormed' with '@MainActor' 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 |
 13 |         /// Document is Namespace valid
/Users/admin/builder/spi-builder-workspace/Sources/XML/Document.swift:14:27: warning: static property 'namespaceValid' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | public final class Document: DOM.Document {
  7 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
  8 |         public var rawValue: Int32
  9 |
    :
 12 |
 13 |         /// Document is Namespace valid
 14 |         public static let namespaceValid = Properties(XML_DOC_NSVALID)
    |                           |- warning: static property 'namespaceValid' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'namespaceValid' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |
 16 |         /// DTD validation was successful
/Users/admin/builder/spi-builder-workspace/Sources/XML/Document.swift:17:27: warning: static property 'dtdValid' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | public final class Document: DOM.Document {
  7 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
  8 |         public var rawValue: Int32
  9 |
    :
 15 |
 16 |         /// DTD validation was successful
 17 |         public static let dtdValid = Properties(XML_DOC_DTDVALID)
    |                           |- warning: static property 'dtdValid' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'dtdValid' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |         /// XInclude substitution was done
/Users/admin/builder/spi-builder-workspace/Sources/XML/Document.swift:20:27: warning: static property 'performedXIncludeSubstitution' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | public final class Document: DOM.Document {
  7 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
  8 |         public var rawValue: Int32
  9 |
    :
 18 |
 19 |         /// XInclude substitution was done
 20 |         public static let performedXIncludeSubstitution = Properties(XML_DOC_XINCLUDE)
    |                           |- warning: static property 'performedXIncludeSubstitution' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'performedXIncludeSubstitution' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |         /// Document was built using the API and not by parsing an instance
/Users/admin/builder/spi-builder-workspace/Sources/XML/Document.swift:23:27: warning: static property 'userBuilt' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | public final class Document: DOM.Document {
  7 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
  8 |         public var rawValue: Int32
  9 |
    :
 21 |
 22 |         /// Document was built using the API and not by parsing an instance
 23 |         public static let userBuilt = Properties(XML_DOC_USERBUILT)
    |                           |- warning: static property 'userBuilt' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'userBuilt' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |
 25 |         /// Built for internal processing
/Users/admin/builder/spi-builder-workspace/Sources/XML/Document.swift:26:27: warning: static property 'internalProcessing' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | public final class Document: DOM.Document {
  7 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
  8 |         public var rawValue: Int32
  9 |
    :
 24 |
 25 |         /// Built for internal processing
 26 |         public static let internalProcessing = Properties(XML_DOC_INTERNAL)
    |                           |- warning: static property 'internalProcessing' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'internalProcessing' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |
 28 |         init(_ xmlDocProperties: xmlDocProperties) {
/Users/admin/builder/spi-builder-workspace/Sources/XML/Extensions/XPath+Extensions.swift:12:1: warning: extension declares a conformance of imported type 'NodeSet' to imported protocols 'RandomAccessCollection', 'BidirectionalCollection', 'Collection', 'Sequence'; this will not behave correctly if the owners of 'XPath' introduce this conformance in the future
10 | }
11 |
12 | extension XPath.NodeSet: RandomAccessCollection {
   | |- warning: extension declares a conformance of imported type 'NodeSet' to imported protocols 'RandomAccessCollection', 'BidirectionalCollection', 'Collection', 'Sequence'; this will not behave correctly if the owners of 'XPath' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
13 |     public subscript(position: Int) -> Node? {
14 |         precondition(position >= startIndex && position <= endIndex)
/Users/admin/builder/spi-builder-workspace/Sources/XML/Node.swift:5:1: warning: extension declares a conformance of imported type 'Node' to imported protocol 'Constructable'; this will not behave correctly if the owners of 'DOM' introduce this conformance in the future
 3 | import DOM
 4 |
 5 | extension Node: Constructable {
   | |- warning: extension declares a conformance of imported type 'Node' to imported protocol 'Constructable'; this will not behave correctly if the owners of 'DOM' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 |     public static func construct(with rawValue: xmlNodePtr?) -> Node? {
 7 |         guard let rawValue = rawValue else {
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:10:27: warning: static property 'relaxed' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
  9 |         /// Relaxed parser
 10 |         public static let relaxed = Options(XML_PARSE_RECOVER)
    |                           |- warning: static property 'relaxed' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'relaxed' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |
 12 |         /// Substitute entities.
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:13:27: warning: static property 'substituteEntities' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 11 |
 12 |         /// Substitute entities.
 13 |         public static let substituteEntities = Options(XML_PARSE_NOENT)
    |                           |- warning: static property 'substituteEntities' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'substituteEntities' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |
 15 |         /// Load external subset
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:16:27: warning: static property 'loadDTDExternalSubset' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 14 |
 15 |         /// Load external subset
 16 |         public static let loadDTDExternalSubset = Options(XML_PARSE_DTDLOAD)
    |                           |- warning: static property 'loadDTDExternalSubset' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'loadDTDExternalSubset' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 17 |
 18 |         /// Use default DTD attributes
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:19:27: warning: static property 'useDefaultDTDAttributes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 17 |
 18 |         /// Use default DTD attributes
 19 |         public static let useDefaultDTDAttributes = Options(XML_PARSE_DTDATTR)
    |                           |- warning: static property 'useDefaultDTDAttributes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'useDefaultDTDAttributes' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 |
 21 |         /// Validate with the DTD
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:22:27: warning: static property 'validateDTD' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 20 |
 21 |         /// Validate with the DTD
 22 |         public static let validateDTD = Options(XML_PARSE_DTDVALID)
    |                           |- warning: static property 'validateDTD' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'validateDTD' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |
 24 |         /// Suppress errors
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:25:27: warning: static property 'suppressErrors' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 23 |
 24 |         /// Suppress errors
 25 |         public static let suppressErrors = Options(XML_PARSE_NOERROR)
    |                           |- warning: static property 'suppressErrors' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'suppressErrors' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |         /// Suppress warnings
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:28:27: warning: static property 'suppressWarnings' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 26 |
 27 |         /// Suppress warnings
 28 |         public static let suppressWarnings = Options(XML_PARSE_NOWARNING)
    |                           |- warning: static property 'suppressWarnings' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'suppressWarnings' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |
 30 |         /// Pedantic error reporting
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:31:27: warning: static property 'pedantic' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 29 |
 30 |         /// Pedantic error reporting
 31 |         public static let pedantic = Options(XML_PARSE_PEDANTIC)
    |                           |- warning: static property 'pedantic' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'pedantic' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |         /// Remove blank nodes
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:34:27: warning: static property 'removeBlankNodes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 32 |
 33 |         /// Remove blank nodes
 34 |         public static let removeBlankNodes = Options(XML_PARSE_NOBLANKS)
    |                           |- warning: static property 'removeBlankNodes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'removeBlankNodes' with '@MainActor' 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 |         /// Use the SAX1 interface
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:37:27: warning: static property 'useSAX1Interface' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 35 |
 36 |         /// Use the SAX1 interface
 37 |         public static let useSAX1Interface = Options(XML_PARSE_SAX1)
    |                           |- warning: static property 'useSAX1Interface' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'useSAX1Interface' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |         /// Implement XInclude substituion
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:40:27: warning: static property 'implementXIncludeSubstitution' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 38 |
 39 |         /// Implement XInclude substituion
 40 |         public static let implementXIncludeSubstitution = Options(XML_PARSE_XINCLUDE)
    |                           |- warning: static property 'implementXIncludeSubstitution' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'implementXIncludeSubstitution' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |         /// Forbid network access
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:43:27: warning: static property 'forbidNetworkAccess' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 41 |
 42 |         /// Forbid network access
 43 |         public static let forbidNetworkAccess = Options(XML_PARSE_NONET)
    |                           |- warning: static property 'forbidNetworkAccess' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'forbidNetworkAccess' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |         /// Do not reuse the context dictionary
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:46:27: warning: static property 'noContextDictionaryReuse' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 44 |
 45 |         /// Do not reuse the context dictionary
 46 |         public static let noContextDictionaryReuse = Options(XML_PARSE_NODICT)
    |                           |- warning: static property 'noContextDictionaryReuse' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'noContextDictionaryReuse' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |         /// Remove redundant namespaces declarations
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:49:27: warning: static property 'removeRedundantNamespaceDeclarations' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 47 |
 48 |         /// Remove redundant namespaces declarations
 49 |         public static let removeRedundantNamespaceDeclarations = Options(XML_PARSE_NSCLEAN)
    |                           |- warning: static property 'removeRedundantNamespaceDeclarations' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'removeRedundantNamespaceDeclarations' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |         /// Merge CDATA as text nodes
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:52:27: warning: static property 'mergeCDATA' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 50 |
 51 |         /// Merge CDATA as text nodes
 52 |         public static let mergeCDATA = Options(XML_PARSE_NOCDATA)
    |                           |- warning: static property 'mergeCDATA' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'mergeCDATA' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |
 54 |         /// Do not generate XINCLUDE START/END nodes
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:55:27: warning: static property 'noXIncludeDelimiterNodes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 53 |
 54 |         /// Do not generate XINCLUDE START/END nodes
 55 |         public static let noXIncludeDelimiterNodes = Options(XML_PARSE_NOXINCNODE)
    |                           |- warning: static property 'noXIncludeDelimiterNodes' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'noXIncludeDelimiterNodes' with '@MainActor' 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 |         /// Compact small text nodes.
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:59:27: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 57 |         /// Compact small text nodes.
 58 |         /// - Warning: Modification of the resulting tree isn't allowed
 59 |         public static let compact = Options(XML_PARSE_COMPACT)
    |                           |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 60 |
 61 |         /// Do not fixup XINCLUDE xml:base uris
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:62:27: warning: static property 'noXIncludeBaseURIFixup' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 60 |
 61 |         /// Do not fixup XINCLUDE xml:base uris
 62 |         public static let noXIncludeBaseURIFixup = Options(XML_PARSE_NOBASEFIX)
    |                           |- warning: static property 'noXIncludeBaseURIFixup' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'noXIncludeBaseURIFixup' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 63 |
 64 |         /// Relax any hardcoded limit from the parser
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:65:27: warning: static property 'relaxHardcodedLimits' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 63 |
 64 |         /// Relax any hardcoded limit from the parser
 65 |         public static let relaxHardcodedLimits = Options(XML_PARSE_HUGE)
    |                           |- warning: static property 'relaxHardcodedLimits' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'relaxHardcodedLimits' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |
 67 |         /// Ignore internal document encoding hint
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:68:27: warning: static property 'ignoreEncodingHint' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 66 |
 67 |         /// Ignore internal document encoding hint
 68 |         public static let ignoreEncodingHint = Options(XML_PARSE_IGNORE_ENC)
    |                           |- warning: static property 'ignoreEncodingHint' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'ignoreEncodingHint' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |
 70 |         /// Store big lines numbers in text PSVI field
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:71:27: warning: static property 'bigLineNumbers' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | public enum Parser {
  6 |     public struct Options: OptionSet {
    |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
  7 |         public var rawValue: Int32
  8 |
    :
 69 |
 70 |         /// Store big lines numbers in text PSVI field
 71 |         public static let bigLineNumbers = Options(XML_PARSE_BIG_LINES)
    |                           |- warning: static property 'bigLineNumbers' is not concurrency-safe because non-'Sendable' type 'Parser.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'bigLineNumbers' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |         init(_ xmlParserOption: xmlParserOption) {
/Users/admin/builder/spi-builder-workspace/Sources/XML/Parser.swift:109:17: warning: var 'initialization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
107 | // MARK: -
108 |
109 | fileprivate var initialization: Void = { xmlInitParser() }()
    |                 |- warning: var 'initialization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: convert 'initialization' to a 'let' constant to make 'Sendable' shared state immutable
    |                 |- note: annotate 'initialization' with '@MainActor' if property should only be accessed from the main actor
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |
[47/47] Compiling XML Document.swift
/Users/admin/builder/spi-builder-workspace/Sources/XML/Document.swift:11:27: warning: static property 'wellFormed' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | public final class Document: DOM.Document {
  7 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
  8 |         public var rawValue: Int32
  9 |
 10 |         /// Document is XML well formed
 11 |         public static let wellFormed = Properties(XML_DOC_WELLFORMED)
    |                           |- warning: static property 'wellFormed' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'wellFormed' with '@MainActor' 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 |
 13 |         /// Document is Namespace valid
/Users/admin/builder/spi-builder-workspace/Sources/XML/Document.swift:14:27: warning: static property 'namespaceValid' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | public final class Document: DOM.Document {
  7 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
  8 |         public var rawValue: Int32
  9 |
    :
 12 |
 13 |         /// Document is Namespace valid
 14 |         public static let namespaceValid = Properties(XML_DOC_NSVALID)
    |                           |- warning: static property 'namespaceValid' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'namespaceValid' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |
 16 |         /// DTD validation was successful
/Users/admin/builder/spi-builder-workspace/Sources/XML/Document.swift:17:27: warning: static property 'dtdValid' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | public final class Document: DOM.Document {
  7 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
  8 |         public var rawValue: Int32
  9 |
    :
 15 |
 16 |         /// DTD validation was successful
 17 |         public static let dtdValid = Properties(XML_DOC_DTDVALID)
    |                           |- warning: static property 'dtdValid' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'dtdValid' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |         /// XInclude substitution was done
/Users/admin/builder/spi-builder-workspace/Sources/XML/Document.swift:20:27: warning: static property 'performedXIncludeSubstitution' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | public final class Document: DOM.Document {
  7 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
  8 |         public var rawValue: Int32
  9 |
    :
 18 |
 19 |         /// XInclude substitution was done
 20 |         public static let performedXIncludeSubstitution = Properties(XML_DOC_XINCLUDE)
    |                           |- warning: static property 'performedXIncludeSubstitution' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'performedXIncludeSubstitution' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |         /// Document was built using the API and not by parsing an instance
/Users/admin/builder/spi-builder-workspace/Sources/XML/Document.swift:23:27: warning: static property 'userBuilt' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | public final class Document: DOM.Document {
  7 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
  8 |         public var rawValue: Int32
  9 |
    :
 21 |
 22 |         /// Document was built using the API and not by parsing an instance
 23 |         public static let userBuilt = Properties(XML_DOC_USERBUILT)
    |                           |- warning: static property 'userBuilt' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'userBuilt' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |
 25 |         /// Built for internal processing
/Users/admin/builder/spi-builder-workspace/Sources/XML/Document.swift:26:27: warning: static property 'internalProcessing' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 | public final class Document: DOM.Document {
  7 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
  8 |         public var rawValue: Int32
  9 |
    :
 24 |
 25 |         /// Built for internal processing
 26 |         public static let internalProcessing = Properties(XML_DOC_INTERNAL)
    |                           |- warning: static property 'internalProcessing' is not concurrency-safe because non-'Sendable' type 'Document.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'internalProcessing' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |
 28 |         init(_ xmlDocProperties: xmlDocProperties) {
/Users/admin/builder/spi-builder-workspace/Sources/XML/Document.swift:63:17: warning: reference to var 'xmlFree' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 61 |     public override var description: String {
 62 |         var buffer: UnsafeMutablePointer<xmlChar>?
 63 |         defer { xmlFree(buffer) }
    |                 `- warning: reference to var 'xmlFree' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 64 |
 65 |         xmlDocDumpMemoryEnc(xmlDoc, &buffer, nil, "UTF-8")
libxml2.xmlFree:1:12: note: var declared here
1 | public var xmlFree: xmlFreeFunc!
  |            `- note: var declared here
Build complete! (18.74s)
warning: failed to retrieve search paths with pkg-config; maybe pkg-config is not installed
warning: couldn't find pc file for libxml-2.0
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Markup",
  "name" : "Markup",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Markup",
      "targets" : [
        "XML",
        "HTML"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "libxml2",
      "module_type" : "SystemLibraryTarget",
      "name" : "libxml2",
      "path" : "Modules",
      "product_memberships" : [
        "Markup"
      ],
      "sources" : [
      ],
      "type" : "system-target"
    },
    {
      "c99name" : "XSLT",
      "module_type" : "SwiftTarget",
      "name" : "XSLT",
      "path" : "Sources/XSLT",
      "sources" : [
        "XSLT.swift"
      ],
      "target_dependencies" : [
        "libxml2"
      ],
      "type" : "library"
    },
    {
      "c99name" : "XPath",
      "module_type" : "SwiftTarget",
      "name" : "XPath",
      "path" : "Sources/XPath",
      "product_memberships" : [
        "Markup"
      ],
      "sources" : [
        "Context.swift",
        "Expression.swift",
        "NodeSet.swift",
        "Object.swift",
        "XPath.swift"
      ],
      "target_dependencies" : [
        "DOM",
        "libxml2"
      ],
      "type" : "library"
    },
    {
      "c99name" : "XMLTests",
      "module_type" : "SwiftTarget",
      "name" : "XMLTests",
      "path" : "Tests/XMLTests",
      "sources" : [
        "XMLBuilderTests.swift",
        "XMLTests.swift"
      ],
      "target_dependencies" : [
        "XML"
      ],
      "type" : "test"
    },
    {
      "c99name" : "XML",
      "module_type" : "SwiftTarget",
      "name" : "XML",
      "path" : "Sources/XML",
      "product_memberships" : [
        "Markup"
      ],
      "sources" : [
        "CDATA.swift",
        "Document.swift",
        "DocumentFragment.swift",
        "Element.swift",
        "Extensions/XPath+Extensions.swift",
        "Namespace.swift",
        "Node.swift",
        "Parser.swift"
      ],
      "target_dependencies" : [
        "DOM",
        "XPath",
        "libxml2"
      ],
      "type" : "library"
    },
    {
      "c99name" : "XInclude",
      "module_type" : "SwiftTarget",
      "name" : "XInclude",
      "path" : "Sources/XInclude",
      "sources" : [
        "XInclude.swift"
      ],
      "target_dependencies" : [
        "libxml2"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HTMLTests",
      "module_type" : "SwiftTarget",
      "name" : "HTMLTests",
      "path" : "Tests/HTMLTests",
      "sources" : [
        "HTMLBuilderTests.swift",
        "HTMLTests.swift"
      ],
      "target_dependencies" : [
        "HTML"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HTML",
      "module_type" : "SwiftTarget",
      "name" : "HTML",
      "path" : "Sources/HTML",
      "product_memberships" : [
        "Markup"
      ],
      "sources" : [
        "Document.swift",
        "DocumentFragment.swift",
        "Element.swift",
        "Extensions/XPath+Extensions.swift",
        "HTMLTags.swift",
        "Node.swift",
        "Parser.swift"
      ],
      "target_dependencies" : [
        "DOM",
        "XPath",
        "libxml2"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DOM",
      "module_type" : "SwiftTarget",
      "name" : "DOM",
      "path" : "Sources/DOM",
      "product_memberships" : [
        "Markup"
      ],
      "sources" : [
        "Builders/DOMBuilder.swift",
        "Builders/StringBuilder.swift",
        "Comment.swift",
        "Document.swift",
        "DocumentFragment.swift",
        "DocumentType.swift",
        "Element.swift",
        "Error.swift",
        "Extensions/String+Extensions.swift",
        "Node.swift",
        "ProcessingInstruction.swift",
        "Text.swift"
      ],
      "target_dependencies" : [
        "libxml2"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.