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.14 (6c81c4), with Swift 6.1 for macOS (SPM) on 26 Sep 2025 22:29:06 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

 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) {
[2346/2579] Compiling HTMLKitComponents Options.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) {
[2347/2579] Compiling HTMLKitComponents Action.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) {
[2348/2579] Compiling HTMLKitComponents Configurations.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) {
[2349/2579] Compiling HTMLKitComponents DynamicType.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) {
[2350/2651] Compiling HTMLKitComponents List.swift
[2351/2651] Compiling HTMLKitComponents Modal.swift
[2352/2651] Compiling HTMLKitComponents Navigation.swift
[2353/2651] Compiling HTMLKitComponents Pane.swift
[2354/2651] Compiling HTMLKitComponents Picker.swift
[2355/2651] Compiling HTMLKitComponents Progress.swift
[2356/2651] Compiling HTMLKitComponents PressEvent.swift
[2357/2651] Compiling HTMLKitComponents Components+Image.swift
[2358/2651] Compiling HTMLKitComponents Components+Input.swift
[2359/2651] Compiling HTMLKitComponents Components+String.swift
[2360/2651] Compiling HTMLKitComponents ButtonModifier.swift
[2361/2651] Compiling HTMLKitComponents GraphicsModifier.swift
[2362/2651] Compiling HTMLKitComponents ImageModifier.swift
[2363/2651] Compiling HTMLKitComponents InputModifier.swift
[2364/2651] Compiling HTMLKitComponents TextModifier.swift
[2365/2651] Compiling HTMLKitComponents ViewModifier.swift
[2366/2651] Compiling HTMLKitComponents Options.swift
[2367/2651] Compiling HTMLKitComponents Action.swift
[2368/2651] Compiling HTMLKitComponents Configurations.swift
[2369/2651] Compiling HTMLKitComponents DynamicType.swift
[2370/2651] Compiling HTMLKitComponents Actionable.swift
[2371/2651] Compiling HTMLKitComponents Identifiable.swift
[2379/2651] Compiling Vapor Extendable.swift
[2380/2651] Compiling Vapor File.swift
[2381/2651] Compiling Vapor FileIO.swift
[2382/2651] Compiling Vapor LifecycleHandler.swift
[2383/2651] Compiling Vapor OptionalType.swift
[2384/2651] Compiling Vapor RFC1123.swift
[2385/2651] Compiling Vapor SocketAddress+Hostname.swift
[2386/2651] Compiling Vapor Storage.swift
[2387/2651] Compiling Vapor String+IsIPAddress.swift
[2388/2651] Compiling Vapor Thread.swift
[2389/2651] Compiling Vapor URI.swift
[2390/2651] Compiling Vapor VaporSendableMetadataType.swift
[2391/2651] Compiling Vapor RangeResult.swift
[2392/2651] Compiling Vapor Validatable.swift
[2393/2651] Compiling Vapor Validation.swift
[2394/2651] Compiling Vapor ValidationKey.swift
[2395/2651] Compiling Vapor Validations.swift
[2396/2651] Compiling Vapor ValidationsError.swift
[2397/2651] Compiling Vapor Validator.swift
[2398/2651] Compiling Vapor ValidatorResult.swift
[2399/2651] Compiling Vapor And.swift
[2400/2651] Compiling HTMLKitComponents TextPad.swift
[2401/2651] Compiling HTMLKitComponents VStack.swift
[2402/2651] Compiling HTMLKitComponents Video.swift
[2403/2651] Compiling HTMLKitComponents ZStack.swift
[2404/2651] Compiling HTMLKitComponents DragEvent.swift
[2405/2651] Compiling HTMLKitComponents FormEvent.swift
[2406/2651] Compiling HTMLKitComponents MouseEvent.swift
[2407/2651] Compiling HTMLKitComponents TextField.swift
[2408/2651] Compiling HTMLKitComponents Chart.swift
[2409/2651] Compiling HTMLKitComponents CheckField.swift
[2410/2651] Compiling HTMLKitComponents DatePicker.swift
[2411/2651] Compiling HTMLKitComponents Disclosure.swift
[2412/2651] Compiling HTMLKitComponents Divider.swift
[2413/2651] Compiling HTMLKitComponents Dropdown.swift
[2414/2651] Compiling HTMLKitComponents FieldLabel.swift
[2415/2651] Compiling HTMLKitComponents LinkButton.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) {
[2436/2658] Compiling HTMLKitComponents Slide.swift
[2437/2658] Compiling HTMLKitComponents FileDialog.swift
[2438/2658] Compiling HTMLKitComponents Form.swift
[2439/2658] Compiling HTMLKitComponents Grid.swift
[2440/2658] Compiling HTMLKitComponents Grouping.swift
[2441/2658] Compiling HTMLKitComponents HStack.swift
[2442/2658] Compiling HTMLKitComponents Image.swift
[2443/2658] Compiling HTMLKitComponents SubmitAction.swift
[2444/2658] Compiling HTMLKitComponents ViewAction.swift
[2445/2658] Compiling HTMLKitComponents ActionBuilder.swift
[2446/2658] Compiling HTMLKitComponents Alert.swift
[2447/2658] Compiling HTMLKitComponents BarMark.swift
[2448/2658] Compiling HTMLKitComponents Button.swift
[2449/2658] Compiling HTMLKitComponents Card.swift
[2450/2658] Compiling HTMLKitComponents Carousel.swift
[2451/2658] Compiling HTMLKitComponents RadioSelect.swift
[2452/2658] Compiling HTMLKitComponents Scroll.swift
[2453/2658] Compiling HTMLKitComponents SearchField.swift
[2454/2658] Compiling HTMLKitComponents SectorMark.swift
[2455/2658] Compiling HTMLKitComponents SecureField.swift
[2456/2658] Compiling HTMLKitComponents SelectField.swift
[2457/2658] Compiling HTMLKitComponents Link.swift
[2458/2658] Compiling HTMLKitComponents Slider.swift
[2459/2658] Compiling HTMLKitComponents Snippet.swift
[2460/2658] Compiling HTMLKitComponents Symbol.swift
[2461/2658] Compiling HTMLKitComponents Tabs.swift
[2462/2658] Compiling HTMLKitComponents Text.swift
[2463/2658] Compiling HTMLKitComponents TextEditor.swift
[2464/2658] Compiling HTMLKitComponents Actionable.swift
[2465/2658] Compiling HTMLKitComponents Identifiable.swift
[2466/2658] Compiling HTMLKitComponents Modifiable.swift
[2467/2658] Compiling HTMLKitComponents Selectable.swift
[2468/2658] Compiling HTMLKitComponents Tokens.swift
[2469/2658] Compiling HTMLKitComponents Validator.swift
[2470/2658] Compiling HTMLKitComponents resource_bundle_accessor.swift
[2471/2658] 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) {
[2529/2660] Compiling Vapor Case.swift
[2530/2660] Compiling Vapor CharacterSet.swift
[2531/2660] Compiling Vapor Count.swift
[2532/2660] Compiling Vapor Custom.swift
[2533/2660] Compiling Vapor Email.swift
[2534/2660] Compiling Vapor Empty.swift
[2535/2660] Compiling Vapor In.swift
[2536/2660] Compiling Vapor Nil.swift
[2537/2660] Compiling Vapor NilIgnoring.swift
[2538/2660] Compiling Vapor Not.swift
[2539/2660] Compiling Vapor Or.swift
[2540/2660] Compiling Vapor Pattern.swift
[2541/2660] Compiling Vapor Range.swift
[2542/2660] Compiling Vapor URL.swift
[2543/2660] Compiling Vapor Valid.swift
[2544/2660] Compiling Vapor Application+Views.swift
[2545/2660] Compiling Vapor PlaintextRenderer.swift
[2546/2660] Compiling Vapor Request+View.swift
[2547/2660] Compiling Vapor View.swift
[2548/2660] Compiling Vapor ViewRenderer.swift
[2549/2660] Compiling Vapor _Deprecations.swift
[2550/2660] 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) {
[2551/2660] 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.
[2552/2660] 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.
[2552/2660] Write Objects.LinkFileList
[2554/2662] 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.
[2555/2662] 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.
[2555/2662] Write Objects.LinkFileList
[2557/2662] Compiling Vapor Application.swift
[2558/2662] Compiling Vapor AuthenticationCache.swift
[2559/2662] Compiling Vapor Authenticator.swift
[2560/2662] Compiling Vapor BasicAuthorization.swift
[2561/2662] Compiling Vapor BearerAuthorization.swift
[2562/2662] Compiling Vapor GuardMiddleware.swift
[2563/2662] Compiling Vapor RedirectMiddleware.swift
[2564/2662] Compiling Vapor SessionAuthenticatable.swift
[2565/2662] Compiling Vapor Bcrypt.swift
[2566/2662] Compiling Vapor Application+Cache.swift
[2567/2662] Compiling Vapor Cache.swift
[2568/2662] Compiling Vapor CacheExpirationTime.swift
[2569/2662] Compiling Vapor MemoryCache.swift
[2570/2662] Compiling Vapor Request+Cache.swift
[2571/2662] Compiling Vapor Application+Clients.swift
[2572/2662] Compiling Vapor Client.swift
[2573/2662] Compiling Vapor ClientRequest.swift
[2574/2662] Compiling Vapor ClientResponse.swift
[2575/2662] Compiling Vapor Request+Client.swift
[2576/2662] Compiling Vapor BootCommand.swift
[2577/2662] Compiling Vapor CommandContext+Application.swift
[2578/2662] Compiling Vapor RoutesCommand.swift
[2579/2662] Emitting module Vapor
[2579/2662] Linking DeployCommand-tool
[2586/2662] Compiling Vapor URLEncodedFormSerializer.swift
[2587/2662] Compiling Vapor URLQueryFragmentConvertible.swift
[2588/2662] Compiling Vapor AnyResponse.swift
[2589/2662] Compiling Vapor Array+Random.swift
[2590/2662] Compiling Vapor Base32.swift
[2591/2662] Compiling Vapor Base64.swift
[2592/2662] Compiling Vapor BaseN.swift
[2593/2662] Compiling Vapor BasicCodingKey.swift
[2594/2662] Compiling Vapor ByteCount.swift
[2595/2662] Compiling Vapor Bytes+Hex.swift
[2596/2662] Compiling Vapor Bytes+SecureCompare.swift
[2597/2662] Compiling Vapor Collection+Safe.swift
[2598/2662] Compiling Vapor DataProtocol+Copy.swift
[2599/2662] Compiling Vapor DecoderUnwrapper.swift
[2600/2662] Compiling Vapor DirectoryConfiguration.swift
[2601/2662] Compiling Vapor DotEnv.swift
[2601/2662] Applying DeployCommand-tool
[2646/2662] Linking DeployCommand
[2647/2662] Applying DeployCommand
[2649/2666] Compiling HTMLKitConverter InitRepresentable.swift
[2650/2666] 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() {}
[2651/2666] 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() {}
[2652/2666] 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() {}
[2653/2666] Compiling HTMLKitVapor Configuration.swift
[2654/2666] Compiling HTMLKitVapor ViewRenderer.swift
[2655/2666] 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
[2656/2666] 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
[2657/2668] Compiling HTMLKitConverter InitRepresentable.swift
[2658/2668] 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() {}
[2659/2668] 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() {}
[2660/2668] 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() {}
[2661/2668] Compiling ConvertCommand ConvertCommand.swift
[2662/2668] Emitting module ConvertCommand
[2662/2668] Write Objects.LinkFileList
[2664/2670] Emitting module ConvertCommand
[2665/2670] Compiling ConvertCommand ConvertCommand.swift
[2665/2670] Write Objects.LinkFileList
[2666/2670] Linking ConvertCommand-tool
[2667/2670] Applying ConvertCommand-tool
[2668/2670] Linking ConvertCommand
[2669/2670] Applying ConvertCommand
Build complete! (64.14s)
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/Extensions/URL+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.14
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'. (15.49s)
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.96s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/vapor-community/htmlkit/3.0.0-alpha.14
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 Mixin+Equals.swift
[7/53] Compiling SymbolKit Mixin+Hash.swift
[8/53] Compiling SymbolKit Mixin.swift
[9/53] Compiling SymbolKit LineList.swift
[10/53] Compiling SymbolKit Position.swift
[11/57] Emitting module SymbolKit
[12/57] Compiling SymbolKit SemanticVersion.swift
[13/57] Compiling SymbolKit AccessControl.swift
[14/57] Compiling SymbolKit Availability.swift
[15/57] Compiling SymbolKit AvailabilityItem.swift
[16/57] Compiling SymbolKit Domain.swift
[17/57] Compiling SymbolKit Identifier.swift
[18/57] Compiling SymbolKit KindIdentifier.swift
[19/57] Compiling SymbolKit Location.swift
[20/57] Compiling SymbolKit Mutability.swift
[21/57] Compiling SymbolKit Names.swift
[22/57] Compiling SymbolKit SPI.swift
[23/57] Compiling SymbolKit Snippet.swift
[24/57] Compiling SymbolKit Extension.swift
[25/57] Compiling SymbolKit GenericConstraint.swift
[26/57] Compiling SymbolKit GenericParameter.swift
[27/57] Compiling SymbolKit Generics.swift
[28/57] Compiling SymbolKit Namespace.swift
[29/57] Compiling SymbolKit Relationship.swift
[30/57] Compiling SymbolKit RelationshipKind.swift
[31/57] Compiling SymbolKit SourceOrigin.swift
[32/57] Compiling SymbolKit GenericConstraints.swift
[33/57] Compiling SymbolKit Swift.swift
[34/57] Compiling SymbolKit SourceRange.swift
[35/57] Compiling SymbolKit Metadata.swift
[36/57] Compiling SymbolKit Module.swift
[37/57] Compiling SymbolKit OperatingSystem.swift
[38/57] Compiling SymbolKit Platform.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] Compiling Snippets Snippet.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets SnippetParser.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! (7.17s)
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 _UniqueCollection.swift
[5/21] Compiling InternalCollectionsUtilities Debugging.swift
[6/21] Compiling InternalCollectionsUtilities Descriptions.swift
[7/21] Compiling Logging MetadataProvider.swift
[8/21] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[9/21] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[10/21] Compiling InternalCollectionsUtilities Integer rank.swift
[11/21] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[12/21] Compiling InternalCollectionsUtilities _SortedCollection.swift
[13/21] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[14/21] Compiling InternalCollectionsUtilities UInt+reversed.swift
[15/21] Emitting module InternalCollectionsUtilities
[16/21] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[17/21] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[18/42] Compiling Logging LogHandler.swift
[19/42] Compiling Logging Locks.swift
[20/42] Emitting module Logging
[21/42] Compiling Logging Logging.swift
[22/303] Compiling DequeModule _DequeBuffer.swift
[23/304] Compiling DequeModule _DequeBufferHeader.swift
[24/304] Compiling DequeModule _DequeSlot.swift
[25/304] Compiling HeapModule Heap.swift
[26/304] Compiling HeapModule _HeapNode.swift
[27/304] Compiling HeapModule Heap+Invariants.swift
[28/304] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[29/304] Compiling HeapModule Heap+UnsafeHandle.swift
[30/304] Compiling HeapModule Heap+Descriptions.swift
[31/304] Compiling _RopeModule BigString+Split.swift
[32/304] Compiling _RopeModule Range+BigString.swift
[33/304] Compiling _RopeModule BigString+RemoveSubrange.swift
[34/304] Compiling _RopeModule BigString+ReplaceSubrange.swift
[35/304] Compiling _RopeModule BigString+UTF16View.swift
[36/304] Compiling _RopeModule BigString+UTF8View.swift
[37/304] Emitting module HeapModule
[38/304] Compiling _RopeModule BigString+Iterators.swift
[39/304] Compiling _RopeModule BigString+Metrics.swift
[40/304] Compiling _RopeModule BigString+ExpressibleByStringLiteral.swift
[41/304] Compiling _RopeModule BigString+Hashing.swift
[42/304] Compiling _RopeModule BigString+LosslessStringConvertible.swift
[43/304] Compiling _RopeModule BigString+RangeReplaceableCollection.swift
[44/310] Compiling _RopeModule BigString.swift
[45/310] Compiling _RopeModule BigString+Chunk+Append and Insert.swift
[46/310] Compiling _RopeModule BigString+Chunk+Breaks.swift
[47/310] Compiling _RopeModule BigString+Chunk+Counts.swift
[48/310] Compiling _RopeModule BigString+Chunk+Description.swift
[49/310] Compiling _RopeModule BigString+Chunk+Indexing by Characters.swift
[54/315] Compiling _RopeModule BigString+Chunk+Indexing by UTF16.swift
[55/315] Compiling _RopeModule BigString+Builder.swift
[56/315] Compiling _RopeModule BigString+Contents.swift
[57/315] Compiling _RopeModule BigString+Debugging.swift
[58/318] Compiling _RopeModule BigString+Invariants.swift
[64/323] Compiling _RopeModule Rope+_UnmanagedLeaf.swift
[65/323] Compiling _RopeModule Rope+_UnsafeHandle.swift
[66/323] Compiling _RopeModule Rope.swift
[67/323] Compiling _RopeModule RopeElement.swift
[68/323] Compiling _RopeModule RopeMetric.swift
[69/323] Compiling _RopeModule BigString+Summary.swift
[70/323] Compiling _RopeModule BigString+Sequence.swift
[71/323] Compiling _RopeModule BigString+TextOutputStream.swift
[72/323] Compiling _RopeModule BigString+Append.swift
[73/323] Compiling _RopeModule BigString+Initializers.swift
[74/323] Compiling _RopeModule BigString+Chunk+RopeElement.swift
[75/323] Compiling _RopeModule BigString+Chunk+Splitting.swift
[76/323] Compiling _RopeModule BigString+Chunk.swift
[77/323] Compiling _RopeModule BigString+BidirectionalCollection.swift
[78/323] Compiling _RopeModule BigString+Comparable.swift
[79/323] Compiling _RopeModule BigString+CustomDebugStringConvertible.swift
[80/323] Compiling _RopeModule BigString+CustomStringConvertible.swift
[81/323] Compiling BitCollections BitSet.swift
[82/323] Compiling DequeModule _UnsafeWrappedBuffer.swift
[84/323] Compiling _RopeModule BigString+UnicodeScalarView.swift
[85/323] Compiling _RopeModule BigSubstring+UTF16View.swift
[86/323] Compiling _RopeModule BigSubstring+UTF8View.swift
[87/323] Compiling _RopeModule BigSubstring+UnicodeScalarView.swift
[88/323] Compiling _RopeModule BigSubstring.swift
[89/323] Emitting module BitCollections
[94/323] Compiling _RopeModule Rope+Builder.swift
[95/323] Compiling _RopeModule Rope+Debugging.swift
[96/323] Compiling _RopeModule Rope+Invariants.swift
[97/323] Compiling _RopeModule Rope+_Node.swift
[107/323] Compiling _RopeModule BigString+Index.swift
[108/323] Compiling _RopeModule BigString+Ingester.swift
[118/323] Compiling _RopeModule Rope+_Storage.swift
[133/323] Compiling BitCollections Range+Utilities.swift
[134/323] Compiling BitCollections Slice+Utilities.swift
[135/323] Compiling BitCollections UInt+Tricks.swift
[136/323] Compiling BitCollections _Word.swift
[149/323] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[150/323] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[151/323] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[152/323] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[153/323] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[154/323] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[155/323] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[156/323] Compiling HashTreeCollections TreeSet.swift
[169/323] Compiling _RopeModule BigString+Insert.swift
[170/323] Compiling _RopeModule BigString+Managing Breaks.swift
[177/323] Emitting module DequeModule
[201/323] Compiling OrderedCollections OrderedSet.swift
[202/323] Compiling OrderedCollections _UnsafeBitset.swift
[203/323] Compiling _RopeModule Rope+Sequence.swift
[204/323] Compiling _RopeModule Rope+Append.swift
[205/323] Compiling _RopeModule Rope+Extract.swift
[206/323] Compiling _RopeModule Rope+Find.swift
[207/323] Compiling _RopeModule Rope+ForEachWhile.swift
[208/323] Compiling _RopeModule Rope+Insert.swift
[209/323] Compiling _RopeModule Rope+Join.swift
[219/323] Compiling _RopeModule Rope+MutatingForEach.swift
[220/323] Compiling HashTreeCollections _UnmanagedHashNode.swift
[221/323] Compiling HashTreeCollections _UnsafePath.swift
[222/323] Compiling HashTreeCollections TreeDictionary+Codable.swift
[223/323] Compiling HashTreeCollections TreeDictionary+Collection.swift
[224/323] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[225/323] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[226/323] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[227/323] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[305/330] Emitting module OrderedCollections
[306/330] Emitting module _RopeModule
[307/330] Compiling _RopeModule Rope+Remove.swift
[308/330] Compiling _RopeModule Rope+RemoveSubrange.swift
[309/330] Compiling _RopeModule Rope+Split.swift
[310/330] Compiling _RopeModule Optional Utilities.swift
[311/330] Compiling _RopeModule String Utilities.swift
[312/330] Compiling _RopeModule String.Index+ABI.swift
[313/330] Compiling _RopeModule _CharacterRecognizer.swift
[330/330] Emitting module HashTreeCollections
[331/332] Compiling Collections Collections.swift
[332/332] Emitting module Collections
[333/391] Compiling HTMLKit EnvironmentString.swift
[334/391] Compiling HTMLKit EnvironmentValue.swift
[335/391] Compiling HTMLKit Negation.swift
[336/391] Compiling HTMLKit Nullable.swift
[337/391] Compiling HTMLKit Relation.swift
[338/391] Compiling HTMLKit Sequence.swift
[339/397] Compiling HTMLKit ContentBuilder.swift
[340/397] Compiling HTMLKit Condition.swift
[341/397] Compiling HTMLKit Conditional.swift
[342/397] Compiling HTMLKit Environment.swift
[343/397] Compiling HTMLKit EnvironmentKeys.swift
[344/397] Compiling HTMLKit EnvironmentModifier.swift
[345/397] Compiling HTMLKit EnvironmentObject.swift
[346/397] Compiling HTMLKit Statement.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Extensions/URL+HTMLKit.swift:3:1: warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension URL: ExpressibleByStringLiteral {
  | |- warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
4 |
5 |     public init(stringLiteral value: String) {
[347/397] Compiling HTMLKit Comparable+HTMLKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Extensions/URL+HTMLKit.swift:3:1: warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension URL: ExpressibleByStringLiteral {
  | |- warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
4 |
5 |     public init(stringLiteral value: String) {
[348/397] Compiling HTMLKit Datatypes+Content.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Extensions/URL+HTMLKit.swift:3:1: warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension URL: ExpressibleByStringLiteral {
  | |- warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
4 |
5 |     public init(stringLiteral value: String) {
[349/397] Compiling HTMLKit Optional+HTMLKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Extensions/URL+HTMLKit.swift:3:1: warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension URL: ExpressibleByStringLiteral {
  | |- warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
4 |
5 |     public init(stringLiteral value: String) {
[350/397] Compiling HTMLKit URL+HTMLKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Extensions/URL+HTMLKit.swift:3:1: warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension URL: ExpressibleByStringLiteral {
  | |- warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
4 |
5 |     public init(stringLiteral value: String) {
[351/397] Compiling HTMLKit InterpolationArgument.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Extensions/URL+HTMLKit.swift:3:1: warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension URL: ExpressibleByStringLiteral {
  | |- warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
4 |
5 |     public init(stringLiteral value: String) {
[352/397] Compiling HTMLKit Content.swift
[353/397] Compiling HTMLKit Encoder.swift
[354/397] Compiling HTMLKit HtmlString.swift
[355/397] Compiling HTMLKit Features.swift
[356/397] Compiling HTMLKit Markdown+Character.swift
[357/397] Compiling HTMLKit MarkdownLexer.swift
[358/397] Compiling HTMLKit Locale.swift
[359/397] Compiling HTMLKit Localizable.swift
[360/397] Compiling HTMLKit Localization.swift
[361/397] Compiling HTMLKit LocalizedString.swift
[362/397] Compiling HTMLKit LocalizedStringKey.swift
[363/397] Compiling HTMLKit TranslationTable.swift
[364/397] Compiling HTMLKit MarkdownToken.swift
[365/397] Compiling HTMLKit Markdown.swift
[366/397] Compiling HTMLKit MarkdownString.swift
[367/397] Compiling HTMLKit MarkdownNode.swift
[368/397] Compiling HTMLKit MarkdownParser.swift
[369/397] Compiling HTMLKit Renderer.swift
[370/397] Compiling HTMLKit Attribute.swift
[371/397] Compiling HTMLKit Element.swift
[372/397] Compiling HTMLKit Elements.swift
[373/397] Compiling HTMLKit Layouts.swift
[374/397] Compiling HTMLKit Node.swift
[375/397] Compiling HTMLKit Nodes.swift
[376/397] Compiling HTMLKit MediaElements.swift
[377/397] Compiling HTMLKit ObjectElements.swift
[378/397] Compiling HTMLKit RubyElements.swift
[379/397] Compiling HTMLKit TableElements.swift
[380/397] Compiling HTMLKit VectorElements.swift
[381/397] Compiling HTMLKit EventTokens.swift
[382/397] Compiling HTMLKit ValueTokens.swift
[383/397] Emitting module HTMLKit
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Extensions/URL+HTMLKit.swift:3:1: warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension URL: ExpressibleByStringLiteral {
  | |- warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
4 |
5 |     public init(stringLiteral value: String) {
[384/397] Compiling HTMLKit FigureElements.swift
[385/397] Compiling HTMLKit FormElements.swift
[386/397] Compiling HTMLKit HeadElements.swift
[387/397] Compiling HTMLKit HtmlElements.swift
[388/397] Compiling HTMLKit InputElements.swift
[389/397] Compiling HTMLKit ListElements.swift
[390/397] Compiling HTMLKit MapElements.swift
[391/397] Compiling HTMLKit AriaAttributes.swift
[392/397] Compiling HTMLKit BasicAttributes.swift
[393/397] Compiling HTMLKit EventAttributes.swift
[394/397] Compiling HTMLKit VectorAttributes.swift
[395/397] Compiling HTMLKit BasicElements.swift
[396/397] Compiling HTMLKit BodyElements.swift
[397/397] Compiling HTMLKit DefinitionElements.swift
Build of target: 'HTMLKit' complete! (13.13s)
   16415
87	/Users/admin/builder/spi-builder-workspace/.docs/vapor-community/htmlkit/3.0.0-alpha.14
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/vapor-community/htmlkit/3.0.0-alpha.14
File count: 16415
Doc size:   87.0MB
Preparing doc bundle ...
Uploading prod-vapor-community-htmlkit-3.0.0-alpha.14-05bf554c.zip to s3://spi-docs-inbox/prod-vapor-community-htmlkit-3.0.0-alpha.14-05bf554c.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.