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 main (98db05), with Swift 6.1 for macOS (SPM) on 10 Sep 2025 00:30:46 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)
   |                       |- 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) {
[2314/2648] 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) {
[2315/2648] 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) {
[2316/2648] 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) {
[2317/2648] 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) {
[2318/2655] Compiling HTMLKitComponents Carousel.swift
[2319/2655] Compiling HTMLKitComponents Chart.swift
[2320/2655] Compiling HTMLKitComponents CheckField.swift
[2321/2655] Compiling HTMLKitComponents DatePicker.swift
[2322/2655] Compiling HTMLKitComponents Disclosure.swift
[2323/2655] Compiling HTMLKitComponents Divider.swift
[2324/2655] Compiling HTMLKitComponents Dropdown.swift
[2325/2655] Compiling HTMLKitComponents FieldLabel.swift
[2326/2655] Compiling HTMLKitComponents FileDialog.swift
[2327/2655] Compiling HTMLKitComponents Form.swift
[2328/2655] Compiling HTMLKitComponents Grid.swift
[2329/2655] Compiling HTMLKitComponents Grouping.swift
[2330/2655] Compiling HTMLKitComponents HStack.swift
[2331/2655] Compiling HTMLKitComponents Image.swift
[2332/2655] Compiling HTMLKitComponents Link.swift
[2340/2655] Compiling HTMLKitComponents SubmitAction.swift
[2341/2655] Compiling HTMLKitComponents ViewAction.swift
[2342/2655] Compiling HTMLKitComponents ActionBuilder.swift
[2343/2655] Compiling HTMLKitComponents Alert.swift
[2344/2655] Compiling HTMLKitComponents BarMark.swift
[2345/2655] Compiling HTMLKitComponents Button.swift
[2346/2655] Compiling HTMLKitComponents Card.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) {
[2405/2655] Compiling HTMLKitComponents VStack.swift
[2406/2655] Compiling HTMLKitComponents Video.swift
[2407/2655] Compiling HTMLKitComponents ZStack.swift
[2408/2655] Compiling HTMLKitComponents DragEvent.swift
[2409/2655] Compiling HTMLKitComponents FormEvent.swift
[2410/2655] Compiling HTMLKitComponents MouseEvent.swift
[2418/2655] Compiling HTMLKitComponents Actionable.swift
[2419/2655] Compiling HTMLKitComponents Identifiable.swift
[2420/2655] Compiling HTMLKitComponents Modifiable.swift
[2421/2655] Compiling HTMLKitComponents Selectable.swift
[2422/2655] Compiling HTMLKitComponents Tokens.swift
[2423/2655] Compiling HTMLKitComponents Validator.swift
[2424/2655] Compiling HTMLKitComponents resource_bundle_accessor.swift
[2468/2655] Emitting module HTMLKitComponents
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:5:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:6:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
 4 |
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:7:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 5 |     public static let top = EdgeSet(rawValue: 1 << 0)
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:8:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 6 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:9:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 7 |     public static let leading = EdgeSet(rawValue: 1 << 2)
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
   |                       |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
 8 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
 9 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
   |                       |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 2 |
 3 |     public var rawValue: Int
   :
10 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
11 |
12 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     public init(rawValue: Int) {
[2485/2659] Compiling Vapor HTTPMediaTypePreference.swift
[2486/2659] Compiling Vapor Responder.swift
[2487/2659] Compiling Vapor Application+HTTP+Server.swift
[2488/2659] Compiling Vapor HTTPServer.swift
[2489/2659] Compiling Vapor HTTPServerConfiguration+RequestDecompressionConfiguration.swift
[2490/2659] Compiling Vapor HTTPServerConfiguration+ResponseCompressionConfiguration.swift
[2491/2659] Compiling Vapor HTTPServerHandler.swift
[2492/2659] Compiling Vapor HTTPServerRequestDecoder.swift
[2493/2659] Compiling Vapor HTTPServerResponseEncoder.swift
[2494/2659] Compiling Vapor HTTPServerUpgradeHandler.swift
[2495/2659] Compiling Vapor Logger+Report.swift
[2496/2659] Compiling Vapor LoggingSystem+Environment.swift
[2497/2659] Compiling Vapor Application+Middleware.swift
[2498/2659] Compiling Vapor CORSMiddleware.swift
[2499/2659] Compiling Vapor ErrorMiddleware.swift
[2500/2659] Compiling Vapor FileMiddleware.swift
[2501/2659] Compiling Vapor Middleware.swift
[2502/2659] Compiling Vapor MiddlewareConfiguration.swift
[2503/2659] Compiling Vapor ResponseCompressionMiddleware.swift
[2504/2659] Compiling Vapor RouteLoggingMiddleware.swift
[2505/2659] Compiling Vapor TracingMiddleware.swift
[2506/2659] Compiling Vapor File+Multipart.swift
[2507/2659] 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.
[2508/2659] 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.
[2509/2659] Compiling Vapor Case.swift
[2510/2659] Compiling Vapor CharacterSet.swift
[2511/2659] Compiling Vapor Count.swift
[2512/2659] Compiling Vapor Custom.swift
[2513/2659] Compiling Vapor Email.swift
[2514/2659] Compiling Vapor Empty.swift
[2515/2659] Compiling Vapor In.swift
[2516/2659] Compiling Vapor Nil.swift
[2517/2659] Compiling Vapor NilIgnoring.swift
[2518/2659] Compiling Vapor Not.swift
[2519/2659] Compiling Vapor Or.swift
[2520/2659] Compiling Vapor Pattern.swift
[2521/2659] Compiling Vapor Range.swift
[2522/2659] Compiling Vapor URL.swift
[2523/2659] Compiling Vapor Valid.swift
[2524/2659] Compiling Vapor Application+Views.swift
[2525/2659] Compiling Vapor PlaintextRenderer.swift
[2526/2659] Compiling Vapor Request+View.swift
[2527/2659] Compiling Vapor View.swift
[2528/2659] Compiling Vapor ViewRenderer.swift
[2529/2659] Compiling Vapor _Deprecations.swift
[2529/2659] Write Objects.LinkFileList
[2531/2659] 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.
[2532/2659] 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.
[2532/2659] Write Objects.LinkFileList
[2533/2659] Linking DeployCommand-tool
[2534/2659] Linking DeployCommand
[2535/2659] Applying DeployCommand-tool
[2536/2659] Applying DeployCommand
[2538/2659] Compiling Vapor RouteCollection.swift
[2539/2659] Compiling Vapor Routes.swift
[2540/2659] Compiling Vapor RoutesBuilder+Group.swift
[2541/2659] Compiling Vapor RoutesBuilder+Method.swift
[2542/2659] Compiling Vapor RoutesBuilder+Middleware.swift
[2543/2659] Compiling Vapor RoutesBuilder+WebSocket.swift
[2544/2659] Compiling Vapor RoutesBuilder.swift
[2545/2659] Compiling Vapor OTP.swift
[2546/2659] Compiling Vapor Application+Servers.swift
[2547/2659] Compiling Vapor Server.swift
[2548/2659] Compiling Vapor App+Service.swift
[2549/2659] Compiling Vapor Req+Service.swift
[2550/2659] Compiling Vapor Service.swift
[2551/2659] Compiling Vapor Application+Sessions.swift
[2552/2659] Compiling Vapor MemorySessions.swift
[2553/2659] Compiling Vapor Request+Session.swift
[2554/2659] Compiling Vapor Session.swift
[2555/2659] Compiling Vapor SessionCache.swift
[2556/2659] Compiling Vapor SessionData.swift
[2557/2659] Compiling Vapor SessionDriver.swift
[2558/2659] Compiling Vapor SessionsConfiguration.swift
[2559/2659] Compiling Vapor ServeCommand.swift
[2560/2659] Compiling Vapor AnyResponse+Concurrency.swift
[2561/2659] Compiling Vapor AsyncBasicResponder.swift
[2562/2659] Compiling Vapor AsyncMiddleware.swift
[2563/2659] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
[2564/2659] Compiling Vapor AsyncSessionDriver.swift
[2565/2659] Compiling Vapor Authentication+Concurrency.swift
[2566/2659] Compiling Vapor Cache+Concurrency.swift
[2567/2659] Compiling Vapor Client+Concurrency.swift
[2568/2659] Compiling Vapor RequestBody+Concurrency.swift
[2569/2659] Compiling Vapor Responder+Concurrency.swift
[2570/2659] Compiling Vapor ResponseCodable+Concurrency.swift
[2571/2659] Compiling Vapor RoutesBuilder+Concurrency.swift
[2572/2659] Compiling Vapor ViewRenderer+Concurrency.swift
[2573/2659] Compiling Vapor WebSocket+Concurrency.swift
[2574/2659] Compiling Vapor ContainerGetPathExecutor.swift
[2575/2659] Compiling Vapor Content.swift
[2576/2659] Compiling Vapor ContentCoders.swift
[2577/2659] Compiling Vapor ContentConfiguration.swift
[2578/2659] Compiling Vapor ContentContainer.swift
[2579/2659] Compiling Vapor JSONCoder+Custom.swift
[2580/2659] Compiling Vapor JSONCoders+Content.swift
[2586/2659] Compiling Vapor URLEncodedFormParser.swift
[2587/2659] Compiling Vapor URLEncodedFormSerializer.swift
[2588/2659] Compiling Vapor URLQueryFragmentConvertible.swift
[2589/2659] Compiling Vapor AnyResponse.swift
[2590/2659] Compiling Vapor Array+Random.swift
[2591/2659] Compiling Vapor Base32.swift
[2592/2659] Compiling Vapor Base64.swift
[2593/2659] Compiling Vapor BaseN.swift
[2594/2659] Compiling Vapor BasicCodingKey.swift
[2595/2659] Compiling Vapor ByteCount.swift
[2596/2659] Compiling Vapor Bytes+Hex.swift
[2597/2659] Compiling Vapor Bytes+SecureCompare.swift
[2598/2659] Compiling Vapor Collection+Safe.swift
[2599/2659] Compiling Vapor DataProtocol+Copy.swift
[2600/2659] Compiling Vapor DecoderUnwrapper.swift
[2601/2659] Compiling Vapor DirectoryConfiguration.swift
[2602/2659] Emitting module Vapor
[2603/2659] Compiling Vapor DotEnv.swift
[2604/2659] Compiling Vapor Extendable.swift
[2605/2659] Compiling Vapor File.swift
[2606/2659] Compiling Vapor FileIO.swift
[2607/2659] Compiling Vapor LifecycleHandler.swift
[2608/2659] Compiling Vapor OptionalType.swift
[2609/2659] Compiling Vapor RFC1123.swift
[2610/2659] Compiling Vapor SocketAddress+Hostname.swift
[2611/2659] Compiling Vapor Storage.swift
[2612/2659] Compiling Vapor String+IsIPAddress.swift
[2613/2659] Compiling Vapor Thread.swift
[2614/2659] Compiling Vapor URI.swift
[2615/2659] Compiling Vapor RangeResult.swift
[2616/2659] Compiling Vapor Validatable.swift
[2617/2659] Compiling Vapor Validation.swift
[2618/2659] Compiling Vapor ValidationKey.swift
[2619/2659] Compiling Vapor Validations.swift
[2620/2659] Compiling Vapor ValidationsError.swift
[2621/2659] Compiling Vapor Validator.swift
[2622/2659] Compiling Vapor ValidatorResult.swift
[2623/2659] Compiling Vapor And.swift
[2624/2659] Compiling Vapor BasicResponder.swift
[2625/2659] Compiling Vapor BodyStream.swift
[2626/2659] Compiling Vapor Application+HTTP+Client.swift
[2627/2659] Compiling Vapor EventLoopHTTPClient.swift
[2628/2659] Compiling Vapor EndpointCache.swift
[2629/2659] Compiling Vapor HTTPMethod+String.swift
[2630/2659] Compiling Vapor HTTPStatus.swift
[2631/2659] Compiling Vapor HTTPCookies.swift
[2632/2659] Compiling Vapor HTTPHeaderCacheControl.swift
[2633/2659] Compiling Vapor HTTPHeaderExpires.swift
[2634/2659] Compiling Vapor HTTPHeaderLastModified.swift
[2635/2659] Compiling Vapor HTTPHeaders+Cache.swift
[2636/2659] Compiling Vapor HTTPHeaders+Connection.swift
[2637/2659] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[2638/2659] Compiling Vapor HTTPHeaders+ContentRange.swift
[2639/2659] Compiling Vapor HTTPHeaders+Directive.swift
[2640/2659] Compiling Vapor HTTPHeaders+Forwarded.swift
[2641/2659] Compiling Vapor HTTPHeaders+Link.swift
[2642/2659] Compiling Vapor HTTPHeaders+Name.swift
[2643/2659] Compiling Vapor HTTPHeaders+ResponseCompression.swift
[2644/2659] Compiling Vapor HTTPHeaders.swift
[2645/2659] Compiling Vapor HTTPMediaType.swift
[2646/2663] 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() {}
[2647/2663] Compiling HTMLKitConverter InitRepresentable.swift
[2648/2663] 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() {}
[2649/2663] 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() {}
[2650/2663] 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() {}
[2651/2663] 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() {}
[2652/2663] Compiling HTMLKitConverter InitRepresentable.swift
[2653/2663] 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() {}
[2654/2665] Compiling HTMLKitVapor ViewRenderer.swift
[2655/2667] 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/2667] Compiling HTMLKitVapor Configuration.swift
[2657/2667] 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
[2658/2667] Emitting module ConvertCommand
[2659/2667] Compiling ConvertCommand ConvertCommand.swift
[2659/2667] Write Objects.LinkFileList
[2661/2667] Compiling ConvertCommand ConvertCommand.swift
[2662/2667] Emitting module ConvertCommand
[2662/2667] Write Objects.LinkFileList
[2663/2667] Linking ConvertCommand-tool
[2664/2667] Applying ConvertCommand-tool
[2665/2667] Linking ConvertCommand
[2666/2667] Applying ConvertCommand
Build complete! (66.40s)
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/main
Repository:               vapor-community/htmlkit
Swift version used:       6.1
        .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.4.3"),
Target:                   HTMLKit
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'HTMLKit'...
Finished extracting symbol information for 'HTMLKit'. (14.91s)
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' (4.12s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/vapor-community/htmlkit/main
Building for debugging...
[0/7] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/57] Compiling SymbolKit Mixin+Equals.swift
[11/57] Compiling SymbolKit Mixin+Hash.swift
[12/57] Compiling SymbolKit Mixin.swift
[13/57] Compiling SymbolKit LineList.swift
[14/57] Compiling SymbolKit Position.swift
[15/57] Emitting module SymbolKit
[16/57] Compiling SymbolKit DeclarationFragments.swift
[17/57] Compiling SymbolKit Fragment.swift
[18/57] Compiling SymbolKit FragmentKind.swift
[19/57] Compiling SymbolKit FunctionParameter.swift
[20/57] Compiling SymbolKit FunctionSignature.swift
[21/57] Compiling SymbolKit Identifier.swift
[22/57] Compiling SymbolKit KindIdentifier.swift
[23/57] Compiling SymbolKit Location.swift
[24/57] Compiling SymbolKit Mutability.swift
[25/57] Compiling SymbolKit SourceRange.swift
[26/57] Compiling SymbolKit Metadata.swift
[27/57] Compiling SymbolKit Module.swift
[28/57] Compiling SymbolKit OperatingSystem.swift
[29/57] Compiling SymbolKit Platform.swift
[30/57] Compiling SymbolKit Relationship.swift
[31/57] Compiling SymbolKit RelationshipKind.swift
[32/57] Compiling SymbolKit SourceOrigin.swift
[33/57] Compiling SymbolKit GenericConstraints.swift
[34/57] Compiling SymbolKit Swift.swift
[35/57] Compiling SymbolKit Names.swift
[36/57] Compiling SymbolKit SPI.swift
[37/57] Compiling SymbolKit Snippet.swift
[38/57] Compiling SymbolKit Extension.swift
[39/57] Compiling SymbolKit SemanticVersion.swift
[40/57] Compiling SymbolKit AccessControl.swift
[41/57] Compiling SymbolKit Availability.swift
[42/57] Compiling SymbolKit AvailabilityItem.swift
[43/57] Compiling SymbolKit Domain.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.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 SnippetParser.swift
[53/57] Compiling Snippets Snippet.swift
[54/57] Emitting module Snippets
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (6.89s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/20] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[3/20] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[4/21] Compiling InternalCollectionsUtilities Debugging.swift
[5/21] Compiling InternalCollectionsUtilities Descriptions.swift
[6/21] Compiling Logging MetadataProvider.swift
[7/21] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[8/21] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[9/21] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[10/21] Compiling InternalCollectionsUtilities _SortedCollection.swift
[11/21] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[12/21] Compiling InternalCollectionsUtilities UInt+reversed.swift
[13/21] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[14/21] Compiling InternalCollectionsUtilities Integer rank.swift
[15/21] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[16/21] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[17/21] Emitting module InternalCollectionsUtilities
[18/57] Compiling Logging LogHandler.swift
[19/57] Compiling Logging Locks.swift
[20/57] Emitting module Logging
[21/57] Compiling Logging Logging.swift
[22/303] Compiling _RopeModule BigString+Debugging.swift
[23/303] Compiling _RopeModule BigString+Index.swift
[24/304] Compiling HeapModule _HeapNode.swift
[25/304] Compiling HeapModule Heap.swift
[26/304] Compiling DequeModule _DequeBufferHeader.swift
[27/304] Compiling DequeModule _DequeBuffer.swift
[28/304] Compiling DequeModule _DequeSlot.swift
[29/304] Compiling HeapModule Heap+Invariants.swift
[30/304] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[31/304] Compiling HeapModule Heap+UnsafeHandle.swift
[32/304] Compiling HeapModule Heap+Descriptions.swift
[33/304] Emitting module HeapModule
[34/304] Compiling _RopeModule BigString+Iterators.swift
[35/304] Compiling _RopeModule BigString+Metrics.swift
[36/304] Compiling _RopeModule BigString+Ingester.swift
[37/304] Compiling _RopeModule BigString+Invariants.swift
[38/304] Compiling DequeModule _UnsafeWrappedBuffer.swift
[39/304] Compiling _RopeModule BigString+Append.swift
[40/304] Compiling _RopeModule BigString+Initializers.swift
[41/304] Compiling _RopeModule BigString+Insert.swift
[42/304] Compiling _RopeModule BigString+Managing Breaks.swift
[43/304] Compiling _RopeModule BigString+RemoveSubrange.swift
[44/304] Compiling _RopeModule BigString+ReplaceSubrange.swift
[45/304] Compiling _RopeModule Range+BigString.swift
[46/304] Compiling _RopeModule BigString+UTF16View.swift
[47/304] Compiling _RopeModule BigString+UTF8View.swift
[48/304] Compiling _RopeModule BigString+UnicodeScalarView.swift
[49/304] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[50/304] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[51/304] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[52/304] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[53/304] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[54/304] Compiling HashTreeCollections TreeDictionary+Filter.swift
[55/304] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[56/304] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[57/304] Compiling HashTreeCollections TreeDictionary+Keys.swift
[58/304] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[59/304] Compiling HashTreeCollections TreeDictionary+Merge.swift
[60/304] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[61/304] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[62/304] Compiling HashTreeCollections TreeDictionary+Values.swift
[63/315] Compiling _RopeModule BigString+ExpressibleByStringLiteral.swift
[64/315] Compiling _RopeModule BigString+Hashing.swift
[65/315] Compiling _RopeModule BigString+LosslessStringConvertible.swift
[66/315] Compiling _RopeModule BigString+RangeReplaceableCollection.swift
[67/315] Compiling _RopeModule BigString+Sequence.swift
[68/315] Compiling _RopeModule BigString+TextOutputStream.swift
[69/315] Compiling HashTreeCollections TreeSet+Equatable.swift
[70/315] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[71/315] Compiling HashTreeCollections TreeSet+Extras.swift
[72/315] Compiling HashTreeCollections TreeSet+Filter.swift
[73/315] Compiling HashTreeCollections TreeSet+Hashable.swift
[74/315] Compiling HashTreeCollections TreeSet+Sendable.swift
[75/315] Compiling HashTreeCollections TreeSet+Sequence.swift
[76/315] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[77/315] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[78/315] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[79/315] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[80/315] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[81/315] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[82/315] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[83/315] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[84/315] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[86/323] Compiling _RopeModule BigString+Summary.swift
[87/323] Compiling _RopeModule BigString.swift
[88/323] Compiling _RopeModule BigString+Chunk+Append and Insert.swift
[89/323] Compiling _RopeModule BigString+Chunk+Breaks.swift
[90/323] Compiling _RopeModule BigString+Chunk+Counts.swift
[100/323] Compiling BitCollections BitSet.swift
[101/323] Compiling OrderedCollections OrderedSet+SubSequence.swift
[102/323] Compiling OrderedCollections OrderedSet+Testing.swift
[103/323] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[104/323] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[105/323] Compiling OrderedCollections OrderedSet.swift
[106/323] Compiling OrderedCollections _UnsafeBitset.swift
[122/323] Compiling _RopeModule BigString+Split.swift
[123/323] Compiling _RopeModule BigString+BidirectionalCollection.swift
[124/323] Compiling _RopeModule BigString+Comparable.swift
[125/323] Compiling _RopeModule BigString+CustomDebugStringConvertible.swift
[126/323] Compiling _RopeModule BigString+CustomStringConvertible.swift
[127/323] Compiling _RopeModule BigString+Equatable.swift
[129/323] Compiling _RopeModule BigString+Chunk+Description.swift
[130/323] Compiling _RopeModule BigString+Chunk+Indexing by Characters.swift
[131/323] Compiling _RopeModule BigString+Chunk+Indexing by UTF16.swift
[132/323] Compiling _RopeModule BigString+Chunk+RopeElement.swift
[133/323] Compiling _RopeModule BigString+Chunk+Splitting.swift
[134/323] Compiling _RopeModule BigString+Chunk.swift
[135/323] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[136/323] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[137/323] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[138/323] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[139/323] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[140/323] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[141/323] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[142/323] Compiling HashTreeCollections TreeSet.swift
[143/323] Compiling _RopeModule BigString+Builder.swift
[144/323] Compiling _RopeModule BigString+Contents.swift
[186/323] Emitting module DequeModule
[194/330] Emitting module BitCollections
[305/330] Emitting module OrderedCollections
[306/330] Compiling _RopeModule Rope+Remove.swift
[307/330] Compiling _RopeModule Rope+RemoveSubrange.swift
[308/330] Compiling _RopeModule Rope+Split.swift
[309/330] Compiling _RopeModule Optional Utilities.swift
[310/330] Compiling _RopeModule String Utilities.swift
[311/330] Compiling _RopeModule String.Index+ABI.swift
[312/330] Compiling _RopeModule _CharacterRecognizer.swift
[313/330] Emitting module _RopeModule
[330/330] Emitting module HashTreeCollections
[331/332] Emitting module Collections
[332/332] Compiling Collections Collections.swift
[333/391] 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) {
[334/391] 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) {
[335/391] 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) {
[336/391] 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) {
[337/391] 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) {
[338/391] 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) {
[339/397] Compiling HTMLKit Locale.swift
[340/397] Compiling HTMLKit Localizable.swift
[341/397] Compiling HTMLKit Localization.swift
[342/397] Compiling HTMLKit LocalizedString.swift
[343/397] Compiling HTMLKit LocalizedStringKey.swift
[344/397] Compiling HTMLKit TranslationTable.swift
[345/397] Compiling HTMLKit MarkdownToken.swift
[346/397] Compiling HTMLKit Markdown.swift
[347/397] Compiling HTMLKit MarkdownString.swift
[348/397] Compiling HTMLKit MarkdownNode.swift
[349/397] Compiling HTMLKit MarkdownParser.swift
[350/397] Compiling HTMLKit Renderer.swift
[351/397] Compiling HTMLKit Content.swift
[352/397] Compiling HTMLKit Encoder.swift
[353/397] Compiling HTMLKit HtmlString.swift
[354/397] Compiling HTMLKit Features.swift
[355/397] Compiling HTMLKit Markdown+Character.swift
[356/397] Compiling HTMLKit MarkdownLexer.swift
[357/397] Compiling HTMLKit ContentBuilder.swift
[358/397] Compiling HTMLKit Condition.swift
[359/397] Compiling HTMLKit Conditional.swift
[360/397] Compiling HTMLKit Environment.swift
[361/397] Compiling HTMLKit EnvironmentKeys.swift
[362/397] Compiling HTMLKit EnvironmentModifier.swift
[363/397] Compiling HTMLKit EnvironmentObject.swift
[364/397] Compiling HTMLKit MediaElements.swift
[365/397] Compiling HTMLKit ObjectElements.swift
[366/397] Compiling HTMLKit RubyElements.swift
[367/397] Compiling HTMLKit TableElements.swift
[368/397] Compiling HTMLKit VectorElements.swift
[369/397] Compiling HTMLKit EventTokens.swift
[370/397] Compiling HTMLKit ValueTokens.swift
[371/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) {
[372/397] Compiling HTMLKit Attribute.swift
[373/397] Compiling HTMLKit Element.swift
[374/397] Compiling HTMLKit Elements.swift
[375/397] Compiling HTMLKit Layouts.swift
[376/397] Compiling HTMLKit Node.swift
[377/397] Compiling HTMLKit Nodes.swift
[378/397] Compiling HTMLKit FigureElements.swift
[379/397] Compiling HTMLKit FormElements.swift
[380/397] Compiling HTMLKit HeadElements.swift
[381/397] Compiling HTMLKit HtmlElements.swift
[382/397] Compiling HTMLKit InputElements.swift
[383/397] Compiling HTMLKit ListElements.swift
[384/397] Compiling HTMLKit MapElements.swift
[385/397] Compiling HTMLKit EnvironmentString.swift
[386/397] Compiling HTMLKit EnvironmentValue.swift
[387/397] Compiling HTMLKit Negation.swift
[388/397] Compiling HTMLKit Nullable.swift
[389/397] Compiling HTMLKit Relation.swift
[390/397] Compiling HTMLKit Sequence.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! (12.67s)
   16933
90	/Users/admin/builder/spi-builder-workspace/.docs/vapor-community/htmlkit/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/vapor-community/htmlkit/main
File count: 16933
Doc size:   90.0MB
Preparing doc bundle ...
Uploading prod-vapor-community-htmlkit-main-a5af9b05.zip to s3://spi-docs-inbox/prod-vapor-community-htmlkit-main-a5af9b05.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.