The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of HTMLKit, reference 3.0.0-alpha.13 (7ac9a1), with Swift 6.1 for macOS (SPM) on 12 Aug 2025 01:57:56 UTC.

Swift 6 data race errors: 33

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
[2276/2617] Compiling HTMLKitComponents DatePicker.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
[2277/2617] Compiling HTMLKitComponents Disclosure.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
[2278/2617] Compiling HTMLKitComponents Divider.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
[2279/2617] Compiling HTMLKitComponents Dropdown.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
[2280/2617] Compiling HTMLKitComponents FieldLabel.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
[2281/2624] Compiling HTMLKitComponents Slider.swift
[2282/2624] Compiling HTMLKitComponents Snippet.swift
[2283/2624] Compiling HTMLKitComponents Symbol.swift
[2284/2624] Compiling HTMLKitComponents Tabs.swift
[2285/2624] Compiling HTMLKitComponents Text.swift
[2286/2624] Compiling HTMLKitComponents TextEditor.swift
[2287/2624] Compiling HTMLKitComponents TextField.swift
[2288/2624] Compiling HTMLKitComponents PressEvent.swift
[2289/2624] Compiling HTMLKitComponents Components+Image.swift
[2290/2624] Compiling HTMLKitComponents Components+Input.swift
[2291/2624] Compiling HTMLKitComponents Components+String.swift
[2292/2624] Compiling HTMLKitComponents ButtonModifier.swift
[2293/2624] Compiling HTMLKitComponents GraphicsModifier.swift
[2294/2624] Compiling HTMLKitComponents ImageModifier.swift
[2309/2631] Compiling HTMLKitComponents SubmitAction.swift
[2310/2631] Compiling HTMLKitComponents ViewAction.swift
[2311/2631] Compiling HTMLKitComponents ActionBuilder.swift
[2312/2631] Compiling HTMLKitComponents Alert.swift
[2313/2631] Compiling HTMLKitComponents BarMark.swift
[2314/2631] Compiling HTMLKitComponents Button.swift
[2315/2631] Compiling HTMLKitComponents Card.swift
[2323/2631] Compiling HTMLKitComponents Carousel.swift
[2324/2631] Compiling HTMLKitComponents Actionable.swift
[2325/2631] Compiling HTMLKitComponents Identifiable.swift
[2326/2631] Compiling HTMLKitComponents Modifiable.swift
[2327/2631] Compiling HTMLKitComponents Selectable.swift
[2328/2631] Compiling HTMLKitComponents Tokens.swift
[2329/2631] Compiling HTMLKitComponents Validator.swift
[2330/2631] Compiling HTMLKitComponents resource_bundle_accessor.swift
[2331/2631] Compiling HTMLKitComponents InputModifier.swift
[2332/2631] Compiling HTMLKitComponents TextModifier.swift
[2333/2631] Compiling HTMLKitComponents ViewModifier.swift
[2334/2631] Compiling HTMLKitComponents Options.swift
[2335/2631] Compiling HTMLKitComponents Action.swift
[2336/2631] Compiling HTMLKitComponents Configurations.swift
[2337/2631] Compiling HTMLKitComponents DynamicType.swift
[2338/2631] Compiling HTMLKitComponents Progress.swift
[2339/2631] Compiling HTMLKitComponents TextPad.swift
[2340/2631] Compiling HTMLKitComponents VStack.swift
[2341/2631] Compiling HTMLKitComponents Video.swift
[2342/2631] Compiling HTMLKitComponents ZStack.swift
[2343/2631] Compiling HTMLKitComponents DragEvent.swift
[2344/2631] Compiling HTMLKitComponents FormEvent.swift
[2345/2631] Compiling HTMLKitComponents MouseEvent.swift
[2347/2631] Compiling HTMLKitComponents FileDialog.swift
[2348/2631] Compiling HTMLKitComponents Form.swift
[2349/2631] Compiling HTMLKitComponents Grid.swift
[2350/2631] Compiling HTMLKitComponents Grouping.swift
[2351/2631] Compiling HTMLKitComponents HStack.swift
[2352/2631] Compiling HTMLKitComponents Image.swift
[2353/2631] Compiling HTMLKitComponents RadioSelect.swift
[2354/2631] Compiling HTMLKitComponents Scroll.swift
[2355/2631] Compiling HTMLKitComponents SearchField.swift
[2356/2631] Compiling HTMLKitComponents SectorMark.swift
[2357/2631] Compiling HTMLKitComponents SecureField.swift
[2358/2631] Compiling HTMLKitComponents SelectField.swift
[2359/2631] Compiling HTMLKitComponents Slide.swift
[2360/2631] Compiling HTMLKitComponents Link.swift
[2361/2631] Compiling HTMLKitComponents LinkButton.swift
[2362/2631] Compiling HTMLKitComponents List.swift
[2363/2631] Compiling HTMLKitComponents Modal.swift
[2364/2631] Compiling HTMLKitComponents Navigation.swift
[2365/2631] Compiling HTMLKitComponents Pane.swift
[2366/2631] Compiling HTMLKitComponents Picker.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
[2402/2631] Emitting module HTMLKitComponents
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
[2418/2635] Emitting module DeployCommand
/Users/admin/builder/spi-builder-workspace/Sources/Commands/Components/DeployCommand.swift:21:24: warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |     }
 20 |
 21 |     private static let manager = FileManager.default
    |                        |- warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: add '@MainActor' to make static property 'manager' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 |     internal static func main() throws {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h:96:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
 94 | extern NSNotificationName const NSUbiquityIdentityDidChangeNotification API_AVAILABLE(macos(10.8), ios(6.0), watchos(2.0), tvos(9.0));
 95 |
 96 | @interface NSFileManager : NSObject
    |            `- note: class 'FileManager' does not conform to the 'Sendable' protocol
 97 |
 98 | /* Returns the default singleton instance.
[2419/2635] Compiling DeployCommand DeployCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commands/Components/DeployCommand.swift:21:24: warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |     }
 20 |
 21 |     private static let manager = FileManager.default
    |                        |- warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: add '@MainActor' to make static property 'manager' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 |     internal static func main() throws {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h:96:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
 94 | extern NSNotificationName const NSUbiquityIdentityDidChangeNotification API_AVAILABLE(macos(10.8), ios(6.0), watchos(2.0), tvos(9.0));
 95 |
 96 | @interface NSFileManager : NSObject
    |            `- note: class 'FileManager' does not conform to the 'Sendable' protocol
 97 |
 98 | /* Returns the default singleton instance.
[2419/2635] Write Objects.LinkFileList
[2421/2635] Emitting module DeployCommand
/Users/admin/builder/spi-builder-workspace/Sources/Commands/Components/DeployCommand.swift:21:24: warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |     }
 20 |
 21 |     private static let manager = FileManager.default
    |                        |- warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: add '@MainActor' to make static property 'manager' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 |     internal static func main() throws {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h:96:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
 94 | extern NSNotificationName const NSUbiquityIdentityDidChangeNotification API_AVAILABLE(macos(10.8), ios(6.0), watchos(2.0), tvos(9.0));
 95 |
 96 | @interface NSFileManager : NSObject
    |            `- note: class 'FileManager' does not conform to the 'Sendable' protocol
 97 |
 98 | /* Returns the default singleton instance.
[2422/2635] Compiling DeployCommand DeployCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commands/Components/DeployCommand.swift:21:24: warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |     }
 20 |
 21 |     private static let manager = FileManager.default
    |                        |- warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: add '@MainActor' to make static property 'manager' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 |     internal static func main() throws {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h:96:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
 94 | extern NSNotificationName const NSUbiquityIdentityDidChangeNotification API_AVAILABLE(macos(10.8), ios(6.0), watchos(2.0), tvos(9.0));
 95 |
 96 | @interface NSFileManager : NSObject
    |            `- note: class 'FileManager' does not conform to the 'Sendable' protocol
 97 |
 98 | /* Returns the default singleton instance.
[2422/2635] Write Objects.LinkFileList
[2430/2635] Compiling Vapor Authentication+Concurrency.swift
[2431/2635] Compiling Vapor Cache+Concurrency.swift
[2432/2635] Compiling Vapor Client+Concurrency.swift
[2433/2635] Compiling Vapor RequestBody+Concurrency.swift
[2434/2635] Compiling Vapor Responder+Concurrency.swift
[2435/2635] Compiling Vapor ResponseCodable+Concurrency.swift
[2436/2635] Compiling Vapor RoutesBuilder+Concurrency.swift
[2437/2635] Compiling Vapor ViewRenderer+Concurrency.swift
[2438/2635] Compiling Vapor WebSocket+Concurrency.swift
[2439/2635] Compiling Vapor ContainerGetPathExecutor.swift
[2440/2635] Compiling Vapor Content.swift
[2441/2635] Compiling Vapor ContentCoders.swift
[2442/2635] Compiling Vapor ContentConfiguration.swift
[2443/2635] Compiling Vapor ContentContainer.swift
[2444/2635] Compiling Vapor JSONCoder+Custom.swift
[2445/2635] Compiling Vapor JSONCoders+Content.swift
[2445/2656] Linking DeployCommand-tool
[2446/2656] Applying DeployCommand-tool
[2447/2656] Linking DeployCommand
[2448/2656] Applying DeployCommand
[2472/2656] Compiling Vapor Case.swift
[2473/2656] Compiling Vapor CharacterSet.swift
[2474/2656] Compiling Vapor Count.swift
[2475/2656] Compiling Vapor Custom.swift
[2476/2656] Compiling Vapor Email.swift
[2477/2656] Compiling Vapor Empty.swift
[2478/2656] Compiling Vapor In.swift
[2479/2656] Compiling Vapor Nil.swift
[2480/2656] Compiling Vapor NilIgnoring.swift
[2481/2656] Compiling Vapor Not.swift
[2482/2656] Compiling Vapor Or.swift
[2483/2656] Compiling Vapor Pattern.swift
[2484/2656] Compiling Vapor Range.swift
[2485/2656] Compiling Vapor URL.swift
[2486/2656] Compiling Vapor Valid.swift
[2487/2656] Compiling Vapor Application+Views.swift
[2488/2656] Compiling Vapor PlaintextRenderer.swift
[2489/2656] Compiling Vapor Request+View.swift
[2490/2656] Compiling Vapor View.swift
[2491/2656] Compiling Vapor ViewRenderer.swift
[2492/2656] Compiling Vapor _Deprecations.swift
[2536/2656] Compiling HTMLKitConverter Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitConverter/Parser.swift:35:25: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Parser' may have shared mutable state; this is an error in the Swift 6 language mode
   6 | #endif
   7 |
   8 | internal class Parser {
     |                `- note: class 'Parser' does not conform to the 'Sendable' protocol
   9 |
  10 |     internal enum ParserError: Error {
     :
  33 |     }
  34 |
  35 |     internal static let shared = Parser()
     |                         |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Parser' may have shared mutable state; this is an error in the Swift 6 language mode
     |                         |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |                         `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  36 |
  37 |     private init() {}
[2537/2656] Compiling HTMLKitConverter InitRepresentable.swift
[2538/2656] Compiling HTMLKitConverter Converter.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitConverter/Converter.swift:15:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Converter' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |
  7 | @available(macOS 11.0, *)
  8 | public class Converter {
    |              `- note: class 'Converter' does not conform to the 'Sendable' protocol
  9 |
 10 |     public enum ConverterError: Error {
    :
 13 |     }
 14 |
 15 |     public static let `default` = Converter()
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Converter' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |
 17 |     private init() {}
[2539/2656] Compiling Vapor RouteCollection.swift
[2540/2656] Compiling Vapor Routes.swift
[2541/2656] Compiling Vapor RoutesBuilder+Group.swift
[2542/2656] Compiling Vapor RoutesBuilder+Method.swift
[2543/2656] Compiling Vapor RoutesBuilder+Middleware.swift
[2544/2656] Compiling Vapor RoutesBuilder+WebSocket.swift
[2545/2656] Compiling Vapor RoutesBuilder.swift
[2546/2656] Compiling Vapor OTP.swift
[2547/2656] Compiling Vapor Application+Servers.swift
[2548/2656] Compiling Vapor Server.swift
[2549/2656] Compiling Vapor App+Service.swift
[2550/2656] Compiling Vapor Req+Service.swift
[2551/2656] Compiling Vapor Service.swift
[2552/2656] Compiling Vapor Application+Sessions.swift
[2553/2656] Compiling Vapor MemorySessions.swift
[2554/2656] Compiling Vapor Request+Session.swift
[2555/2656] Compiling Vapor Session.swift
[2556/2656] Compiling Vapor SessionCache.swift
[2557/2656] Compiling Vapor SessionData.swift
[2558/2656] Compiling Vapor SessionDriver.swift
[2559/2656] Compiling Vapor SessionsConfiguration.swift
[2560/2656] Emitting module Vapor
[2561/2656] Compiling HTMLKitConverter Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitConverter/Parser.swift:35:25: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Parser' may have shared mutable state; this is an error in the Swift 6 language mode
   6 | #endif
   7 |
   8 | internal class Parser {
     |                `- note: class 'Parser' does not conform to the 'Sendable' protocol
   9 |
  10 |     internal enum ParserError: Error {
     :
  33 |     }
  34 |
  35 |     internal static let shared = Parser()
     |                         |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Parser' may have shared mutable state; this is an error in the Swift 6 language mode
     |                         |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |                         `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  36 |
  37 |     private init() {}
[2562/2656] Emitting module HTMLKitConverter
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitConverter/Converter.swift:15:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Converter' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |
  7 | @available(macOS 11.0, *)
  8 | public class Converter {
    |              `- note: class 'Converter' does not conform to the 'Sendable' protocol
  9 |
 10 |     public enum ConverterError: Error {
    :
 13 |     }
 14 |
 15 |     public static let `default` = Converter()
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Converter' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |
 17 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitConverter/Parser.swift:35:25: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Parser' may have shared mutable state; this is an error in the Swift 6 language mode
   6 | #endif
   7 |
   8 | internal class Parser {
     |                `- note: class 'Parser' does not conform to the 'Sendable' protocol
   9 |
  10 |     internal enum ParserError: Error {
     :
  33 |     }
  34 |
  35 |     internal static let shared = Parser()
     |                         |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Parser' may have shared mutable state; this is an error in the Swift 6 language mode
     |                         |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |                         `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  36 |
  37 |     private init() {}
[2563/2656] Compiling HTMLKitConverter Converter.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitConverter/Converter.swift:15:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Converter' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |
  7 | @available(macOS 11.0, *)
  8 | public class Converter {
    |              `- note: class 'Converter' does not conform to the 'Sendable' protocol
  9 |
 10 |     public enum ConverterError: Error {
    :
 13 |     }
 14 |
 15 |     public static let `default` = Converter()
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Converter' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |
 17 |     private init() {}
[2564/2660] Compiling Vapor Application.swift
[2565/2660] Compiling Vapor AuthenticationCache.swift
[2566/2660] Compiling Vapor Authenticator.swift
[2567/2660] Compiling Vapor BasicAuthorization.swift
[2568/2660] Compiling Vapor BearerAuthorization.swift
[2569/2660] Compiling Vapor GuardMiddleware.swift
[2570/2660] Compiling Vapor RedirectMiddleware.swift
[2571/2660] Compiling Vapor SessionAuthenticatable.swift
[2572/2660] Compiling Vapor Bcrypt.swift
[2573/2660] Compiling Vapor Application+Cache.swift
[2574/2660] Compiling Vapor Cache.swift
[2575/2660] Compiling Vapor CacheExpirationTime.swift
[2576/2660] Compiling Vapor MemoryCache.swift
[2577/2660] Compiling Vapor Request+Cache.swift
[2578/2660] Compiling Vapor Application+Clients.swift
[2579/2660] Compiling Vapor Client.swift
[2580/2660] Compiling Vapor ClientRequest.swift
[2581/2660] Compiling Vapor ClientResponse.swift
[2582/2660] Compiling Vapor Request+Client.swift
[2583/2660] Compiling Vapor BootCommand.swift
[2584/2660] Compiling Vapor CommandContext+Application.swift
[2585/2660] Compiling Vapor RoutesCommand.swift
[2586/2660] Compiling Vapor DotEnv.swift
[2587/2660] Compiling Vapor Extendable.swift
[2588/2660] Compiling Vapor File.swift
[2589/2660] Compiling Vapor FileIO.swift
[2590/2660] Compiling Vapor LifecycleHandler.swift
[2591/2660] Compiling Vapor OptionalType.swift
[2592/2660] Compiling Vapor RFC1123.swift
[2593/2660] Compiling Vapor SocketAddress+Hostname.swift
[2594/2660] Compiling Vapor Storage.swift
[2595/2660] Compiling Vapor String+IsIPAddress.swift
[2596/2660] Compiling Vapor Thread.swift
[2597/2660] Compiling Vapor URI.swift
[2598/2660] Compiling Vapor RangeResult.swift
[2599/2660] Compiling Vapor Validatable.swift
[2600/2660] Compiling Vapor Validation.swift
[2601/2660] Compiling Vapor ValidationKey.swift
[2602/2660] Compiling Vapor Validations.swift
[2603/2660] Compiling Vapor ValidationsError.swift
[2604/2660] Compiling Vapor Validator.swift
[2605/2660] Compiling Vapor ValidatorResult.swift
[2606/2660] Compiling Vapor And.swift
[2607/2660] Compiling Vapor FormDataDecoder+Content.swift
[2608/2660] Compiling Vapor FormDataEncoder+Content.swift
[2609/2660] Compiling Vapor Application+Password.swift
[2610/2660] Compiling Vapor Application+Passwords.swift
[2611/2660] Compiling Vapor AsyncPasswordHasher.swift
[2612/2660] Compiling Vapor BcryptHasher.swift
[2613/2660] Compiling Vapor PasswordHasher.swift
[2614/2660] Compiling Vapor PlaintextHasher.swift
[2615/2660] Compiling Vapor Request+Password.swift
[2616/2660] Compiling Vapor Redirect.swift
[2617/2660] Compiling Vapor Request+Body.swift
[2618/2660] Compiling Vapor Request+BodyStream.swift
[2619/2660] Compiling Vapor Request.swift
[2620/2660] Compiling Vapor Application+Responder.swift
[2621/2660] Compiling Vapor DefaultResponder.swift
[2622/2660] Compiling Vapor Response+Body.swift
[2623/2660] Compiling Vapor Response.swift
[2624/2660] Compiling Vapor ResponseCodable.swift
[2625/2660] Compiling Vapor Application+Routes.swift
[2626/2660] Compiling Vapor Parameters+Require.swift
[2627/2660] Compiling Vapor Request+WebSocket.swift
[2628/2660] Compiling Vapor Route.swift
[2629/2660] Compiling Vapor BasicResponder.swift
[2630/2660] Compiling Vapor BodyStream.swift
[2631/2660] Compiling Vapor Application+HTTP+Client.swift
[2632/2660] Compiling Vapor EventLoopHTTPClient.swift
[2633/2660] Compiling Vapor EndpointCache.swift
[2634/2660] Compiling Vapor HTTPMethod+String.swift
[2635/2660] Compiling Vapor HTTPStatus.swift
[2636/2660] Compiling Vapor HTTPCookies.swift
[2637/2660] Compiling Vapor HTTPHeaderCacheControl.swift
[2638/2660] Compiling Vapor HTTPHeaderExpires.swift
[2639/2660] Compiling Vapor HTTPHeaderLastModified.swift
[2640/2660] Compiling Vapor HTTPHeaders+Cache.swift
[2641/2660] Compiling Vapor HTTPHeaders+Connection.swift
[2642/2660] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[2643/2660] Compiling Vapor HTTPHeaders+ContentRange.swift
[2644/2660] Compiling Vapor HTTPHeaders+Directive.swift
[2645/2660] Compiling Vapor HTTPHeaders+Forwarded.swift
[2646/2660] Compiling Vapor HTTPHeaders+Link.swift
[2647/2660] Compiling Vapor HTTPHeaders+Name.swift
[2648/2660] Compiling Vapor HTTPHeaders+ResponseCompression.swift
[2649/2660] Compiling Vapor HTTPHeaders.swift
[2650/2660] Compiling Vapor HTTPMediaType.swift
[2651/2660] Compiling ConvertCommand ConvertCommand.swift
[2652/2660] Emitting module ConvertCommand
[2654/2660] Compiling ConvertCommand ConvertCommand.swift
[2654/2660] Write Objects.LinkFileList
[2657/2664] Compiling HTMLKitVapor Configuration.swift
[2658/2664] Compiling HTMLKitVapor ViewRenderer.swift
[2659/2664] Compiling HTMLKitVapor Vapor+HTMLKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:51:25: warning: type 'Application.HtmlKit.ConfigurationKey.Value' (aka 'Configuration') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 49 |
 50 |         /// The key used to store the configuration in Vapor's storage
 51 |         internal struct ConfigurationKey: StorageKey {
    |                         `- warning: type 'Application.HtmlKit.ConfigurationKey.Value' (aka 'Configuration') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 52 |
 53 |             public typealias Value = Configuration
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitVapor/Configuration.swift:4:20: note: class 'Configuration' does not conform to the 'Sendable' protocol
 2 |
 3 | /// A type that holds configuration for the renderer
 4 | public final class Configuration {
   |                    `- note: class 'Configuration' does not conform to the 'Sendable' protocol
 5 |
 6 |     /// Holds the localization configuration
[2660/2664] Emitting module HTMLKitVapor
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:51:25: warning: type 'Application.HtmlKit.ConfigurationKey.Value' (aka 'Configuration') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 49 |
 50 |         /// The key used to store the configuration in Vapor's storage
 51 |         internal struct ConfigurationKey: StorageKey {
    |                         `- warning: type 'Application.HtmlKit.ConfigurationKey.Value' (aka 'Configuration') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 52 |
 53 |             public typealias Value = Configuration
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitVapor/Configuration.swift:4:20: note: class 'Configuration' does not conform to the 'Sendable' protocol
 2 |
 3 | /// A type that holds configuration for the renderer
 4 | public final class Configuration {
   |                    `- note: class 'Configuration' does not conform to the 'Sendable' protocol
 5 |
 6 |     /// Holds the localization configuration
[2660/2664] Linking ConvertCommand-tool
[2661/2664] Linking ConvertCommand
[2662/2664] Applying ConvertCommand-tool
[2663/2664] Applying ConvertCommand
Build complete! (66.34s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.4",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.4.3",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.6.3",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "vapor",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.114.1",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/vapor.git"
    }
  ],
  "manifest_display_name" : "HTMLKit",
  "name" : "HTMLKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "HTMLKit",
      "targets" : [
        "HTMLKit",
        "HTMLKitComponents",
        "HTMLKitVapor"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ComponentsPlugin",
      "targets" : [
        "ComponentsPlugin"
      ],
      "type" : {
        "plugin" : null
      }
    },
    {
      "name" : "ConverterPlugin",
      "targets" : [
        "ConverterPlugin"
      ],
      "type" : {
        "plugin" : null
      }
    },
    {
      "name" : "DeployCommand",
      "targets" : [
        "DeployCommand"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "ConvertCommand",
      "targets" : [
        "ConvertCommand"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UtilitiesTests",
      "module_type" : "SwiftTarget",
      "name" : "UtilitiesTests",
      "path" : "Tests/UtilitiesTests",
      "sources" : [
        "Minification/JavascriptTests.swift",
        "Minification/StylesheetTests.swift"
      ],
      "target_dependencies" : [
        "Minifier"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Minifier",
      "module_type" : "SwiftTarget",
      "name" : "Minifier",
      "path" : "Sources/Utilities",
      "product_memberships" : [
        "ComponentsPlugin",
        "DeployCommand"
      ],
      "sources" : [
        "Minifier/Extensions/Minifier+Character.swift",
        "Minifier/Minifier.swift",
        "Minifier/Tokenization/Javascript/Javascript.swift",
        "Minifier/Tokenization/Stylesheet/Stylesheet.swift",
        "Minifier/Tokenization/Token.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HTMLKitVaporTests",
      "module_type" : "SwiftTarget",
      "name" : "HTMLKitVaporTests",
      "path" : "Tests/HTMLKitVaporTests",
      "product_dependencies" : [
        "XCTVapor"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/HTMLKitVaporTests/Localization",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "ProviderTests.swift",
        "Utilities/AbortResponse.swift"
      ],
      "target_dependencies" : [
        "HTMLKitVapor",
        "HTMLKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HTMLKitVapor",
      "module_type" : "SwiftTarget",
      "name" : "HTMLKitVapor",
      "path" : "Sources/HTMLKitVapor",
      "product_dependencies" : [
        "Vapor"
      ],
      "product_memberships" : [
        "HTMLKit"
      ],
      "sources" : [
        "Configuration.swift",
        "Extensions/Vapor+HTMLKit.swift",
        "ViewRenderer.swift"
      ],
      "target_dependencies" : [
        "HTMLKit"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HTMLKitTests",
      "module_type" : "SwiftTarget",
      "name" : "HTMLKitTests",
      "path" : "Tests/HTMLKitTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/HTMLKitTests/Localization",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "AttributesTests.swift",
        "ContextTests.swift",
        "ElementTests.swift",
        "EnvironmentTests.swift",
        "LocalizationTests.swift",
        "Performance/Samples.swift",
        "PerformanceTests.swift",
        "RenderingTests.swift",
        "SecurityTests.swift",
        "StatementTests.swift",
        "TemplatingTests.swift"
      ],
      "target_dependencies" : [
        "HTMLKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HTMLKitConverterTests",
      "module_type" : "SwiftTarget",
      "name" : "HTMLKitConverterTests",
      "path" : "Tests/HTMLKitConverterTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/HTMLKitConverterTests/Conversion/articles/article.html",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/HTMLKitConverterTests/Conversion/component.html",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/HTMLKitConverterTests/Conversion/index.html",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "ConversionTests.swift"
      ],
      "target_dependencies" : [
        "HTMLKitConverter"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HTMLKitConverter",
      "module_type" : "SwiftTarget",
      "name" : "HTMLKitConverter",
      "path" : "Sources/HTMLKitConverter",
      "product_memberships" : [
        "ConverterPlugin",
        "ConvertCommand"
      ],
      "sources" : [
        "Converter.swift",
        "InitRepresentable.swift",
        "Parser.swift"
      ],
      "target_dependencies" : [
        "HTMLKit"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HTMLKitComponentsTests",
      "module_type" : "SwiftTarget",
      "name" : "HTMLKitComponentsTests",
      "path" : "Tests/HTMLKitComponentsTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/HTMLKitComponentsTests/Localization",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "ComponentTests.swift",
        "InteractionTests.swift",
        "LocalizationTests.swift",
        "ModifierTests.swift",
        "SecurityTests.swift"
      ],
      "target_dependencies" : [
        "HTMLKitComponents",
        "HTMLKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HTMLKitComponents",
      "module_type" : "SwiftTarget",
      "name" : "HTMLKitComponents",
      "path" : "Sources/HTMLKitComponents",
      "product_memberships" : [
        "HTMLKit",
        "ComponentsPlugin",
        "DeployCommand"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/buttons/button.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/checkfield.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/datepicker.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/filedialog.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/picker.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/radioselect.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/searchfield.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/securefield.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/selectfield.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/slider.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/texteditor.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/textfield.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/textpad.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/globals.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/helpers/grouping.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/layout/grid.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/layout/list.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/layout/stack.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/typography/link.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/typography/symbol.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/typography/text.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/alert.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/card.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/carousel.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/chart.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/disclosure.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/divider.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/dropdown.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/form.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/image.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/modal.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/navigation.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/progress.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/scroll.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/snippet.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/tabs.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/video.css",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/buttons/dropdown.js",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/forms/progress.js",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/forms/selectfield.js",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/forms/textpad.js",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/alert.js",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/carousel.js",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/chart.js",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/datepicker.js",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/disclosure.js",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/navigation.js",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/tabs.js",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/video.js",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/interactions/all.js",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/bell.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/bookmark.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/calendar.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/chart.pie.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/chevron.down.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/chevron.left.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/chevron.right.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/chevron.up.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/clock.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/cloud.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/ellipsis.horizontal.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/ellipsis.vertical.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/envelope.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/eye.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/file.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/filter.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/flask.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/folder.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/house.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/key.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/lifepreserver.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/lightbulb.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/location.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/lock.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/pencil.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/person.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/photo.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/refresh.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/scope.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/sidebar.left.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/sidebar.right.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/square.split.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/target.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/text.aligncenter.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/text.alignjustify.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/text.alignleft.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/text.alignright.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/trash.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/tresor.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/window.maximize.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/window.minimize.svg",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Actions/SubmitAction.swift",
        "Actions/ViewAction.swift",
        "Builders/ActionBuilder.swift",
        "Components/Alert.swift",
        "Components/BarMark.swift",
        "Components/Button.swift",
        "Components/Card.swift",
        "Components/Carousel.swift",
        "Components/Chart.swift",
        "Components/CheckField.swift",
        "Components/DatePicker.swift",
        "Components/Disclosure.swift",
        "Components/Divider.swift",
        "Components/Dropdown.swift",
        "Components/FieldLabel.swift",
        "Components/FileDialog.swift",
        "Components/Form.swift",
        "Components/Grid.swift",
        "Components/Grouping.swift",
        "Components/HStack.swift",
        "Components/Image.swift",
        "Components/Link.swift",
        "Components/LinkButton.swift",
        "Components/List.swift",
        "Components/Modal.swift",
        "Components/Navigation.swift",
        "Components/Pane.swift",
        "Components/Picker.swift",
        "Components/Progress.swift",
        "Components/RadioSelect.swift",
        "Components/Scroll.swift",
        "Components/SearchField.swift",
        "Components/SectorMark.swift",
        "Components/SecureField.swift",
        "Components/SelectField.swift",
        "Components/Slide.swift",
        "Components/Slider.swift",
        "Components/Snippet.swift",
        "Components/Symbol.swift",
        "Components/Tabs.swift",
        "Components/Text.swift",
        "Components/TextEditor.swift",
        "Components/TextField.swift",
        "Components/TextPad.swift",
        "Components/VStack.swift",
        "Components/Video.swift",
        "Components/ZStack.swift",
        "Events/DragEvent.swift",
        "Events/FormEvent.swift",
        "Events/MouseEvent.swift",
        "Events/PressEvent.swift",
        "Extensions/Components+Image.swift",
        "Extensions/Components+Input.swift",
        "Extensions/Components+String.swift",
        "Modifiers/ButtonModifier.swift",
        "Modifiers/GraphicsModifier.swift",
        "Modifiers/ImageModifier.swift",
        "Modifiers/InputModifier.swift",
        "Modifiers/TextModifier.swift",
        "Modifiers/ViewModifier.swift",
        "Options.swift",
        "Primitives/Action.swift",
        "Primitives/Configurations.swift",
        "Primitives/DynamicType.swift",
        "Properties/Actionable.swift",
        "Properties/Identifiable.swift",
        "Properties/Modifiable.swift",
        "Properties/Selectable.swift",
        "Tokens.swift",
        "Validator.swift"
      ],
      "target_dependencies" : [
        "HTMLKit"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HTMLKit",
      "module_type" : "SwiftTarget",
      "name" : "HTMLKit",
      "path" : "Sources/HTMLKit",
      "product_dependencies" : [
        "Collections",
        "Logging"
      ],
      "product_memberships" : [
        "HTMLKit",
        "ComponentsPlugin",
        "ConverterPlugin",
        "DeployCommand",
        "ConvertCommand"
      ],
      "sources" : [
        "Abstraction/Attributes/AriaAttributes.swift",
        "Abstraction/Attributes/BasicAttributes.swift",
        "Abstraction/Attributes/EventAttributes.swift",
        "Abstraction/Attributes/VectorAttributes.swift",
        "Abstraction/Elements/BasicElements.swift",
        "Abstraction/Elements/BodyElements.swift",
        "Abstraction/Elements/DefinitionElements.swift",
        "Abstraction/Elements/FigureElements.swift",
        "Abstraction/Elements/FormElements.swift",
        "Abstraction/Elements/HeadElements.swift",
        "Abstraction/Elements/HtmlElements.swift",
        "Abstraction/Elements/InputElements.swift",
        "Abstraction/Elements/ListElements.swift",
        "Abstraction/Elements/MapElements.swift",
        "Abstraction/Elements/MediaElements.swift",
        "Abstraction/Elements/ObjectElements.swift",
        "Abstraction/Elements/RubyElements.swift",
        "Abstraction/Elements/TableElements.swift",
        "Abstraction/Elements/VectorElements.swift",
        "Abstraction/Tokens/EventTokens.swift",
        "Abstraction/Tokens/ValueTokens.swift",
        "Framework/Builders/ContentBuilder.swift",
        "Framework/Environment/Condition.swift",
        "Framework/Environment/Conditional.swift",
        "Framework/Environment/Environment.swift",
        "Framework/Environment/EnvironmentKeys.swift",
        "Framework/Environment/EnvironmentModifier.swift",
        "Framework/Environment/EnvironmentObject.swift",
        "Framework/Environment/EnvironmentString.swift",
        "Framework/Environment/EnvironmentValue.swift",
        "Framework/Environment/Negation.swift",
        "Framework/Environment/Nullable.swift",
        "Framework/Environment/Relation.swift",
        "Framework/Environment/Sequence.swift",
        "Framework/Environment/Statement.swift",
        "Framework/Extensions/Comparable+HTMLKit.swift",
        "Framework/Extensions/Datatypes+Content.swift",
        "Framework/Extensions/Optional+HTMLKit.swift",
        "Framework/Localization/InterpolationArgument.swift",
        "Framework/Localization/Locale.swift",
        "Framework/Localization/Localizable.swift",
        "Framework/Localization/Localization.swift",
        "Framework/Localization/LocalizedString.swift",
        "Framework/Localization/LocalizedStringKey.swift",
        "Framework/Localization/TranslationTable.swift",
        "Framework/Primitives/Attributes/Attribute.swift",
        "Framework/Primitives/Elements/Element.swift",
        "Framework/Primitives/Elements/Elements.swift",
        "Framework/Primitives/Layouts/Layouts.swift",
        "Framework/Primitives/Nodes/Node.swift",
        "Framework/Primitives/Nodes/Nodes.swift",
        "Framework/Primitives/Shared/Content.swift",
        "Framework/Rendering/Encoding/Encoder.swift",
        "Framework/Rendering/Encoding/HtmlString.swift",
        "Framework/Rendering/Features.swift",
        "Framework/Rendering/Markdown/Extensions/Markdown+Character.swift",
        "Framework/Rendering/Markdown/Lexer/MarkdownLexer.swift",
        "Framework/Rendering/Markdown/Lexer/MarkdownToken.swift",
        "Framework/Rendering/Markdown/Markdown.swift",
        "Framework/Rendering/Markdown/MarkdownString.swift",
        "Framework/Rendering/Markdown/Parser/MarkdownNode.swift",
        "Framework/Rendering/Markdown/Parser/MarkdownParser.swift",
        "Framework/Rendering/Renderer.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DeployCommand",
      "module_type" : "SwiftTarget",
      "name" : "DeployCommand",
      "path" : "Sources/Commands/Components",
      "product_memberships" : [
        "ComponentsPlugin",
        "DeployCommand"
      ],
      "sources" : [
        "DeployCommand.swift"
      ],
      "target_dependencies" : [
        "HTMLKitComponents",
        "Minifier"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "ConverterPlugin",
      "module_type" : "PluginTarget",
      "name" : "ConverterPlugin",
      "path" : "Plugins/ConverterPlugin",
      "plugin_capability" : {
        "intent" : {
          "description" : "Converts HTML markup into Swift syntax.",
          "type" : "custom",
          "verb" : "convert"
        },
        "permissions" : [
          {
            "network_scope" : {
              "none" : {
              }
            },
            "reason" : "The command needs the permission to create the file.",
            "type" : "writeToPackageDirectory"
          }
        ],
        "type" : "command"
      },
      "product_memberships" : [
        "ConverterPlugin"
      ],
      "sources" : [
        "Plugin.swift"
      ],
      "target_dependencies" : [
        "ConvertCommand"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "ConvertCommand",
      "module_type" : "SwiftTarget",
      "name" : "ConvertCommand",
      "path" : "Sources/Commands/Converter",
      "product_memberships" : [
        "ConverterPlugin",
        "ConvertCommand"
      ],
      "sources" : [
        "ConvertCommand.swift"
      ],
      "target_dependencies" : [
        "HTMLKitConverter"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "ComponentsPlugin",
      "module_type" : "PluginTarget",
      "name" : "ComponentsPlugin",
      "path" : "Plugins/ComponentsPlugin",
      "plugin_capability" : {
        "intent" : {
          "description" : "Deploys the CSS and JS files for the HTMLKit components.",
          "type" : "custom",
          "verb" : "deploy"
        },
        "permissions" : [
          {
            "network_scope" : {
              "none" : {
              }
            },
            "reason" : "The command needs the permission to create the files.",
            "type" : "writeToPackageDirectory"
          }
        ],
        "type" : "command"
      },
      "product_memberships" : [
        "ComponentsPlugin"
      ],
      "sources" : [
        "Plugin.swift"
      ],
      "target_dependencies" : [
        "DeployCommand"
      ],
      "type" : "plugin"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/vapor-community/htmlkit/3.0.0-alpha.13
Repository:               vapor-community/htmlkit
Swift version used:       6.1
        .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.4.3"),
Target:                   HTMLKit
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'HTMLKit'...
Finished extracting symbol information for 'HTMLKit'. (14.77s)
Building documentation for 'HTMLKit'...
warning: 'EnvironmentValue' doesn't exist at '/HTMLKit'
  --> Framework/Environment.md:23:13-23:29
21 | ### Value
22 |
23 + - ``HTMLKit/EnvironmentValue``
   |             ├─suggestion: Replace 'EnvironmentValue' with 'Environment'
   |             ╰─suggestion: Replace 'EnvironmentValue' with 'EnvironmentKeys'
24 |
25 | ### Model
warning: 'DocumentationExtension' doesn't change default configuration and has no effect
 --> Framework/Layouts/View.md:4:5-4:51
2 |
3 | @Metadata {
4 +     @DocumentationExtension(mergeBehavior: append)
  |     ╰─suggestion: Remove this 'DocumentationExtension' directive.
5 | }
6 |
warning: 'DocumentationExtension' doesn't change default configuration and has no effect
 --> Framework/Layouts/View.md:4:5-4:51
2 |
3 | @Metadata {
4 +     @DocumentationExtension(mergeBehavior: append)
  |     ╰─suggestion: Remove this 'DocumentationExtension' directive.
5 | }
6 |
warning: 'Documentation' directive should contain at least one list item
  --> Tutorials/Introduction.tutorial:29:9-31:10
27 |         Explore more resources for learning about HTMLKit.
28 |
29 +         @Documentation(destination: "https://swiftpackageindex.com/vapor-community/HTMLKit/documentation/htmlkit") {
30 +             Browse and search the API documentation.
31 +         }
32 |         @SampleCode(destination: "https://github.com/mattesmohr/Website") {
33 |             Explore sample code to get to know HTMLKit.
warning: 'SampleCode' directive should contain at least one list item
  --> Tutorials/Introduction.tutorial:32:9-34:10
30 |             Browse and search the API documentation.
31 |         }
32 +         @SampleCode(destination: "https://github.com/mattesmohr/Website") {
33 +             Explore sample code to get to know HTMLKit.
34 +         }
35 |         @Forums(destination: "https://discord.gg/invite/vapor") {
36 |             Discuss HTMLKit or reach out for help.
warning: Parameter 'lhs' not found in operator declaration
  --> ../Framework/Environment/Negation.swift:25:7-26:5
23 | ///
24 | /// - Parameters:
25 + ///   - lhs: The left-hand side conditional
   |       ╰─suggestion: Remove 'lhs' parameter documentation
26 + ///
27 | /// - Returns: A invert conditional
28 | public prefix func ! (value: EnvironmentValue) -> Conditional {
warning: Parameter 'value' is missing documentation
  --> ../Framework/Environment/Negation.swift:26:5-26:5
24 | /// - Parameters:
25 | ///   - lhs: The left-hand side conditional
26 + ///
   |     ╰─suggestion: Document 'value' parameter
27 | /// - Returns: A invert conditional
28 | public prefix func ! (value: EnvironmentValue) -> Conditional {
Finished building documentation for 'HTMLKit' (3.86s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/vapor-community/htmlkit/3.0.0-alpha.13
Building for debugging...
[0/7] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/57] Compiling SymbolKit Names.swift
[11/57] Compiling SymbolKit SPI.swift
[12/57] Compiling SymbolKit Snippet.swift
[13/57] Compiling SymbolKit Extension.swift
[14/57] Compiling SymbolKit Mixin+Equals.swift
[15/57] Compiling SymbolKit Mixin+Hash.swift
[16/57] Compiling SymbolKit Mixin.swift
[17/57] Compiling SymbolKit LineList.swift
[18/57] Compiling SymbolKit Position.swift
[19/57] Compiling SymbolKit SourceRange.swift
[20/57] Compiling SymbolKit Metadata.swift
[21/57] Compiling SymbolKit Module.swift
[22/57] Compiling SymbolKit OperatingSystem.swift
[23/57] Compiling SymbolKit Platform.swift
[24/57] Emitting module SymbolKit
[25/57] Compiling SymbolKit Relationship.swift
[26/57] Compiling SymbolKit RelationshipKind.swift
[27/57] Compiling SymbolKit SourceOrigin.swift
[28/57] Compiling SymbolKit GenericConstraints.swift
[29/57] Compiling SymbolKit Swift.swift
[30/57] Compiling SymbolKit SemanticVersion.swift
[31/57] Compiling SymbolKit AccessControl.swift
[32/57] Compiling SymbolKit Availability.swift
[33/57] Compiling SymbolKit AvailabilityItem.swift
[34/57] Compiling SymbolKit Domain.swift
[35/57] Compiling SymbolKit Identifier.swift
[36/57] Compiling SymbolKit KindIdentifier.swift
[37/57] Compiling SymbolKit Location.swift
[38/57] Compiling SymbolKit Mutability.swift
[39/57] Compiling SymbolKit Symbol.swift
[40/57] Compiling SymbolKit SymbolKind.swift
[41/57] Compiling SymbolKit SymbolGraph.swift
[42/57] Compiling SymbolKit GraphCollector.swift
[43/57] Compiling SymbolKit DeclarationFragments.swift
[44/57] Compiling SymbolKit Fragment.swift
[45/57] Compiling SymbolKit FragmentKind.swift
[46/57] Compiling SymbolKit FunctionParameter.swift
[47/57] Compiling SymbolKit FunctionSignature.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Emitting module Snippets
[53/57] Compiling Snippets SnippetParser.swift
[54/57] Compiling Snippets Snippet.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (6.53s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/20] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[3/20] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[4/21] Compiling InternalCollectionsUtilities Debugging.swift
[5/21] Compiling InternalCollectionsUtilities Descriptions.swift
[6/21] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[7/21] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[8/21] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[9/21] Compiling InternalCollectionsUtilities _SortedCollection.swift
[10/21] Emitting module InternalCollectionsUtilities
[11/21] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[12/21] Compiling InternalCollectionsUtilities UInt+reversed.swift
[13/21] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[14/21] Compiling InternalCollectionsUtilities Integer rank.swift
[15/21] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[16/21] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[17/44] Compiling Logging MetadataProvider.swift
[18/44] Compiling Logging LogHandler.swift
[19/44] Compiling Logging Locks.swift
[20/44] Emitting module Logging
[21/44] Compiling Logging Logging.swift
[22/303] Compiling _RopeModule BigString+Debugging.swift
[23/303] Compiling _RopeModule BigString+Index.swift
[24/304] Compiling DequeModule _DequeBuffer.swift
[25/304] Compiling DequeModule _DequeSlot.swift
[26/304] Compiling DequeModule _DequeBufferHeader.swift
[27/304] Compiling HeapModule _HeapNode.swift
[28/304] Compiling HeapModule Heap.swift
[29/304] Compiling HeapModule Heap+Invariants.swift
[30/304] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[31/304] Compiling HeapModule Heap+UnsafeHandle.swift
[32/304] Compiling HeapModule Heap+Descriptions.swift
[33/304] Compiling _RopeModule BigString+Ingester.swift
[34/304] Compiling _RopeModule BigString+Invariants.swift
[35/304] Emitting module HeapModule
[36/304] Compiling _RopeModule BigString+Iterators.swift
[37/304] Compiling _RopeModule BigString+Metrics.swift
[38/304] Compiling DequeModule _UnsafeWrappedBuffer.swift
[39/304] Compiling HashTreeCollections _UnmanagedHashNode.swift
[40/304] Compiling HashTreeCollections _UnsafePath.swift
[41/304] Compiling HashTreeCollections TreeDictionary+Codable.swift
[42/304] Compiling HashTreeCollections TreeDictionary+Collection.swift
[43/304] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[44/304] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[45/310] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[46/310] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[47/310] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[48/310] Compiling HashTreeCollections TreeDictionary+Filter.swift
[49/310] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[50/310] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[51/310] Compiling HashTreeCollections TreeDictionary+Keys.swift
[52/310] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[53/310] Compiling HashTreeCollections TreeDictionary+Merge.swift
[54/310] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[55/310] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[56/310] Compiling HashTreeCollections TreeDictionary+Values.swift
[57/310] Compiling HashTreeCollections _HashNodeHeader.swift
[58/310] Compiling HashTreeCollections _HashSlot.swift
[59/310] Compiling HashTreeCollections _HashStack.swift
[60/310] Compiling HashTreeCollections _HashTreeIterator.swift
[61/310] Compiling HashTreeCollections _HashTreeStatistics.swift
[62/310] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[63/315] Compiling HashTreeCollections _HashNode+Structural union.swift
[64/315] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[65/315] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[66/315] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[67/315] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[68/315] Compiling HashTreeCollections _HashNode.swift
[69/315] Compiling HashTreeCollections _RawHashNode.swift
[75/315] Compiling HashTreeCollections TreeSet+Equatable.swift
[76/315] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[77/315] Compiling HashTreeCollections TreeSet+Extras.swift
[78/315] Compiling HashTreeCollections TreeSet+Filter.swift
[79/315] Compiling HashTreeCollections TreeSet+Hashable.swift
[80/315] Compiling HashTreeCollections TreeSet+Sendable.swift
[81/315] Compiling HashTreeCollections TreeSet+Sequence.swift
[82/315] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[83/315] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[84/315] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[85/315] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[86/315] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[87/315] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[88/315] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[89/315] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[90/315] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[92/323] Compiling _RopeModule BigString+Summary.swift
[93/323] Compiling _RopeModule BigString.swift
[94/323] Compiling _RopeModule BigString+Chunk+Append and Insert.swift
[95/323] Compiling _RopeModule BigString+Chunk+Breaks.swift
[96/323] Compiling HashTreeCollections _HashNode+Primitive Replacement.swift
[110/323] Compiling BitCollections BitSet.swift
[111/323] Compiling BitCollections Range+Utilities.swift
[112/323] Compiling BitCollections Slice+Utilities.swift
[113/323] Compiling BitCollections UInt+Tricks.swift
[114/323] Compiling BitCollections _Word.swift
[115/323] Compiling OrderedCollections OrderedSet.swift
[116/323] Compiling OrderedCollections _UnsafeBitset.swift
[129/323] Compiling _RopeModule BigString+Chunk+Description.swift
[130/323] Compiling _RopeModule BigString+Chunk+Indexing by Characters.swift
[131/323] Compiling _RopeModule BigString+Chunk+Indexing by UTF16.swift
[132/323] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[133/323] Compiling _RopeModule BigString+Chunk+Splitting.swift
[134/323] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[135/323] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[136/323] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[137/323] Compiling HashTreeCollections _HashNode+Structural merge.swift
[138/323] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[139/323] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[141/323] Compiling _RopeModule BigString+Builder.swift
[142/323] Compiling _RopeModule BigString+Contents.swift
[143/323] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[144/323] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[145/323] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[146/323] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[147/323] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[148/323] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[149/323] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[150/323] Compiling HashTreeCollections TreeSet.swift
[186/323] Emitting module BitCollections
[200/330] Emitting module DequeModule
[313/330] Emitting module OrderedCollections
[314/330] Compiling _RopeModule Rope+Remove.swift
[315/330] Compiling _RopeModule Rope+RemoveSubrange.swift
[316/330] Compiling _RopeModule Rope+Split.swift
[317/330] Compiling _RopeModule Optional Utilities.swift
[318/330] Compiling _RopeModule String Utilities.swift
[319/330] Compiling _RopeModule String.Index+ABI.swift
[320/330] Compiling _RopeModule _CharacterRecognizer.swift
[321/330] Emitting module _RopeModule
[330/330] Emitting module HashTreeCollections
[331/332] Compiling Collections Collections.swift
[332/332] Emitting module Collections
[333/390] Compiling HTMLKit Attribute.swift
[334/390] Compiling HTMLKit Element.swift
[335/390] Compiling HTMLKit Elements.swift
[336/390] Compiling HTMLKit Layouts.swift
[337/390] Compiling HTMLKit Node.swift
[338/390] Compiling HTMLKit Nodes.swift
[339/396] Compiling HTMLKit EnvironmentObject.swift
[340/396] Compiling HTMLKit EnvironmentString.swift
[341/396] Compiling HTMLKit EnvironmentValue.swift
[342/396] Compiling HTMLKit Negation.swift
[343/396] Compiling HTMLKit Nullable.swift
[344/396] Compiling HTMLKit Relation.swift
[345/396] Compiling HTMLKit Sequence.swift
[346/396] Compiling HTMLKit Statement.swift
[347/396] Compiling HTMLKit Comparable+HTMLKit.swift
[348/396] Compiling HTMLKit Datatypes+Content.swift
[349/396] Compiling HTMLKit Optional+HTMLKit.swift
[350/396] Compiling HTMLKit InterpolationArgument.swift
[351/396] Compiling HTMLKit ContentBuilder.swift
[352/396] Compiling HTMLKit Condition.swift
[353/396] Compiling HTMLKit Conditional.swift
[354/396] Compiling HTMLKit Environment.swift
[355/396] Compiling HTMLKit EnvironmentKeys.swift
[356/396] Compiling HTMLKit EnvironmentModifier.swift
[357/396] Compiling HTMLKit MarkdownToken.swift
[358/396] Compiling HTMLKit Markdown.swift
[359/396] Compiling HTMLKit MarkdownString.swift
[360/396] Compiling HTMLKit MarkdownNode.swift
[361/396] Compiling HTMLKit MarkdownParser.swift
[362/396] Compiling HTMLKit Renderer.swift
[363/396] Compiling HTMLKit MediaElements.swift
[364/396] Compiling HTMLKit ObjectElements.swift
[365/396] Compiling HTMLKit RubyElements.swift
[366/396] Compiling HTMLKit TableElements.swift
[367/396] Compiling HTMLKit VectorElements.swift
[368/396] Compiling HTMLKit EventTokens.swift
[369/396] Compiling HTMLKit ValueTokens.swift
[370/396] Compiling HTMLKit Content.swift
[371/396] Compiling HTMLKit Encoder.swift
[372/396] Compiling HTMLKit HtmlString.swift
[373/396] Compiling HTMLKit Features.swift
[374/396] Compiling HTMLKit Markdown+Character.swift
[375/396] Compiling HTMLKit MarkdownLexer.swift
[376/396] Compiling HTMLKit FigureElements.swift
[377/396] Compiling HTMLKit FormElements.swift
[378/396] Compiling HTMLKit HeadElements.swift
[379/396] Compiling HTMLKit HtmlElements.swift
[380/396] Compiling HTMLKit InputElements.swift
[381/396] Compiling HTMLKit ListElements.swift
[382/396] Compiling HTMLKit MapElements.swift
[383/396] Emitting module HTMLKit
[384/396] Compiling HTMLKit Locale.swift
[385/396] Compiling HTMLKit Localizable.swift
[386/396] Compiling HTMLKit Localization.swift
[387/396] Compiling HTMLKit LocalizedString.swift
[388/396] Compiling HTMLKit LocalizedStringKey.swift
[389/396] Compiling HTMLKit TranslationTable.swift
[390/396] Compiling HTMLKit AriaAttributes.swift
[391/396] Compiling HTMLKit BasicAttributes.swift
[392/396] Compiling HTMLKit EventAttributes.swift
[393/396] Compiling HTMLKit VectorAttributes.swift
[394/396] Compiling HTMLKit BasicElements.swift
[395/396] Compiling HTMLKit BodyElements.swift
[396/396] Compiling HTMLKit DefinitionElements.swift
Build of target: 'HTMLKit' complete! (12.40s)
   16399
86	/Users/admin/builder/spi-builder-workspace/.docs/vapor-community/htmlkit/3.0.0-alpha.13
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/vapor-community/htmlkit/3.0.0-alpha.13
File count: 16399
Doc size:   86.0MB
Preparing doc bundle ...
Uploading prod-vapor-community-htmlkit-3.0.0-alpha.13-a410cefa.zip to s3://spi-docs-inbox/prod-vapor-community-htmlkit-3.0.0-alpha.13-a410cefa.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.