Build Information
Successful build of ContentstackUtils, reference v1.5.0 (a02d89), with Swift 6.1 for macOS (SPM) on 6 Apr 2026 13:52:09 UTC.
Swift 6 data race errors: 50
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCapturesBuild Log
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
42 | public static let STRICT = Libxml2HTMLParserOptions(0)
43 | public static let RECOVER = Libxml2HTMLParserOptions(HTML_PARSE_RECOVER)
44 | public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD)
| |- warning: static property 'NODEFDTD' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NODEFDTD' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:45:23: warning: static property 'NOERROR' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
43 | public static let RECOVER = Libxml2HTMLParserOptions(HTML_PARSE_RECOVER)
44 | public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD)
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
| |- warning: static property 'NOERROR' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOERROR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:46:23: warning: static property 'NOWARNING' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
44 | public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD)
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
| |- warning: static property 'NOWARNING' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOWARNING' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:47:23: warning: static property 'PEDANTIC' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
| |- warning: static property 'PEDANTIC' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PEDANTIC' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:48:23: warning: static property 'NOBLANKS' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
| |- warning: static property 'NOBLANKS' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOBLANKS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:49:23: warning: static property 'NONET' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
| |- warning: static property 'NONET' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NONET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
51 | public static let COMPACT = Libxml2HTMLParserOptions(HTML_PARSE_COMPACT)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:50:23: warning: static property 'NOIMPLIED' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
| |- warning: static property 'NOIMPLIED' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOIMPLIED' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | public static let COMPACT = Libxml2HTMLParserOptions(HTML_PARSE_COMPACT)
52 | public static let IGNORE_ENC = Libxml2HTMLParserOptions(HTML_PARSE_IGNORE_ENC)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:51:23: warning: static property 'COMPACT' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
51 | public static let COMPACT = Libxml2HTMLParserOptions(HTML_PARSE_COMPACT)
| |- warning: static property 'COMPACT' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPACT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | public static let IGNORE_ENC = Libxml2HTMLParserOptions(HTML_PARSE_IGNORE_ENC)
53 | }
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:52:23: warning: static property 'IGNORE_ENC' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
51 | public static let COMPACT = Libxml2HTMLParserOptions(HTML_PARSE_COMPACT)
52 | public static let IGNORE_ENC = Libxml2HTMLParserOptions(HTML_PARSE_IGNORE_ENC)
| |- warning: static property 'IGNORE_ENC' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IGNORE_ENC' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:69:23: warning: static property 'STRICT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
67 | public var rawValue: UInt { value }
68 |
69 | public static let STRICT = Libxml2XMLParserOptions(0)
| |- warning: static property 'STRICT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'STRICT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 | public static let RECOVER = Libxml2XMLParserOptions(XML_PARSE_RECOVER)
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:70:23: warning: static property 'RECOVER' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
68 |
69 | public static let STRICT = Libxml2XMLParserOptions(0)
70 | public static let RECOVER = Libxml2XMLParserOptions(XML_PARSE_RECOVER)
| |- warning: static property 'RECOVER' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'RECOVER' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:71:23: warning: static property 'NOENT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
69 | public static let STRICT = Libxml2XMLParserOptions(0)
70 | public static let RECOVER = Libxml2XMLParserOptions(XML_PARSE_RECOVER)
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
| |- warning: static property 'NOENT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOENT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:72:23: warning: static property 'DTDLOAD' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
70 | public static let RECOVER = Libxml2XMLParserOptions(XML_PARSE_RECOVER)
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
| |- warning: static property 'DTDLOAD' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'DTDLOAD' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:73:23: warning: static property 'DTDATTR' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
| |- warning: static property 'DTDATTR' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'DTDATTR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:74:23: warning: static property 'DTDVALID' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
| |- warning: static property 'DTDVALID' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'DTDVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:75:23: warning: static property 'NOERROR' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
| |- warning: static property 'NOERROR' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOERROR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:76:23: warning: static property 'NOWARNING' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
| |- warning: static property 'NOWARNING' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOWARNING' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:77:23: warning: static property 'PEDANTIC' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
| |- warning: static property 'PEDANTIC' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PEDANTIC' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:78:23: warning: static property 'NOBLANKS' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
| |- warning: static property 'NOBLANKS' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOBLANKS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:79:23: warning: static property 'SAX1' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
| |- warning: static property 'SAX1' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'SAX1' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:80:23: warning: static property 'XINCLUDE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
| |- warning: static property 'XINCLUDE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'XINCLUDE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:81:23: warning: static property 'NONET' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
| |- warning: static property 'NONET' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NONET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:82:23: warning: static property 'NODICT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
| |- warning: static property 'NODICT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NODICT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:83:23: warning: static property 'NSCLEAN' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
| |- warning: static property 'NSCLEAN' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NSCLEAN' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:84:23: warning: static property 'NOCDATA' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
| |- warning: static property 'NOCDATA' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOCDATA' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:85:23: warning: static property 'NOXINCNODE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
| |- warning: static property 'NOXINCNODE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOXINCNODE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:86:23: warning: static property 'COMPACT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
| |- warning: static property 'COMPACT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPACT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:87:23: warning: static property 'OLD10' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
| |- warning: static property 'OLD10' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'OLD10' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:88:23: warning: static property 'NOBASEFIX' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
| |- warning: static property 'NOBASEFIX' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOBASEFIX' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:89:23: warning: static property 'HUGE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
| |- warning: static property 'HUGE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'HUGE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
91 | public static let IGNORE_ENC = Libxml2XMLParserOptions(XML_PARSE_IGNORE_ENC)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:90:23: warning: static property 'OLDSAX' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
| |- warning: static property 'OLDSAX' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'OLDSAX' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 | public static let IGNORE_ENC = Libxml2XMLParserOptions(XML_PARSE_IGNORE_ENC)
92 | public static let BIG_LINES = Libxml2XMLParserOptions(XML_PARSE_BIG_LINES)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:91:23: warning: static property 'IGNORE_ENC' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
91 | public static let IGNORE_ENC = Libxml2XMLParserOptions(XML_PARSE_IGNORE_ENC)
| |- warning: static property 'IGNORE_ENC' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IGNORE_ENC' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 | public static let BIG_LINES = Libxml2XMLParserOptions(XML_PARSE_BIG_LINES)
93 | }
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:92:23: warning: static property 'BIG_LINES' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
91 | public static let IGNORE_ENC = Libxml2XMLParserOptions(XML_PARSE_IGNORE_ENC)
92 | public static let BIG_LINES = Libxml2XMLParserOptions(XML_PARSE_BIG_LINES)
| |- warning: static property 'BIG_LINES' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'BIG_LINES' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
93 | }
94 |
[4/27] Compiling ContentstackUtils GQLEmbededAsset.swift
/Users/admin/builder/spi-builder-workspace/Sources/ContentstackUtils/GQLEmbededAsset.swift:9:16: warning: static property 'contentTypeUid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | internal class GQLEmbededAsset: Decodable, EmbeddedAsset {
9 | static var contentTypeUid: String = "sys_asset"
| |- warning: static property 'contentTypeUid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'contentTypeUid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'contentTypeUid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | var uid: String
/Users/admin/builder/spi-builder-workspace/Sources/ContentstackUtils/GQLEmbededEntry.swift:9:16: warning: static property 'contentTypeUid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | internal class GQLEmbededEntry: Decodable, EmbeddedEntry {
9 | static var contentTypeUid: String = "GQL"
| |- warning: static property 'contentTypeUid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'contentTypeUid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'contentTypeUid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | var title: String
[5/27] Compiling ContentstackUtils GQLEmbededEntry.swift
/Users/admin/builder/spi-builder-workspace/Sources/ContentstackUtils/GQLEmbededAsset.swift:9:16: warning: static property 'contentTypeUid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | internal class GQLEmbededAsset: Decodable, EmbeddedAsset {
9 | static var contentTypeUid: String = "sys_asset"
| |- warning: static property 'contentTypeUid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'contentTypeUid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'contentTypeUid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | var uid: String
/Users/admin/builder/spi-builder-workspace/Sources/ContentstackUtils/GQLEmbededEntry.swift:9:16: warning: static property 'contentTypeUid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | internal class GQLEmbededEntry: Decodable, EmbeddedEntry {
9 | static var contentTypeUid: String = "GQL"
| |- warning: static property 'contentTypeUid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'contentTypeUid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'contentTypeUid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | var title: String
[6/27] Compiling ContentstackUtils JSONNode.swift
/Users/admin/builder/spi-builder-workspace/Sources/ContentstackUtils/GQLEmbededAsset.swift:9:16: warning: static property 'contentTypeUid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | internal class GQLEmbededAsset: Decodable, EmbeddedAsset {
9 | static var contentTypeUid: String = "sys_asset"
| |- warning: static property 'contentTypeUid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'contentTypeUid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'contentTypeUid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | var uid: String
/Users/admin/builder/spi-builder-workspace/Sources/ContentstackUtils/GQLEmbededEntry.swift:9:16: warning: static property 'contentTypeUid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | internal class GQLEmbededEntry: Decodable, EmbeddedEntry {
9 | static var contentTypeUid: String = "GQL"
| |- warning: static property 'contentTypeUid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'contentTypeUid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'contentTypeUid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | var title: String
[7/27] Compiling ContentstackUtils Node.swift
[8/27] Compiling ContentstackUtils NodeType.swift
[9/27] Compiling ContentstackUtils JSONNodes.swift
[10/27] Compiling ContentstackUtils MarkType.swift
[11/27] Compiling ContentstackUtils Metadata.swift
[12/27] Compiling ContentstackUtils ConnectionNode.swift
[13/27] Compiling ContentstackUtils ContentstackUtils.swift
[14/27] Compiling ContentstackUtils Decodable.swift
[15/27] Compiling ContentstackUtils CSS.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:144:13: warning: let 'matchElement' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
142 | private let escapePattern = "(?:\\\\([!\"#\\$%&\'\\(\\)\\*\\+,\\./:;<=>\\?@\\[\\\\\\]\\^`\\{\\|\\}~]))"
143 | private let escapeRepeatPattern = "\(escapePattern)*"
144 | private let matchElement = firstMatch("^((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)((\\|)((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+))?")
| |- warning: let 'matchElement' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchElement' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
145 | private let matchClassId = firstMatch("^([#.])((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)")
146 | private let matchAttr1 = firstMatch("^\\[([^\\]]*)\\]")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:145:13: warning: let 'matchClassId' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
143 | private let escapeRepeatPattern = "\(escapePattern)*"
144 | private let matchElement = firstMatch("^((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)((\\|)((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+))?")
145 | private let matchClassId = firstMatch("^([#.])((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)")
| |- warning: let 'matchClassId' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchClassId' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | private let matchAttr1 = firstMatch("^\\[([^\\]]*)\\]")
147 | private let matchAttr2 = firstMatch("^\\[\\s*([^~\\|\\^\\$\\*=\\s]+)\\s*([~\\|\\^\\$\\*]?=)\\s*(.*)\\s*\\]")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:146:13: warning: let 'matchAttr1' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
144 | private let matchElement = firstMatch("^((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)((\\|)((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+))?")
145 | private let matchClassId = firstMatch("^([#.])((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)")
146 | private let matchAttr1 = firstMatch("^\\[([^\\]]*)\\]")
| |- warning: let 'matchAttr1' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchAttr1' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 | private let matchAttr2 = firstMatch("^\\[\\s*([^~\\|\\^\\$\\*=\\s]+)\\s*([~\\|\\^\\$\\*]?=)\\s*(.*)\\s*\\]")
148 | private let matchAttrN = firstMatch("^:not\\((.*?\\)?)\\)")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:147:13: warning: let 'matchAttr2' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
145 | private let matchClassId = firstMatch("^([#.])((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)")
146 | private let matchAttr1 = firstMatch("^\\[([^\\]]*)\\]")
147 | private let matchAttr2 = firstMatch("^\\[\\s*([^~\\|\\^\\$\\*=\\s]+)\\s*([~\\|\\^\\$\\*]?=)\\s*(.*)\\s*\\]")
| |- warning: let 'matchAttr2' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchAttr2' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
148 | private let matchAttrN = firstMatch("^:not\\((.*?\\)?)\\)")
149 | private let matchPseudo = firstMatch("^:([\'\"()a-z0-9_+-]+)")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:148:13: warning: let 'matchAttrN' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
146 | private let matchAttr1 = firstMatch("^\\[([^\\]]*)\\]")
147 | private let matchAttr2 = firstMatch("^\\[\\s*([^~\\|\\^\\$\\*=\\s]+)\\s*([~\\|\\^\\$\\*]?=)\\s*(.*)\\s*\\]")
148 | private let matchAttrN = firstMatch("^:not\\((.*?\\)?)\\)")
| |- warning: let 'matchAttrN' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchAttrN' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | private let matchPseudo = firstMatch("^:([\'\"()a-z0-9_+-]+)")
150 | private let matchCombinator = firstMatch("^\\s*([\\s>+~,])\\s*")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:149:13: warning: let 'matchPseudo' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
147 | private let matchAttr2 = firstMatch("^\\[\\s*([^~\\|\\^\\$\\*=\\s]+)\\s*([~\\|\\^\\$\\*]?=)\\s*(.*)\\s*\\]")
148 | private let matchAttrN = firstMatch("^:not\\((.*?\\)?)\\)")
149 | private let matchPseudo = firstMatch("^:([\'\"()a-z0-9_+-]+)")
| |- warning: let 'matchPseudo' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchPseudo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | private let matchCombinator = firstMatch("^\\s*([\\s>+~,])\\s*")
151 | private let matchSubNthChild = firstMatch("^(nth-child|nth-last-child)\\(\\s*(odd|even|\\d+)\\s*\\)")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:150:13: warning: let 'matchCombinator' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
148 | private let matchAttrN = firstMatch("^:not\\((.*?\\)?)\\)")
149 | private let matchPseudo = firstMatch("^:([\'\"()a-z0-9_+-]+)")
150 | private let matchCombinator = firstMatch("^\\s*([\\s>+~,])\\s*")
| |- warning: let 'matchCombinator' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchCombinator' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | private let matchSubNthChild = firstMatch("^(nth-child|nth-last-child)\\(\\s*(odd|even|\\d+)\\s*\\)")
152 | private let matchSubNthChildN = firstMatch("^(nth-child|nth-last-child)\\(\\s*(-?\\d*)n(\\+\\d+)?\\s*\\)")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:151:13: warning: let 'matchSubNthChild' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
149 | private let matchPseudo = firstMatch("^:([\'\"()a-z0-9_+-]+)")
150 | private let matchCombinator = firstMatch("^\\s*([\\s>+~,])\\s*")
151 | private let matchSubNthChild = firstMatch("^(nth-child|nth-last-child)\\(\\s*(odd|even|\\d+)\\s*\\)")
| |- warning: let 'matchSubNthChild' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchSubNthChild' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | private let matchSubNthChildN = firstMatch("^(nth-child|nth-last-child)\\(\\s*(-?\\d*)n(\\+\\d+)?\\s*\\)")
153 | private let matchSubNthOfType = firstMatch("nth-of-type\\((odd|even|\\d+)\\)")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:152:13: warning: let 'matchSubNthChildN' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
150 | private let matchCombinator = firstMatch("^\\s*([\\s>+~,])\\s*")
151 | private let matchSubNthChild = firstMatch("^(nth-child|nth-last-child)\\(\\s*(odd|even|\\d+)\\s*\\)")
152 | private let matchSubNthChildN = firstMatch("^(nth-child|nth-last-child)\\(\\s*(-?\\d*)n(\\+\\d+)?\\s*\\)")
| |- warning: let 'matchSubNthChildN' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchSubNthChildN' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | private let matchSubNthOfType = firstMatch("nth-of-type\\((odd|even|\\d+)\\)")
154 | private let matchSubContains = firstMatch("contains\\([\"\'](.*?)[\"\']\\)")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:153:13: warning: let 'matchSubNthOfType' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
151 | private let matchSubNthChild = firstMatch("^(nth-child|nth-last-child)\\(\\s*(odd|even|\\d+)\\s*\\)")
152 | private let matchSubNthChildN = firstMatch("^(nth-child|nth-last-child)\\(\\s*(-?\\d*)n(\\+\\d+)?\\s*\\)")
153 | private let matchSubNthOfType = firstMatch("nth-of-type\\((odd|even|\\d+)\\)")
| |- warning: let 'matchSubNthOfType' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchSubNthOfType' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | private let matchSubContains = firstMatch("contains\\([\"\'](.*?)[\"\']\\)")
155 |
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:154:13: warning: let 'matchSubContains' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
152 | private let matchSubNthChildN = firstMatch("^(nth-child|nth-last-child)\\(\\s*(-?\\d*)n(\\+\\d+)?\\s*\\)")
153 | private let matchSubNthOfType = firstMatch("nth-of-type\\((odd|even|\\d+)\\)")
154 | private let matchSubContains = firstMatch("contains\\([\"\'](.*?)[\"\']\\)")
| |- warning: let 'matchSubContains' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchSubContains' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |
156 | private func substringWithRangeAtIndex(_ result: AKTextCheckingResult, str: String, at: Int) -> String {
[16/27] Compiling ContentstackUtils Deprecated.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:144:13: warning: let 'matchElement' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
142 | private let escapePattern = "(?:\\\\([!\"#\\$%&\'\\(\\)\\*\\+,\\./:;<=>\\?@\\[\\\\\\]\\^`\\{\\|\\}~]))"
143 | private let escapeRepeatPattern = "\(escapePattern)*"
144 | private let matchElement = firstMatch("^((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)((\\|)((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+))?")
| |- warning: let 'matchElement' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchElement' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
145 | private let matchClassId = firstMatch("^([#.])((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)")
146 | private let matchAttr1 = firstMatch("^\\[([^\\]]*)\\]")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:145:13: warning: let 'matchClassId' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
143 | private let escapeRepeatPattern = "\(escapePattern)*"
144 | private let matchElement = firstMatch("^((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)((\\|)((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+))?")
145 | private let matchClassId = firstMatch("^([#.])((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)")
| |- warning: let 'matchClassId' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchClassId' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | private let matchAttr1 = firstMatch("^\\[([^\\]]*)\\]")
147 | private let matchAttr2 = firstMatch("^\\[\\s*([^~\\|\\^\\$\\*=\\s]+)\\s*([~\\|\\^\\$\\*]?=)\\s*(.*)\\s*\\]")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:146:13: warning: let 'matchAttr1' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
144 | private let matchElement = firstMatch("^((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)((\\|)((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+))?")
145 | private let matchClassId = firstMatch("^([#.])((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)")
146 | private let matchAttr1 = firstMatch("^\\[([^\\]]*)\\]")
| |- warning: let 'matchAttr1' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchAttr1' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 | private let matchAttr2 = firstMatch("^\\[\\s*([^~\\|\\^\\$\\*=\\s]+)\\s*([~\\|\\^\\$\\*]?=)\\s*(.*)\\s*\\]")
148 | private let matchAttrN = firstMatch("^:not\\((.*?\\)?)\\)")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:147:13: warning: let 'matchAttr2' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
145 | private let matchClassId = firstMatch("^([#.])((?:[a-z0-9\\*_-]+\(escapeRepeatPattern))+)")
146 | private let matchAttr1 = firstMatch("^\\[([^\\]]*)\\]")
147 | private let matchAttr2 = firstMatch("^\\[\\s*([^~\\|\\^\\$\\*=\\s]+)\\s*([~\\|\\^\\$\\*]?=)\\s*(.*)\\s*\\]")
| |- warning: let 'matchAttr2' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchAttr2' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
148 | private let matchAttrN = firstMatch("^:not\\((.*?\\)?)\\)")
149 | private let matchPseudo = firstMatch("^:([\'\"()a-z0-9_+-]+)")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:148:13: warning: let 'matchAttrN' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
146 | private let matchAttr1 = firstMatch("^\\[([^\\]]*)\\]")
147 | private let matchAttr2 = firstMatch("^\\[\\s*([^~\\|\\^\\$\\*=\\s]+)\\s*([~\\|\\^\\$\\*]?=)\\s*(.*)\\s*\\]")
148 | private let matchAttrN = firstMatch("^:not\\((.*?\\)?)\\)")
| |- warning: let 'matchAttrN' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchAttrN' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | private let matchPseudo = firstMatch("^:([\'\"()a-z0-9_+-]+)")
150 | private let matchCombinator = firstMatch("^\\s*([\\s>+~,])\\s*")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:149:13: warning: let 'matchPseudo' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
147 | private let matchAttr2 = firstMatch("^\\[\\s*([^~\\|\\^\\$\\*=\\s]+)\\s*([~\\|\\^\\$\\*]?=)\\s*(.*)\\s*\\]")
148 | private let matchAttrN = firstMatch("^:not\\((.*?\\)?)\\)")
149 | private let matchPseudo = firstMatch("^:([\'\"()a-z0-9_+-]+)")
| |- warning: let 'matchPseudo' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchPseudo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | private let matchCombinator = firstMatch("^\\s*([\\s>+~,])\\s*")
151 | private let matchSubNthChild = firstMatch("^(nth-child|nth-last-child)\\(\\s*(odd|even|\\d+)\\s*\\)")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:150:13: warning: let 'matchCombinator' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
148 | private let matchAttrN = firstMatch("^:not\\((.*?\\)?)\\)")
149 | private let matchPseudo = firstMatch("^:([\'\"()a-z0-9_+-]+)")
150 | private let matchCombinator = firstMatch("^\\s*([\\s>+~,])\\s*")
| |- warning: let 'matchCombinator' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchCombinator' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | private let matchSubNthChild = firstMatch("^(nth-child|nth-last-child)\\(\\s*(odd|even|\\d+)\\s*\\)")
152 | private let matchSubNthChildN = firstMatch("^(nth-child|nth-last-child)\\(\\s*(-?\\d*)n(\\+\\d+)?\\s*\\)")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:151:13: warning: let 'matchSubNthChild' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
149 | private let matchPseudo = firstMatch("^:([\'\"()a-z0-9_+-]+)")
150 | private let matchCombinator = firstMatch("^\\s*([\\s>+~,])\\s*")
151 | private let matchSubNthChild = firstMatch("^(nth-child|nth-last-child)\\(\\s*(odd|even|\\d+)\\s*\\)")
| |- warning: let 'matchSubNthChild' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchSubNthChild' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | private let matchSubNthChildN = firstMatch("^(nth-child|nth-last-child)\\(\\s*(-?\\d*)n(\\+\\d+)?\\s*\\)")
153 | private let matchSubNthOfType = firstMatch("nth-of-type\\((odd|even|\\d+)\\)")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:152:13: warning: let 'matchSubNthChildN' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
150 | private let matchCombinator = firstMatch("^\\s*([\\s>+~,])\\s*")
151 | private let matchSubNthChild = firstMatch("^(nth-child|nth-last-child)\\(\\s*(odd|even|\\d+)\\s*\\)")
152 | private let matchSubNthChildN = firstMatch("^(nth-child|nth-last-child)\\(\\s*(-?\\d*)n(\\+\\d+)?\\s*\\)")
| |- warning: let 'matchSubNthChildN' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchSubNthChildN' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | private let matchSubNthOfType = firstMatch("nth-of-type\\((odd|even|\\d+)\\)")
154 | private let matchSubContains = firstMatch("contains\\([\"\'](.*?)[\"\']\\)")
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:153:13: warning: let 'matchSubNthOfType' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
151 | private let matchSubNthChild = firstMatch("^(nth-child|nth-last-child)\\(\\s*(odd|even|\\d+)\\s*\\)")
152 | private let matchSubNthChildN = firstMatch("^(nth-child|nth-last-child)\\(\\s*(-?\\d*)n(\\+\\d+)?\\s*\\)")
153 | private let matchSubNthOfType = firstMatch("nth-of-type\\((odd|even|\\d+)\\)")
| |- warning: let 'matchSubNthOfType' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchSubNthOfType' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | private let matchSubContains = firstMatch("contains\\([\"\'](.*?)[\"\']\\)")
155 |
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/CSS.swift:154:13: warning: let 'matchSubContains' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
152 | private let matchSubNthChildN = firstMatch("^(nth-child|nth-last-child)\\(\\s*(-?\\d*)n(\\+\\d+)?\\s*\\)")
153 | private let matchSubNthOfType = firstMatch("nth-of-type\\((odd|even|\\d+)\\)")
154 | private let matchSubContains = firstMatch("contains\\([\"\'](.*?)[\"\']\\)")
| |- warning: let 'matchSubContains' is not concurrency-safe because non-'Sendable' type '(String) -> AKTextCheckingResult?' (aka '(String) -> Optional<NSTextCheckingResult>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'matchSubContains' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |
156 | private func substringWithRangeAtIndex(_ result: AKTextCheckingResult, str: String, at: Int) -> String {
[17/27] Compiling ContentstackUtils libxmlHTMLNode.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlHTMLNode.swift:206:9: 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
204 | }
205 | xmlUnlinkNode(node.nodePtr)
206 | xmlFree(node.nodePtr)
| `- 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
207 | }
208 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/libxml/globals.h:257:23: note: var declared here
255 | XMLPUBVAR xmlMallocFunc xmlMallocAtomic LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
256 | XMLPUBVAR xmlReallocFunc xmlRealloc LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
257 | XMLPUBVAR xmlFreeFunc xmlFree;
| `- note: var declared here
258 | XMLPUBVAR xmlStrdupFunc xmlMemStrdup LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
259 | #endif /* LIBXML_THREAD_ALLOC_ENABLED */
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:42:23: warning: static property 'STRICT' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
40 | public var rawValue: UInt { value }
41 |
42 | public static let STRICT = Libxml2HTMLParserOptions(0)
| |- warning: static property 'STRICT' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'STRICT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | public static let RECOVER = Libxml2HTMLParserOptions(HTML_PARSE_RECOVER)
44 | public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:43:23: warning: static property 'RECOVER' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
41 |
42 | public static let STRICT = Libxml2HTMLParserOptions(0)
43 | public static let RECOVER = Libxml2HTMLParserOptions(HTML_PARSE_RECOVER)
| |- warning: static property 'RECOVER' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'RECOVER' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD)
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:44:23: warning: static property 'NODEFDTD' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
42 | public static let STRICT = Libxml2HTMLParserOptions(0)
43 | public static let RECOVER = Libxml2HTMLParserOptions(HTML_PARSE_RECOVER)
44 | public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD)
| |- warning: static property 'NODEFDTD' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NODEFDTD' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:45:23: warning: static property 'NOERROR' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
43 | public static let RECOVER = Libxml2HTMLParserOptions(HTML_PARSE_RECOVER)
44 | public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD)
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
| |- warning: static property 'NOERROR' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOERROR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:46:23: warning: static property 'NOWARNING' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
44 | public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD)
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
| |- warning: static property 'NOWARNING' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOWARNING' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:47:23: warning: static property 'PEDANTIC' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
| |- warning: static property 'PEDANTIC' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PEDANTIC' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:48:23: warning: static property 'NOBLANKS' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
| |- warning: static property 'NOBLANKS' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOBLANKS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:49:23: warning: static property 'NONET' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
| |- warning: static property 'NONET' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NONET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
51 | public static let COMPACT = Libxml2HTMLParserOptions(HTML_PARSE_COMPACT)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:50:23: warning: static property 'NOIMPLIED' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
| |- warning: static property 'NOIMPLIED' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOIMPLIED' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | public static let COMPACT = Libxml2HTMLParserOptions(HTML_PARSE_COMPACT)
52 | public static let IGNORE_ENC = Libxml2HTMLParserOptions(HTML_PARSE_IGNORE_ENC)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:51:23: warning: static property 'COMPACT' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
51 | public static let COMPACT = Libxml2HTMLParserOptions(HTML_PARSE_COMPACT)
| |- warning: static property 'COMPACT' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPACT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | public static let IGNORE_ENC = Libxml2HTMLParserOptions(HTML_PARSE_IGNORE_ENC)
53 | }
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:52:23: warning: static property 'IGNORE_ENC' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
51 | public static let COMPACT = Libxml2HTMLParserOptions(HTML_PARSE_COMPACT)
52 | public static let IGNORE_ENC = Libxml2HTMLParserOptions(HTML_PARSE_IGNORE_ENC)
| |- warning: static property 'IGNORE_ENC' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IGNORE_ENC' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:69:23: warning: static property 'STRICT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
67 | public var rawValue: UInt { value }
68 |
69 | public static let STRICT = Libxml2XMLParserOptions(0)
| |- warning: static property 'STRICT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'STRICT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 | public static let RECOVER = Libxml2XMLParserOptions(XML_PARSE_RECOVER)
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:70:23: warning: static property 'RECOVER' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
68 |
69 | public static let STRICT = Libxml2XMLParserOptions(0)
70 | public static let RECOVER = Libxml2XMLParserOptions(XML_PARSE_RECOVER)
| |- warning: static property 'RECOVER' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'RECOVER' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:71:23: warning: static property 'NOENT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
69 | public static let STRICT = Libxml2XMLParserOptions(0)
70 | public static let RECOVER = Libxml2XMLParserOptions(XML_PARSE_RECOVER)
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
| |- warning: static property 'NOENT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOENT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:72:23: warning: static property 'DTDLOAD' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
70 | public static let RECOVER = Libxml2XMLParserOptions(XML_PARSE_RECOVER)
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
| |- warning: static property 'DTDLOAD' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'DTDLOAD' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:73:23: warning: static property 'DTDATTR' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
| |- warning: static property 'DTDATTR' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'DTDATTR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:74:23: warning: static property 'DTDVALID' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
| |- warning: static property 'DTDVALID' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'DTDVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:75:23: warning: static property 'NOERROR' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
| |- warning: static property 'NOERROR' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOERROR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:76:23: warning: static property 'NOWARNING' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
| |- warning: static property 'NOWARNING' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOWARNING' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:77:23: warning: static property 'PEDANTIC' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
| |- warning: static property 'PEDANTIC' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PEDANTIC' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:78:23: warning: static property 'NOBLANKS' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
| |- warning: static property 'NOBLANKS' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOBLANKS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:79:23: warning: static property 'SAX1' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
| |- warning: static property 'SAX1' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'SAX1' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:80:23: warning: static property 'XINCLUDE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
| |- warning: static property 'XINCLUDE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'XINCLUDE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:81:23: warning: static property 'NONET' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
| |- warning: static property 'NONET' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NONET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:82:23: warning: static property 'NODICT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
| |- warning: static property 'NODICT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NODICT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:83:23: warning: static property 'NSCLEAN' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
| |- warning: static property 'NSCLEAN' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NSCLEAN' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:84:23: warning: static property 'NOCDATA' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
| |- warning: static property 'NOCDATA' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOCDATA' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:85:23: warning: static property 'NOXINCNODE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
| |- warning: static property 'NOXINCNODE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOXINCNODE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:86:23: warning: static property 'COMPACT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
| |- warning: static property 'COMPACT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPACT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:87:23: warning: static property 'OLD10' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
| |- warning: static property 'OLD10' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'OLD10' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:88:23: warning: static property 'NOBASEFIX' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
| |- warning: static property 'NOBASEFIX' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOBASEFIX' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:89:23: warning: static property 'HUGE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
| |- warning: static property 'HUGE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'HUGE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
91 | public static let IGNORE_ENC = Libxml2XMLParserOptions(XML_PARSE_IGNORE_ENC)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:90:23: warning: static property 'OLDSAX' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
| |- warning: static property 'OLDSAX' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'OLDSAX' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 | public static let IGNORE_ENC = Libxml2XMLParserOptions(XML_PARSE_IGNORE_ENC)
92 | public static let BIG_LINES = Libxml2XMLParserOptions(XML_PARSE_BIG_LINES)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:91:23: warning: static property 'IGNORE_ENC' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
91 | public static let IGNORE_ENC = Libxml2XMLParserOptions(XML_PARSE_IGNORE_ENC)
| |- warning: static property 'IGNORE_ENC' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IGNORE_ENC' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 | public static let BIG_LINES = Libxml2XMLParserOptions(XML_PARSE_BIG_LINES)
93 | }
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:92:23: warning: static property 'BIG_LINES' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
91 | public static let IGNORE_ENC = Libxml2XMLParserOptions(XML_PARSE_IGNORE_ENC)
92 | public static let BIG_LINES = Libxml2XMLParserOptions(XML_PARSE_BIG_LINES)
| |- warning: static property 'BIG_LINES' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'BIG_LINES' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
93 | }
94 |
[18/27] Compiling ContentstackUtils libxmlParserOption.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlHTMLNode.swift:206:9: 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
204 | }
205 | xmlUnlinkNode(node.nodePtr)
206 | xmlFree(node.nodePtr)
| `- 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
207 | }
208 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/libxml/globals.h:257:23: note: var declared here
255 | XMLPUBVAR xmlMallocFunc xmlMallocAtomic LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
256 | XMLPUBVAR xmlReallocFunc xmlRealloc LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
257 | XMLPUBVAR xmlFreeFunc xmlFree;
| `- note: var declared here
258 | XMLPUBVAR xmlStrdupFunc xmlMemStrdup LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
259 | #endif /* LIBXML_THREAD_ALLOC_ENABLED */
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:42:23: warning: static property 'STRICT' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
40 | public var rawValue: UInt { value }
41 |
42 | public static let STRICT = Libxml2HTMLParserOptions(0)
| |- warning: static property 'STRICT' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'STRICT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | public static let RECOVER = Libxml2HTMLParserOptions(HTML_PARSE_RECOVER)
44 | public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:43:23: warning: static property 'RECOVER' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
41 |
42 | public static let STRICT = Libxml2HTMLParserOptions(0)
43 | public static let RECOVER = Libxml2HTMLParserOptions(HTML_PARSE_RECOVER)
| |- warning: static property 'RECOVER' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'RECOVER' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD)
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:44:23: warning: static property 'NODEFDTD' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
42 | public static let STRICT = Libxml2HTMLParserOptions(0)
43 | public static let RECOVER = Libxml2HTMLParserOptions(HTML_PARSE_RECOVER)
44 | public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD)
| |- warning: static property 'NODEFDTD' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NODEFDTD' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:45:23: warning: static property 'NOERROR' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
43 | public static let RECOVER = Libxml2HTMLParserOptions(HTML_PARSE_RECOVER)
44 | public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD)
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
| |- warning: static property 'NOERROR' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOERROR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:46:23: warning: static property 'NOWARNING' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
44 | public static let NODEFDTD = Libxml2HTMLParserOptions(HTML_PARSE_NODEFDTD)
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
| |- warning: static property 'NOWARNING' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOWARNING' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:47:23: warning: static property 'PEDANTIC' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
45 | public static let NOERROR = Libxml2HTMLParserOptions(HTML_PARSE_NOERROR)
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
| |- warning: static property 'PEDANTIC' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PEDANTIC' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:48:23: warning: static property 'NOBLANKS' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
46 | public static let NOWARNING = Libxml2HTMLParserOptions(HTML_PARSE_NOWARNING)
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
| |- warning: static property 'NOBLANKS' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOBLANKS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:49:23: warning: static property 'NONET' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
47 | public static let PEDANTIC = Libxml2HTMLParserOptions(HTML_PARSE_PEDANTIC)
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
| |- warning: static property 'NONET' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NONET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
51 | public static let COMPACT = Libxml2HTMLParserOptions(HTML_PARSE_COMPACT)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:50:23: warning: static property 'NOIMPLIED' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
48 | public static let NOBLANKS = Libxml2HTMLParserOptions(HTML_PARSE_NOBLANKS)
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
| |- warning: static property 'NOIMPLIED' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOIMPLIED' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | public static let COMPACT = Libxml2HTMLParserOptions(HTML_PARSE_COMPACT)
52 | public static let IGNORE_ENC = Libxml2HTMLParserOptions(HTML_PARSE_IGNORE_ENC)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:51:23: warning: static property 'COMPACT' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
49 | public static let NONET = Libxml2HTMLParserOptions(HTML_PARSE_NONET)
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
51 | public static let COMPACT = Libxml2HTMLParserOptions(HTML_PARSE_COMPACT)
| |- warning: static property 'COMPACT' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPACT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | public static let IGNORE_ENC = Libxml2HTMLParserOptions(HTML_PARSE_IGNORE_ENC)
53 | }
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:52:23: warning: static property 'IGNORE_ENC' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
29 | Libxml2HTMLParserOptions
30 | */
31 | public struct Libxml2HTMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2HTMLParserOptions' conform to the 'Sendable' protocol
32 | public typealias RawValue = UInt
33 | private var value: UInt = 0
:
50 | public static let NOIMPLIED = Libxml2HTMLParserOptions(HTML_PARSE_NOIMPLIED)
51 | public static let COMPACT = Libxml2HTMLParserOptions(HTML_PARSE_COMPACT)
52 | public static let IGNORE_ENC = Libxml2HTMLParserOptions(HTML_PARSE_IGNORE_ENC)
| |- warning: static property 'IGNORE_ENC' is not concurrency-safe because non-'Sendable' type 'Libxml2HTMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IGNORE_ENC' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:69:23: warning: static property 'STRICT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
67 | public var rawValue: UInt { value }
68 |
69 | public static let STRICT = Libxml2XMLParserOptions(0)
| |- warning: static property 'STRICT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'STRICT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 | public static let RECOVER = Libxml2XMLParserOptions(XML_PARSE_RECOVER)
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:70:23: warning: static property 'RECOVER' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
68 |
69 | public static let STRICT = Libxml2XMLParserOptions(0)
70 | public static let RECOVER = Libxml2XMLParserOptions(XML_PARSE_RECOVER)
| |- warning: static property 'RECOVER' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'RECOVER' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:71:23: warning: static property 'NOENT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
69 | public static let STRICT = Libxml2XMLParserOptions(0)
70 | public static let RECOVER = Libxml2XMLParserOptions(XML_PARSE_RECOVER)
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
| |- warning: static property 'NOENT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOENT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:72:23: warning: static property 'DTDLOAD' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
70 | public static let RECOVER = Libxml2XMLParserOptions(XML_PARSE_RECOVER)
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
| |- warning: static property 'DTDLOAD' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'DTDLOAD' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:73:23: warning: static property 'DTDATTR' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
71 | public static let NOENT = Libxml2XMLParserOptions(XML_PARSE_NOENT)
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
| |- warning: static property 'DTDATTR' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'DTDATTR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:74:23: warning: static property 'DTDVALID' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
72 | public static let DTDLOAD = Libxml2XMLParserOptions(XML_PARSE_DTDLOAD)
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
| |- warning: static property 'DTDVALID' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'DTDVALID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:75:23: warning: static property 'NOERROR' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
73 | public static let DTDATTR = Libxml2XMLParserOptions(XML_PARSE_DTDATTR)
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
| |- warning: static property 'NOERROR' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOERROR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:76:23: warning: static property 'NOWARNING' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
74 | public static let DTDVALID = Libxml2XMLParserOptions(XML_PARSE_DTDVALID)
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
| |- warning: static property 'NOWARNING' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOWARNING' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:77:23: warning: static property 'PEDANTIC' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
75 | public static let NOERROR = Libxml2XMLParserOptions(XML_PARSE_NOERROR)
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
| |- warning: static property 'PEDANTIC' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PEDANTIC' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:78:23: warning: static property 'NOBLANKS' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
76 | public static let NOWARNING = Libxml2XMLParserOptions(XML_PARSE_NOWARNING)
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
| |- warning: static property 'NOBLANKS' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOBLANKS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:79:23: warning: static property 'SAX1' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
77 | public static let PEDANTIC = Libxml2XMLParserOptions(XML_PARSE_PEDANTIC)
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
| |- warning: static property 'SAX1' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'SAX1' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:80:23: warning: static property 'XINCLUDE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
78 | public static let NOBLANKS = Libxml2XMLParserOptions(XML_PARSE_NOBLANKS)
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
| |- warning: static property 'XINCLUDE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'XINCLUDE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:81:23: warning: static property 'NONET' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
79 | public static let SAX1 = Libxml2XMLParserOptions(XML_PARSE_SAX1)
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
| |- warning: static property 'NONET' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NONET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:82:23: warning: static property 'NODICT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
80 | public static let XINCLUDE = Libxml2XMLParserOptions(XML_PARSE_XINCLUDE)
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
| |- warning: static property 'NODICT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NODICT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:83:23: warning: static property 'NSCLEAN' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
81 | public static let NONET = Libxml2XMLParserOptions(XML_PARSE_NONET)
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
| |- warning: static property 'NSCLEAN' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NSCLEAN' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:84:23: warning: static property 'NOCDATA' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
82 | public static let NODICT = Libxml2XMLParserOptions(XML_PARSE_NODICT)
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
| |- warning: static property 'NOCDATA' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOCDATA' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:85:23: warning: static property 'NOXINCNODE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
83 | public static let NSCLEAN = Libxml2XMLParserOptions(XML_PARSE_NSCLEAN)
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
| |- warning: static property 'NOXINCNODE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOXINCNODE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:86:23: warning: static property 'COMPACT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
84 | public static let NOCDATA = Libxml2XMLParserOptions(XML_PARSE_NOCDATA)
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
| |- warning: static property 'COMPACT' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'COMPACT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:87:23: warning: static property 'OLD10' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
85 | public static let NOXINCNODE = Libxml2XMLParserOptions(XML_PARSE_NOXINCNODE)
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
| |- warning: static property 'OLD10' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'OLD10' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:88:23: warning: static property 'NOBASEFIX' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
86 | public static let COMPACT = Libxml2XMLParserOptions(XML_PARSE_COMPACT)
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
| |- warning: static property 'NOBASEFIX' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'NOBASEFIX' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:89:23: warning: static property 'HUGE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
87 | public static let OLD10 = Libxml2XMLParserOptions(XML_PARSE_OLD10)
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
| |- warning: static property 'HUGE' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'HUGE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
91 | public static let IGNORE_ENC = Libxml2XMLParserOptions(XML_PARSE_IGNORE_ENC)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:90:23: warning: static property 'OLDSAX' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
88 | public static let NOBASEFIX = Libxml2XMLParserOptions(XML_PARSE_NOBASEFIX)
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
| |- warning: static property 'OLDSAX' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'OLDSAX' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 | public static let IGNORE_ENC = Libxml2XMLParserOptions(XML_PARSE_IGNORE_ENC)
92 | public static let BIG_LINES = Libxml2XMLParserOptions(XML_PARSE_BIG_LINES)
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:91:23: warning: static property 'IGNORE_ENC' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
89 | public static let HUGE = Libxml2XMLParserOptions(XML_PARSE_HUGE)
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
91 | public static let IGNORE_ENC = Libxml2XMLParserOptions(XML_PARSE_IGNORE_ENC)
| |- warning: static property 'IGNORE_ENC' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IGNORE_ENC' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 | public static let BIG_LINES = Libxml2XMLParserOptions(XML_PARSE_BIG_LINES)
93 | }
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlParserOption.swift:92:23: warning: static property 'BIG_LINES' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
56 | Libxml2XMLParserOptions
57 | */
58 | public struct Libxml2XMLParserOptions: OptionSet {
| `- note: consider making struct 'Libxml2XMLParserOptions' conform to the 'Sendable' protocol
59 | public typealias RawValue = UInt
60 | private var value: UInt = 0
:
90 | public static let OLDSAX = Libxml2XMLParserOptions(XML_PARSE_OLDSAX)
91 | public static let IGNORE_ENC = Libxml2XMLParserOptions(XML_PARSE_IGNORE_ENC)
92 | public static let BIG_LINES = Libxml2XMLParserOptions(XML_PARSE_BIG_LINES)
| |- warning: static property 'BIG_LINES' is not concurrency-safe because non-'Sendable' type 'Libxml2XMLParserOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'BIG_LINES' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
93 | }
94 |
[19/27] Compiling ContentstackUtils Edges.swift
[20/27] Compiling ContentstackUtils EmbedItemType.swift
[21/27] Compiling ContentstackUtils EntryEmbedded.swift
[22/27] Compiling ContentstackUtils Kanna.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/Kanna.swift:37:12: warning: let 'kDefaultXmlParseOption' is not concurrency-safe because non-'Sendable' type 'ParseOption' may have shared mutable state; this is an error in the Swift 6 language mode
29 | ParseOption
30 | */
31 | public enum ParseOption {
| `- note: consider making enum 'ParseOption' conform to the 'Sendable' protocol
32 | // libxml2
33 | case xmlParseUseLibxml(Libxml2XMLParserOptions)
:
35 | }
36 |
37 | public let kDefaultXmlParseOption = ParseOption.xmlParseUseLibxml([.RECOVER, .NOERROR, .NOWARNING])
| |- warning: let 'kDefaultXmlParseOption' is not concurrency-safe because non-'Sendable' type 'ParseOption' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'kDefaultXmlParseOption' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | public let kDefaultHtmlParseOption = ParseOption.htmlParseUseLibxml([.RECOVER, .NOERROR, .NOWARNING])
39 |
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/Kanna.swift:38:12: warning: let 'kDefaultHtmlParseOption' is not concurrency-safe because non-'Sendable' type 'ParseOption' may have shared mutable state; this is an error in the Swift 6 language mode
29 | ParseOption
30 | */
31 | public enum ParseOption {
| `- note: consider making enum 'ParseOption' conform to the 'Sendable' protocol
32 | // libxml2
33 | case xmlParseUseLibxml(Libxml2XMLParserOptions)
:
36 |
37 | public let kDefaultXmlParseOption = ParseOption.xmlParseUseLibxml([.RECOVER, .NOERROR, .NOWARNING])
38 | public let kDefaultHtmlParseOption = ParseOption.htmlParseUseLibxml([.RECOVER, .NOERROR, .NOWARNING])
| |- warning: let 'kDefaultHtmlParseOption' is not concurrency-safe because non-'Sendable' type 'ParseOption' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'kDefaultHtmlParseOption' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | public enum ParseError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlHTMLDocument.swift:168:13: 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
166 | let size: UnsafeMutablePointer<Int32>? = nil
167 | defer {
168 | xmlFree(buf)
| `- 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
169 | }
170 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/libxml/globals.h:257:23: note: var declared here
255 | XMLPUBVAR xmlMallocFunc xmlMallocAtomic LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
256 | XMLPUBVAR xmlReallocFunc xmlRealloc LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
257 | XMLPUBVAR xmlFreeFunc xmlFree;
| `- note: var declared here
258 | XMLPUBVAR xmlStrdupFunc xmlMemStrdup LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
259 | #endif /* LIBXML_THREAD_ALLOC_ENABLED */
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlHTMLDocument.swift:263:13: 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
261 | let size: UnsafeMutablePointer<Int32>? = nil
262 | defer {
263 | xmlFree(buf)
| `- 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
264 | }
265 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/libxml/globals.h:257:23: note: var declared here
255 | XMLPUBVAR xmlMallocFunc xmlMallocAtomic LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
256 | XMLPUBVAR xmlReallocFunc xmlRealloc LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
257 | XMLPUBVAR xmlFreeFunc xmlFree;
| `- note: var declared here
258 | XMLPUBVAR xmlStrdupFunc xmlMemStrdup LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
259 | #endif /* LIBXML_THREAD_ALLOC_ENABLED */
[23/27] Compiling ContentstackUtils libxmlHTMLDocument.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/Kanna.swift:37:12: warning: let 'kDefaultXmlParseOption' is not concurrency-safe because non-'Sendable' type 'ParseOption' may have shared mutable state; this is an error in the Swift 6 language mode
29 | ParseOption
30 | */
31 | public enum ParseOption {
| `- note: consider making enum 'ParseOption' conform to the 'Sendable' protocol
32 | // libxml2
33 | case xmlParseUseLibxml(Libxml2XMLParserOptions)
:
35 | }
36 |
37 | public let kDefaultXmlParseOption = ParseOption.xmlParseUseLibxml([.RECOVER, .NOERROR, .NOWARNING])
| |- warning: let 'kDefaultXmlParseOption' is not concurrency-safe because non-'Sendable' type 'ParseOption' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'kDefaultXmlParseOption' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | public let kDefaultHtmlParseOption = ParseOption.htmlParseUseLibxml([.RECOVER, .NOERROR, .NOWARNING])
39 |
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/Kanna.swift:38:12: warning: let 'kDefaultHtmlParseOption' is not concurrency-safe because non-'Sendable' type 'ParseOption' may have shared mutable state; this is an error in the Swift 6 language mode
29 | ParseOption
30 | */
31 | public enum ParseOption {
| `- note: consider making enum 'ParseOption' conform to the 'Sendable' protocol
32 | // libxml2
33 | case xmlParseUseLibxml(Libxml2XMLParserOptions)
:
36 |
37 | public let kDefaultXmlParseOption = ParseOption.xmlParseUseLibxml([.RECOVER, .NOERROR, .NOWARNING])
38 | public let kDefaultHtmlParseOption = ParseOption.htmlParseUseLibxml([.RECOVER, .NOERROR, .NOWARNING])
| |- warning: let 'kDefaultHtmlParseOption' is not concurrency-safe because non-'Sendable' type 'ParseOption' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'kDefaultHtmlParseOption' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | public enum ParseError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlHTMLDocument.swift:168:13: 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
166 | let size: UnsafeMutablePointer<Int32>? = nil
167 | defer {
168 | xmlFree(buf)
| `- 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
169 | }
170 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/libxml/globals.h:257:23: note: var declared here
255 | XMLPUBVAR xmlMallocFunc xmlMallocAtomic LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
256 | XMLPUBVAR xmlReallocFunc xmlRealloc LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
257 | XMLPUBVAR xmlFreeFunc xmlFree;
| `- note: var declared here
258 | XMLPUBVAR xmlStrdupFunc xmlMemStrdup LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
259 | #endif /* LIBXML_THREAD_ALLOC_ENABLED */
/Users/admin/builder/spi-builder-workspace/Sources/Kanna/libxmlHTMLDocument.swift:263:13: 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
261 | let size: UnsafeMutablePointer<Int32>? = nil
262 | defer {
263 | xmlFree(buf)
| `- 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
264 | }
265 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/libxml/globals.h:257:23: note: var declared here
255 | XMLPUBVAR xmlMallocFunc xmlMallocAtomic LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
256 | XMLPUBVAR xmlReallocFunc xmlRealloc LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
257 | XMLPUBVAR xmlFreeFunc xmlFree;
| `- note: var declared here
258 | XMLPUBVAR xmlStrdupFunc xmlMemStrdup LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
259 | #endif /* LIBXML_THREAD_ALLOC_ENABLED */
[24/27] Compiling ContentstackUtils Option.swift
[25/27] Compiling ContentstackUtils String+Extension.swift
[26/27] Compiling ContentstackUtils StyleType.swift
[27/27] Compiling ContentstackUtils TextNode.swift
Build complete! (4.95s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "ContentstackUtils",
"name" : "ContentstackUtils",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "ios",
"version" : "11.0"
},
{
"name" : "tvos",
"version" : "11.0"
},
{
"name" : "watchos",
"version" : "4.0"
}
],
"products" : [
{
"name" : "ContentstackUtils",
"targets" : [
"ContentstackUtils"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "libxml2",
"module_type" : "SystemLibraryTarget",
"name" : "libxml2",
"path" : "Modules",
"sources" : [
],
"type" : "system-target"
},
{
"c99name" : "ContentstackUtilsTests",
"module_type" : "SwiftTarget",
"name" : "ContentstackUtilsTests",
"path" : "Tests/ContentstackUtilsTests",
"sources" : [
"Constants.swift",
"ContentBlock.swift",
"ContentstackUtilsArrayTest.swift",
"ContentstackUtilsCustomRendertest.swift",
"ContentstackUtilsJsonToHtmlTest.swift",
"ContentstackUtilsTests.swift",
"CustomRenderOptionMock.swift",
"Decodable.swift",
"DefaultRenderTests.swift",
"EmbededModelMock.swift",
"GQLJsonRTE.swift",
"GQLJsonToHtml.swift",
"JsonNodes.swift",
"JsonNodesHtmlResults.swift",
"MarkTypeTest.swift",
"MetadataTests.swift",
"NodeParser.swift",
"NodeTypeTest.swift",
"StringExtensionTests.swift",
"TestClient.swift",
"VariantUtilityTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"ContentstackUtils"
],
"type" : "test"
},
{
"c99name" : "ContentstackUtils",
"module_type" : "SwiftTarget",
"name" : "ContentstackUtils",
"path" : "Sources",
"product_memberships" : [
"ContentstackUtils"
],
"sources" : [
"ContentstackUtils/ConnectionNode.swift",
"ContentstackUtils/ContentstackUtils.swift",
"ContentstackUtils/Decodable.swift",
"ContentstackUtils/Edges.swift",
"ContentstackUtils/EmbedItemType.swift",
"ContentstackUtils/EntryEmbedded.swift",
"ContentstackUtils/GQLEmbededAsset.swift",
"ContentstackUtils/GQLEmbededEntry.swift",
"ContentstackUtils/JSONNode.swift",
"ContentstackUtils/JSONNodes.swift",
"ContentstackUtils/MarkType.swift",
"ContentstackUtils/Metadata.swift",
"ContentstackUtils/Node.swift",
"ContentstackUtils/NodeType.swift",
"ContentstackUtils/Option.swift",
"ContentstackUtils/String+Extension.swift",
"ContentstackUtils/StyleType.swift",
"ContentstackUtils/TextNode.swift",
"Kanna/CSS.swift",
"Kanna/Deprecated.swift",
"Kanna/Kanna.swift",
"Kanna/libxmlHTMLDocument.swift",
"Kanna/libxmlHTMLNode.swift",
"Kanna/libxmlParserOption.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Done.