The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of HTMLKit, reference main (df7eae), with Swift 6.1 for macOS (SPM) on 27 Apr 2025 11:13:16 UTC.

Swift 6 data race errors: 33

Build Command

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

Build Log

 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
 7 |
 8 |     /// A flag that indicates whether the renderer should use markdown
 9 |     public static let markdown = Features(rawValue: 1 << 0)
   |                       |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 |     /// A flag that indicates whether the renderer should encode input
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
   :
10 |
11 |     /// A flag that indicates whether the renderer should encode input
12 |     public static let escaping = Features(rawValue: 1 << 1)
   |                       |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     /// Initializes the feature set
[2224/2475] Compiling Vapor Exports.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
 7 |
 8 |     /// A flag that indicates whether the renderer should use markdown
 9 |     public static let markdown = Features(rawValue: 1 << 0)
   |                       |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 |     /// A flag that indicates whether the renderer should encode input
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
   :
10 |
11 |     /// A flag that indicates whether the renderer should encode input
12 |     public static let escaping = Features(rawValue: 1 << 1)
   |                       |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     /// Initializes the feature set
[2225/2475] Compiling Vapor Application+HTTP.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
 7 |
 8 |     /// A flag that indicates whether the renderer should use markdown
 9 |     public static let markdown = Features(rawValue: 1 << 0)
   |                       |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 |     /// A flag that indicates whether the renderer should encode input
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
   :
10 |
11 |     /// A flag that indicates whether the renderer should encode input
12 |     public static let escaping = Features(rawValue: 1 << 1)
   |                       |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     /// Initializes the feature set
[2226/2475] Compiling Vapor SessionsMiddleware.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
 7 |
 8 |     /// A flag that indicates whether the renderer should use markdown
 9 |     public static let markdown = Features(rawValue: 1 << 0)
   |                       |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 |     /// A flag that indicates whether the renderer should encode input
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
   :
10 |
11 |     /// A flag that indicates whether the renderer should encode input
12 |     public static let escaping = Features(rawValue: 1 << 1)
   |                       |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     /// Initializes the feature set
[2227/2475] Compiling Vapor URLEncodedFormData.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
 7 |
 8 |     /// A flag that indicates whether the renderer should use markdown
 9 |     public static let markdown = Features(rawValue: 1 << 0)
   |                       |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 |     /// A flag that indicates whether the renderer should encode input
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
   :
10 |
11 |     /// A flag that indicates whether the renderer should encode input
12 |     public static let escaping = Features(rawValue: 1 << 1)
   |                       |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     /// Initializes the feature set
[2228/2475] Compiling Vapor URLEncodedFormDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
 7 |
 8 |     /// A flag that indicates whether the renderer should use markdown
 9 |     public static let markdown = Features(rawValue: 1 << 0)
   |                       |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 |     /// A flag that indicates whether the renderer should encode input
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
   :
10 |
11 |     /// A flag that indicates whether the renderer should encode input
12 |     public static let escaping = Features(rawValue: 1 << 1)
   |                       |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     /// Initializes the feature set
[2229/2475] Emitting module HTMLKit
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
 7 |
 8 |     /// A flag that indicates whether the renderer should use markdown
 9 |     public static let markdown = Features(rawValue: 1 << 0)
   |                       |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 |     /// A flag that indicates whether the renderer should encode input
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | ///
 3 | /// The feature set provides the flexibility to enable experimental features if desired.
 4 | public struct Features: Swift.OptionSet {
   |               `- note: consider making struct 'Features' conform to the 'Sendable' protocol
 5 |
 6 |     public var rawValue: Int
   :
10 |
11 |     /// A flag that indicates whether the renderer should encode input
12 |     public static let escaping = Features(rawValue: 1 << 1)
   |                       |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     /// Initializes the feature set
[2236/2475] Compiling Vapor Bytes+SecureCompare.swift
[2237/2475] Compiling Vapor Collection+Safe.swift
[2238/2475] Compiling Vapor DataProtocol+Copy.swift
[2239/2475] Compiling Vapor DecoderUnwrapper.swift
[2240/2475] Compiling Vapor DirectoryConfiguration.swift
[2241/2475] Compiling Vapor FormDataDecoder+Content.swift
[2242/2475] Compiling Vapor ErrorSource.swift
[2249/2475] Compiling Vapor Environment+Secret.swift
[2250/2475] Compiling Vapor Environment.swift
[2251/2475] Compiling Vapor Abort.swift
[2252/2475] Compiling Vapor AbortError.swift
[2253/2475] Compiling Vapor DebuggableError.swift
[2254/2475] Compiling Vapor Demangler.swift
[2255/2475] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[2256/2475] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[2257/2475] Compiling Vapor DotEnvFile+load.swift
[2258/2475] Compiling Vapor Routes+caseInsenstive.swift
[2259/2475] Compiling Vapor Validatable+validate.swift
[2260/2475] Compiling Vapor Environment+Process.swift
[2268/2575] Compiling HTMLKitComponents InputModifier.swift
[2269/2575] Compiling HTMLKitComponents TextModifier.swift
[2270/2575] Compiling HTMLKitComponents ViewModifier.swift
[2271/2575] Compiling HTMLKitComponents Options.swift
[2272/2575] Compiling HTMLKitComponents Action.swift
[2273/2579] Compiling HTMLKitComponents Link.swift
[2274/2579] Compiling HTMLKitComponents List.swift
[2275/2579] Compiling HTMLKitComponents Modal.swift
[2276/2579] Compiling HTMLKitComponents Navigation.swift
[2277/2579] Compiling HTMLKitComponents Scroll.swift
[2278/2579] Compiling HTMLKitComponents Components+Image.swift
[2279/2579] Compiling HTMLKitComponents Components+String.swift
[2280/2579] Compiling HTMLKitComponents ButtonModifier.swift
[2281/2579] Compiling HTMLKitComponents GraphicsModifier.swift
[2282/2579] Compiling HTMLKitComponents ImageModifier.swift
[2283/2579] Compiling HTMLKitComponents Card.swift
[2284/2579] Compiling HTMLKitComponents Carousel.swift
[2285/2579] Compiling HTMLKitComponents Chart.swift
[2286/2579] Compiling HTMLKitComponents Disclosure.swift
[2287/2579] Compiling HTMLKitComponents Divider.swift
[2288/2583] Compiling HTMLKitComponents Video.swift
[2289/2583] Compiling HTMLKitComponents DragEvent.swift
[2290/2583] Compiling HTMLKitComponents FormEvent.swift
[2291/2583] Compiling HTMLKitComponents MouseEvent.swift
[2292/2583] Compiling HTMLKitComponents PressEvent.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     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
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     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
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     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
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     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
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     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
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     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
16 |
17 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 |     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
18 |
19 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     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
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     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
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     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
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     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
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     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
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     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
16 |
17 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 |     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
18 |
19 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     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
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     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
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     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
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     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
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     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
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     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
16 |
17 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 |     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
18 |
19 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     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
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     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
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     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
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     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
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     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
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     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
16 |
17 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 |     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
18 |
19 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     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
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     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
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     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
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     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
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     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
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     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
16 |
17 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 |     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
18 |
19 |     public init(rawValue: Int) {
[2303/2583] Compiling HTMLKitComponents Selectable.swift
[2304/2583] Compiling HTMLKitComponents Tokens.swift
[2305/2583] Compiling HTMLKitComponents Validator.swift
[2306/2583] Compiling HTMLKitComponents resource_bundle_accessor.swift
[2312/2583] Compiling HTMLKitComponents SubmitAction.swift
[2313/2583] Compiling HTMLKitComponents ViewAction.swift
[2314/2583] Compiling HTMLKitComponents ActionBuilder.swift
[2315/2583] Compiling HTMLKitComponents Alert.swift
[2316/2583] Compiling HTMLKitComponents Button.swift
[2317/2583] Compiling HTMLKitComponents Snippet.swift
[2318/2583] Compiling HTMLKitComponents Stack.swift
[2319/2583] Compiling HTMLKitComponents Symbol.swift
[2320/2583] Compiling HTMLKitComponents Tabs.swift
[2321/2583] Compiling HTMLKitComponents Text.swift
[2322/2583] Compiling Vapor RouteCollection.swift
[2323/2583] Compiling Vapor Routes.swift
[2324/2583] Compiling Vapor RoutesBuilder+Group.swift
[2325/2583] Compiling Vapor RoutesBuilder+Method.swift
[2326/2583] Compiling Vapor RoutesBuilder+Middleware.swift
[2327/2583] Compiling Vapor RoutesBuilder+WebSocket.swift
[2328/2583] Compiling Vapor RoutesBuilder.swift
[2329/2583] Compiling Vapor OTP.swift
[2330/2583] Compiling Vapor Application+Servers.swift
[2331/2583] Compiling Vapor Server.swift
[2332/2583] Compiling Vapor App+Service.swift
[2333/2583] Compiling Vapor Req+Service.swift
[2334/2583] Compiling Vapor Service.swift
[2335/2583] Compiling Vapor Application+Sessions.swift
[2336/2583] Compiling Vapor MemorySessions.swift
[2337/2583] Compiling Vapor Request+Session.swift
[2338/2583] Compiling Vapor Session.swift
[2339/2583] Compiling Vapor SessionCache.swift
[2340/2583] Compiling Vapor SessionData.swift
[2341/2583] Compiling Vapor SessionDriver.swift
[2342/2583] Compiling Vapor SessionsConfiguration.swift
[2367/2604] Compiling HTMLKitComponents Dropdown.swift
[2368/2604] Compiling HTMLKitComponents Form.swift
[2369/2604] Compiling HTMLKitComponents Configurations.swift
[2370/2604] Compiling HTMLKitComponents DynamicType.swift
[2371/2604] Compiling HTMLKitComponents Actionable.swift
[2372/2604] Compiling HTMLKitComponents Identifiable.swift
[2373/2604] Compiling HTMLKitComponents Modifiable.swift
[2381/2604] Compiling HTMLKitComponents Grid.swift
[2382/2604] Compiling HTMLKitComponents Grouping.swift
[2383/2604] Compiling HTMLKitComponents Image.swift
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     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
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     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
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     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
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     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
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     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
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     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
16 |
17 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 |     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
18 |
19 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     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
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     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
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     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
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     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
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     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
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     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
16 |
17 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 |     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
18 |
19 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     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
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     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
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     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
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     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
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     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
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     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
16 |
17 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 |     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
18 |
19 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     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
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     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
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     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
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     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
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     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
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     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
16 |
17 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 |     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
18 |
19 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     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
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     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
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     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
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     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
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     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
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     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
16 |
17 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 |     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
18 |
19 |     public init(rawValue: Int) {
[2389/2604] Emitting module HTMLKitComponents
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     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
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     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
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     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
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     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
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     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
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     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
16 |
17 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 |     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
18 |
19 |     public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     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
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
 9 |
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     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
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
10 |     public static let top = EdgeSet(rawValue: 1 << 0)
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     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
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
11 |     public static let bottom = EdgeSet(rawValue: 1 << 1)
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     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
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
12 |     public static let leading = EdgeSet(rawValue: 1 << 2)
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     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
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
13 |     public static let trailing = EdgeSet(rawValue: 1 << 3)
14 |     public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 |     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
16 |
17 |     public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/Users/admin/builder/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17: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
 4 |  */
 5 |
 6 | public struct EdgeSet: OptionSet {
   |               `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
 7 |
 8 |     public var rawValue: Int
   :
15 |     public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 |     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
18 |
19 |     public init(rawValue: Int) {
[2411/2608] Compiling Vapor Case.swift
[2412/2608] Compiling Vapor CharacterSet.swift
[2413/2608] Compiling Vapor Count.swift
[2414/2608] Compiling Vapor Custom.swift
[2415/2608] Compiling Vapor Email.swift
[2416/2608] Compiling Vapor Empty.swift
[2417/2608] Compiling Vapor In.swift
[2418/2608] Compiling Vapor Nil.swift
[2419/2608] Compiling Vapor NilIgnoring.swift
[2420/2608] Compiling Vapor Not.swift
[2421/2608] Compiling Vapor Or.swift
[2422/2608] Compiling Vapor Pattern.swift
[2423/2608] Compiling Vapor Range.swift
[2424/2608] Compiling Vapor URL.swift
[2425/2608] Compiling Vapor Valid.swift
[2426/2608] Compiling Vapor Application+Views.swift
[2427/2608] Compiling Vapor PlaintextRenderer.swift
[2428/2608] Compiling Vapor Request+View.swift
[2429/2608] Compiling Vapor View.swift
[2430/2608] Compiling Vapor ViewRenderer.swift
[2431/2608] Compiling Vapor _Deprecations.swift
[2432/2608] 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.
[2433/2608] 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.
[2433/2608] Write Objects.LinkFileList
[2435/2608] 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.
[2436/2608] 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.
[2436/2608] Write Objects.LinkFileList
[2437/2608] Linking DeployCommand
[2438/2608] Applying DeployCommand
[2439/2608] Linking DeployCommand-tool
[2440/2608] Applying DeployCommand-tool
[2469/2608] Compiling Vapor PasswordHasher.swift
[2470/2608] Compiling Vapor PlaintextHasher.swift
[2471/2608] Compiling Vapor Request+Password.swift
[2472/2608] Compiling Vapor Redirect.swift
[2473/2608] Compiling Vapor Request+Body.swift
[2474/2608] Compiling Vapor Request+BodyStream.swift
[2475/2608] Compiling Vapor Request.swift
[2476/2608] Compiling Vapor Application+Responder.swift
[2477/2608] Compiling Vapor DefaultResponder.swift
[2478/2608] Compiling Vapor Response+Body.swift
[2479/2608] Compiling Vapor Response.swift
[2480/2608] Compiling Vapor ResponseCodable.swift
[2481/2608] Compiling Vapor Application+Routes.swift
[2482/2608] Compiling Vapor Parameters+Require.swift
[2483/2608] Compiling Vapor Request+WebSocket.swift
[2484/2608] Compiling Vapor Route.swift
[2485/2608] Emitting module Vapor
[2486/2608] 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() {}
[2487/2608] Compiling HTMLKitConverter InitRepresentable.swift
[2488/2608] 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() {}
[2489/2608] 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() {}
[2490/2608] Compiling Vapor HTTPMediaTypePreference.swift
[2491/2608] Compiling Vapor Responder.swift
[2492/2608] Compiling Vapor Application+HTTP+Server.swift
[2493/2608] Compiling Vapor HTTPServer.swift
[2494/2608] Compiling Vapor HTTPServerConfiguration+RequestDecompressionConfiguration.swift
[2495/2608] Compiling Vapor HTTPServerConfiguration+ResponseCompressionConfiguration.swift
[2496/2608] Compiling Vapor HTTPServerHandler.swift
[2497/2608] Compiling Vapor HTTPServerRequestDecoder.swift
[2498/2608] Compiling Vapor HTTPServerResponseEncoder.swift
[2499/2608] Compiling Vapor HTTPServerUpgradeHandler.swift
[2500/2608] Compiling Vapor Logger+Report.swift
[2501/2608] Compiling Vapor LoggingSystem+Environment.swift
[2502/2608] Compiling Vapor Application+Middleware.swift
[2503/2608] Compiling Vapor CORSMiddleware.swift
[2504/2608] Compiling Vapor ErrorMiddleware.swift
[2505/2608] Compiling Vapor FileMiddleware.swift
[2506/2608] Compiling Vapor Middleware.swift
[2507/2608] Compiling Vapor MiddlewareConfiguration.swift
[2508/2608] Compiling Vapor ResponseCompressionMiddleware.swift
[2509/2608] Compiling Vapor RouteLoggingMiddleware.swift
[2510/2608] Compiling Vapor TracingMiddleware.swift
[2511/2608] Compiling Vapor File+Multipart.swift
[2512/2608] Compiling Vapor Application.swift
[2513/2608] Compiling Vapor AuthenticationCache.swift
[2514/2608] Compiling Vapor Authenticator.swift
[2515/2608] Compiling Vapor BasicAuthorization.swift
[2516/2608] Compiling Vapor BearerAuthorization.swift
[2517/2608] Compiling Vapor GuardMiddleware.swift
[2518/2608] Compiling Vapor RedirectMiddleware.swift
[2519/2608] Compiling Vapor SessionAuthenticatable.swift
[2520/2608] Compiling Vapor Bcrypt.swift
[2521/2608] Compiling Vapor Application+Cache.swift
[2522/2608] Compiling Vapor Cache.swift
[2523/2608] Compiling Vapor CacheExpirationTime.swift
[2524/2608] Compiling Vapor MemoryCache.swift
[2525/2608] Compiling Vapor Request+Cache.swift
[2526/2608] Compiling Vapor Application+Clients.swift
[2527/2608] Compiling Vapor Client.swift
[2528/2608] Compiling Vapor ClientRequest.swift
[2529/2608] Compiling Vapor ClientResponse.swift
[2530/2608] Compiling Vapor Request+Client.swift
[2531/2608] Compiling Vapor BootCommand.swift
[2532/2608] Compiling Vapor CommandContext+Application.swift
[2533/2608] Compiling Vapor RoutesCommand.swift
[2534/2608] Compiling Vapor DotEnv.swift
[2535/2608] Compiling Vapor Extendable.swift
[2536/2608] Compiling Vapor File.swift
[2537/2608] Compiling Vapor FileIO.swift
[2538/2608] Compiling Vapor LifecycleHandler.swift
[2539/2608] Compiling Vapor OptionalType.swift
[2540/2608] Compiling Vapor RFC1123.swift
[2541/2608] Compiling Vapor SocketAddress+Hostname.swift
[2542/2608] Compiling Vapor Storage.swift
[2543/2608] Compiling Vapor String+IsIPAddress.swift
[2544/2608] Compiling Vapor Thread.swift
[2545/2608] Compiling Vapor URI.swift
[2546/2608] Compiling Vapor RangeResult.swift
[2547/2608] Compiling Vapor Validatable.swift
[2548/2608] Compiling Vapor Validation.swift
[2549/2608] Compiling Vapor ValidationKey.swift
[2550/2608] Compiling Vapor Validations.swift
[2551/2608] Compiling Vapor ValidationsError.swift
[2552/2608] Compiling Vapor Validator.swift
[2553/2608] Compiling Vapor ValidatorResult.swift
[2554/2608] Compiling Vapor And.swift
[2555/2608] Compiling Vapor BasicResponder.swift
[2556/2608] Compiling Vapor BodyStream.swift
[2557/2608] Compiling Vapor Application+HTTP+Client.swift
[2558/2608] Compiling Vapor EventLoopHTTPClient.swift
[2559/2608] Compiling Vapor EndpointCache.swift
[2560/2608] Compiling Vapor HTTPMethod+String.swift
[2561/2608] Compiling Vapor HTTPStatus.swift
[2562/2608] Compiling Vapor HTTPCookies.swift
[2563/2608] Compiling Vapor HTTPHeaderCacheControl.swift
[2564/2608] Compiling Vapor HTTPHeaderExpires.swift
[2565/2608] Compiling Vapor HTTPHeaderLastModified.swift
[2566/2608] Compiling Vapor HTTPHeaders+Cache.swift
[2567/2608] Compiling Vapor HTTPHeaders+Connection.swift
[2568/2608] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[2569/2608] Compiling Vapor HTTPHeaders+ContentRange.swift
[2570/2608] Compiling Vapor HTTPHeaders+Directive.swift
[2571/2608] Compiling Vapor HTTPHeaders+Forwarded.swift
[2572/2608] Compiling Vapor HTTPHeaders+Link.swift
[2573/2608] Compiling Vapor HTTPHeaders+Name.swift
[2574/2608] Compiling Vapor HTTPHeaders+ResponseCompression.swift
[2575/2608] Compiling Vapor HTTPHeaders.swift
[2576/2608] Compiling Vapor HTTPMediaType.swift
[2577/2608] Compiling Vapor ServeCommand.swift
[2578/2608] Compiling Vapor AnyResponse+Concurrency.swift
[2579/2608] Compiling Vapor AsyncBasicResponder.swift
[2580/2608] Compiling Vapor AsyncMiddleware.swift
[2581/2608] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
[2582/2608] Compiling Vapor AsyncSessionDriver.swift
[2583/2608] Compiling Vapor Authentication+Concurrency.swift
[2584/2608] Compiling Vapor Cache+Concurrency.swift
[2585/2608] Compiling Vapor Client+Concurrency.swift
[2586/2608] Compiling Vapor RequestBody+Concurrency.swift
[2587/2608] Compiling Vapor Responder+Concurrency.swift
[2588/2608] Compiling Vapor ResponseCodable+Concurrency.swift
[2589/2608] Compiling Vapor RoutesBuilder+Concurrency.swift
[2590/2608] Compiling Vapor ViewRenderer+Concurrency.swift
[2591/2608] Compiling Vapor WebSocket+Concurrency.swift
[2592/2608] Compiling Vapor ContainerGetPathExecutor.swift
[2593/2608] Compiling Vapor Content.swift
[2594/2608] Compiling Vapor ContentCoders.swift
[2595/2608] Compiling Vapor ContentConfiguration.swift
[2596/2608] Compiling Vapor ContentContainer.swift
[2597/2608] Compiling Vapor JSONCoder+Custom.swift
[2598/2608] Compiling Vapor JSONCoders+Content.swift
[2599/2608] Compiling HTMLKitConverter InitRepresentable.swift
[2600/2608] 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() {}
[2601/2608] 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() {}
[2602/2608] 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() {}
[2603/2612] Compiling ConvertCommand ConvertCommand.swift
[2604/2612] Emitting module ConvertCommand
[2606/2616] Compiling ConvertCommand ConvertCommand.swift
[2606/2616] Write Objects.LinkFileList
[2609/2616] Compiling HTMLKitVapor Configuration.swift
[2610/2616] Compiling HTMLKitVapor ViewRenderer.swift
[2611/2616] 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
[2612/2616] 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
[2612/2616] Linking ConvertCommand
[2613/2616] Applying ConvertCommand
[2614/2616] Linking ConvertCommand-tool
[2615/2616] Applying ConvertCommand-tool
Build complete! (63.95s)
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/Button.swift",
        "Components/Card.swift",
        "Components/Carousel.swift",
        "Components/Chart.swift",
        "Components/Disclosure.swift",
        "Components/Divider.swift",
        "Components/Dropdown.swift",
        "Components/Form.swift",
        "Components/Grid.swift",
        "Components/Grouping.swift",
        "Components/Image.swift",
        "Components/Link.swift",
        "Components/List.swift",
        "Components/Modal.swift",
        "Components/Navigation.swift",
        "Components/Scroll.swift",
        "Components/Snippet.swift",
        "Components/Stack.swift",
        "Components/Symbol.swift",
        "Components/Tabs.swift",
        "Components/Text.swift",
        "Components/Video.swift",
        "Events/DragEvent.swift",
        "Events/FormEvent.swift",
        "Events/MouseEvent.swift",
        "Events/PressEvent.swift",
        "Extensions/Components+Image.swift",
        "Extensions/Components+String.swift",
        "Modifiers/ButtonModifier.swift",
        "Modifiers/GraphicsModifier.swift",
        "Modifiers/ImageModifier.swift",
        "Modifiers/InputModifier.swift",
        "Modifiers/TextModifier.swift",
        "Modifiers/ViewModifier.swift",
        "Options.swift",
        "Primitives/Action.swift",
        "Primitives/Configurations.swift",
        "Primitives/DynamicType.swift",
        "Properties/Actionable.swift",
        "Properties/Identifiable.swift",
        "Properties/Modifiable.swift",
        "Properties/Selectable.swift",
        "Tokens.swift",
        "Validator.swift"
      ],
      "target_dependencies" : [
        "HTMLKit"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HTMLKit",
      "module_type" : "SwiftTarget",
      "name" : "HTMLKit",
      "path" : "Sources/HTMLKit",
      "product_dependencies" : [
        "Collections",
        "Logging"
      ],
      "product_memberships" : [
        "HTMLKit",
        "ComponentsPlugin",
        "ConverterPlugin",
        "DeployCommand",
        "ConvertCommand"
      ],
      "sources" : [
        "Abstraction/Attributes/AriaAttributes.swift",
        "Abstraction/Attributes/BasicAttributes.swift",
        "Abstraction/Attributes/EventAttributes.swift",
        "Abstraction/Attributes/VectorAttributes.swift",
        "Abstraction/Elements/BasicElements.swift",
        "Abstraction/Elements/BodyElements.swift",
        "Abstraction/Elements/DefinitionElements.swift",
        "Abstraction/Elements/FigureElements.swift",
        "Abstraction/Elements/FormElements.swift",
        "Abstraction/Elements/HeadElements.swift",
        "Abstraction/Elements/HtmlElements.swift",
        "Abstraction/Elements/InputElements.swift",
        "Abstraction/Elements/ListElements.swift",
        "Abstraction/Elements/MapElements.swift",
        "Abstraction/Elements/MediaElements.swift",
        "Abstraction/Elements/ObjectElements.swift",
        "Abstraction/Elements/RubyElements.swift",
        "Abstraction/Elements/TableElements.swift",
        "Abstraction/Elements/VectorElements.swift",
        "Abstraction/Tokens/EventTokens.swift",
        "Abstraction/Tokens/ValueTokens.swift",
        "Framework/Builders/ContentBuilder.swift",
        "Framework/Environment/Condition.swift",
        "Framework/Environment/Conditional.swift",
        "Framework/Environment/Environment.swift",
        "Framework/Environment/EnvironmentKeys.swift",
        "Framework/Environment/EnvironmentModifier.swift",
        "Framework/Environment/EnvironmentObject.swift",
        "Framework/Environment/EnvironmentString.swift",
        "Framework/Environment/EnvironmentValue.swift",
        "Framework/Environment/Negation.swift",
        "Framework/Environment/Nullable.swift",
        "Framework/Environment/Relation.swift",
        "Framework/Environment/Sequence.swift",
        "Framework/Environment/Statement.swift",
        "Framework/Extensions/Comparable+HTMLKit.swift",
        "Framework/Extensions/Datatypes+Content.swift",
        "Framework/Extensions/Optional+HTMLKit.swift",
        "Framework/Localization/InterpolationArgument.swift",
        "Framework/Localization/Locale.swift",
        "Framework/Localization/Localizable.swift",
        "Framework/Localization/Localization.swift",
        "Framework/Localization/LocalizedString.swift",
        "Framework/Localization/LocalizedStringKey.swift",
        "Framework/Localization/TranslationTable.swift",
        "Framework/Primitives/Attributes/Attribute.swift",
        "Framework/Primitives/Elements/Element.swift",
        "Framework/Primitives/Elements/Elements.swift",
        "Framework/Primitives/Layouts/Layouts.swift",
        "Framework/Primitives/Nodes/Node.swift",
        "Framework/Primitives/Nodes/Nodes.swift",
        "Framework/Primitives/Shared/Content.swift",
        "Framework/Rendering/Encoder.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
Extracting symbol information for 'HTMLKit'...
Finished extracting symbol information for 'HTMLKit'. (13.87s)
Building documentation for 'HTMLKit'...
warning: 'EnvironmentValue' doesn't exist at '/HTMLKit'
  --> Framework/Environment.md:23:13-23:29
21 | ### Value
22 |
23 + - ``HTMLKit/EnvironmentValue``
   |             ├─suggestion: Replace 'EnvironmentValue' with 'Environment'
   |             ╰─suggestion: Replace 'EnvironmentValue' with 'EnvironmentKeys'
24 |
25 | ### Model
warning: 'DocumentationExtension' doesn't change default configuration and has no effect
 --> Framework/Layouts/View.md:4:5-4:51
2 |
3 | @Metadata {
4 +     @DocumentationExtension(mergeBehavior: append)
  |     ╰─suggestion: Remove this 'DocumentationExtension' directive.
5 | }
6 |
warning: 'DocumentationExtension' doesn't change default configuration and has no effect
 --> Framework/Layouts/View.md:4:5-4:51
2 |
3 | @Metadata {
4 +     @DocumentationExtension(mergeBehavior: append)
  |     ╰─suggestion: Remove this 'DocumentationExtension' directive.
5 | }
6 |
warning: 'Documentation' directive should contain at least one list item
  --> Tutorials/Introduction.tutorial:29:9-31:10
27 |         Explore more resources for learning about HTMLKit.
28 |
29 +         @Documentation(destination: "https://swiftpackageindex.com/vapor-community/HTMLKit/documentation/htmlkit") {
30 +             Browse and search the API documentation.
31 +         }
32 |         @SampleCode(destination: "https://github.com/mattesmohr/Website") {
33 |             Explore sample code to get to know HTMLKit.
warning: 'SampleCode' directive should contain at least one list item
  --> Tutorials/Introduction.tutorial:32:9-34:10
30 |             Browse and search the API documentation.
31 |         }
32 +         @SampleCode(destination: "https://github.com/mattesmohr/Website") {
33 +             Explore sample code to get to know HTMLKit.
34 +         }
35 |         @Forums(destination: "https://discord.gg/invite/vapor") {
36 |             Discuss HTMLKit or reach out for help.
warning: Parameter 'lhs' not found in operator declaration
  --> ../Framework/Environment/Negation.swift:25:7-26:5
23 | ///
24 | /// - Parameters:
25 + ///   - lhs: The left-hand side conditional
   |       ╰─suggestion: Remove 'lhs' parameter documentation
26 + ///
27 | /// - Returns: A invert conditional
28 | public prefix func ! (value: EnvironmentValue) -> Conditional {
warning: Parameter 'value' is missing documentation
  --> ../Framework/Environment/Negation.swift:26:5-26:5
24 | /// - Parameters:
25 | ///   - lhs: The left-hand side conditional
26 + ///
   |     ╰─suggestion: Document 'value' parameter
27 | /// - Returns: A invert conditional
28 | public prefix func ! (value: EnvironmentValue) -> Conditional {
Finished building documentation for 'HTMLKit' (3.82s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/vapor-community/htmlkit/main
Building for debugging...
[0/8] 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 Identifier.swift
[11/57] Compiling SymbolKit KindIdentifier.swift
[12/57] Compiling SymbolKit Location.swift
[13/57] Compiling SymbolKit Mutability.swift
[14/57] Compiling SymbolKit Names.swift
[15/57] Compiling SymbolKit SPI.swift
[16/57] Compiling SymbolKit Snippet.swift
[17/57] Compiling SymbolKit Extension.swift
[18/57] Emitting module SymbolKit
[19/57] Compiling SymbolKit Mixin+Equals.swift
[20/57] Compiling SymbolKit Mixin+Hash.swift
[21/57] Compiling SymbolKit Mixin.swift
[22/57] Compiling SymbolKit LineList.swift
[23/57] Compiling SymbolKit Position.swift
[24/57] Compiling SymbolKit Relationship.swift
[25/57] Compiling SymbolKit RelationshipKind.swift
[26/57] Compiling SymbolKit SourceOrigin.swift
[27/57] Compiling SymbolKit GenericConstraints.swift
[28/57] Compiling SymbolKit Swift.swift
[29/57] Compiling SymbolKit DeclarationFragments.swift
[30/57] Compiling SymbolKit Fragment.swift
[31/57] Compiling SymbolKit FragmentKind.swift
[32/57] Compiling SymbolKit FunctionParameter.swift
[33/57] Compiling SymbolKit FunctionSignature.swift
[34/57] Compiling SymbolKit SemanticVersion.swift
[35/57] Compiling SymbolKit AccessControl.swift
[36/57] Compiling SymbolKit Availability.swift
[37/57] Compiling SymbolKit AvailabilityItem.swift
[38/57] Compiling SymbolKit Domain.swift
[39/57] Compiling SymbolKit SourceRange.swift
[40/57] Compiling SymbolKit Metadata.swift
[41/57] Compiling SymbolKit Module.swift
[42/57] Compiling SymbolKit OperatingSystem.swift
[43/57] Compiling SymbolKit Platform.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] Emitting module Snippets
[53/57] Compiling Snippets SnippetParser.swift
[54/57] Compiling Snippets Snippet.swift
[55/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[56/61] Emitting module snippet_extract
[57/61] Compiling snippet_extract URL+Status.swift
[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.83s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/24] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[3/24] Compiling InternalCollectionsUtilities Specialize.swift
[4/24] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[5/25] Compiling InternalCollectionsUtilities _SortedCollection.swift
[6/25] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[7/25] Compiling InternalCollectionsUtilities Debugging.swift
[8/25] Compiling InternalCollectionsUtilities Descriptions.swift
[9/25] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[10/25] Compiling InternalCollectionsUtilities UnsafeRawPointer extensions.swift
[11/25] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[12/25] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+SE-0370.swift
[13/25] Compiling InternalCollectionsUtilities UnsafeMutablePointer+SE-0370.swift
[14/25] Compiling InternalCollectionsUtilities UInt+reversed.swift
[15/25] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[16/25] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[17/25] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[18/25] Emitting module InternalCollectionsUtilities
[19/25] Compiling InternalCollectionsUtilities Integer rank.swift
[20/25] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[21/25] Compiling Logging LogHandler.swift
[22/25] Compiling Logging Locks.swift
[23/25] Emitting module Logging
[24/25] Compiling Logging MetadataProvider.swift
[25/25] Compiling Logging Logging.swift
[26/307] Compiling _RopeModule BigString+Debugging.swift
[27/307] Compiling _RopeModule BigString+Index.swift
[28/308] Compiling DequeModule _DequeBuffer.swift
[29/308] Compiling DequeModule _DequeSlot.swift
[30/308] Compiling DequeModule _DequeBufferHeader.swift
[31/308] Compiling _RopeModule BigString+Ingester.swift
[32/308] Compiling _RopeModule BigString+Invariants.swift
[33/308] Compiling HeapModule _HeapNode.swift
[34/308] Compiling HeapModule Heap.swift
[35/308] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[36/308] Compiling HeapModule Heap+Invariants.swift
[37/308] Compiling HeapModule Heap+Descriptions.swift
[38/308] Compiling HeapModule Heap+UnsafeHandle.swift
[39/308] Compiling _RopeModule BigString+Iterators.swift
[40/308] Compiling _RopeModule BigString+Metrics.swift
[41/308] Emitting module HeapModule
[42/308] Compiling _RopeModule Rope+_UnmanagedLeaf.swift
[43/308] Compiling _RopeModule Rope+_UnsafeHandle.swift
[44/308] Compiling _RopeModule Rope.swift
[45/308] Compiling _RopeModule RopeElement.swift
[46/308] Compiling _RopeModule RopeMetric.swift
[47/308] Compiling _RopeModule BigString+Summary.swift
[48/308] Compiling _RopeModule BigString+Chunk+Indexing by UTF16.swift
[49/308] Compiling _RopeModule RopeSummary.swift
[50/308] Compiling _RopeModule _RopeItem.swift
[51/308] Compiling _RopeModule _RopePath.swift
[52/308] Compiling _RopeModule _RopeVersion.swift
[53/308] Compiling _RopeModule Rope+Collection.swift
[54/313] Compiling _RopeModule Rope+ForEachWhile.swift
[55/313] Compiling _RopeModule Rope+Insert.swift
[56/313] Compiling _RopeModule Rope+Join.swift
[57/313] Compiling _RopeModule Rope+MutatingForEach.swift
[58/313] Compiling _RopeModule BigString+UnicodeScalarView.swift
[59/313] Compiling BitCollections BitSet.swift
[60/313] Compiling _RopeModule Range+BigString.swift
[61/313] Compiling _RopeModule BigString+UTF16View.swift
[62/313] Compiling _RopeModule BigString+UTF8View.swift
[63/313] Compiling _RopeModule Rope+Append.swift
[64/313] Compiling _RopeModule Rope+Extract.swift
[65/313] Compiling _RopeModule Rope+Find.swift
[66/319] Compiling DequeModule _UnsafeWrappedBuffer.swift
[67/319] Compiling _RopeModule BigString+Chunk+RopeElement.swift
[68/319] Compiling _RopeModule BigString+Chunk+Splitting.swift
[69/319] Compiling _RopeModule BigString+Chunk.swift
[70/319] Compiling _RopeModule BigString+BidirectionalCollection.swift
[76/319] Compiling _RopeModule Rope+Index.swift
[77/319] Compiling _RopeModule BigString+Chunk+Append and Insert.swift
[78/319] Compiling _RopeModule BigString+Chunk+Breaks.swift
[79/319] Compiling _RopeModule BigString+Chunk+Counts.swift
[80/319] Compiling _RopeModule BigString+Chunk+Description.swift
[81/319] Compiling _RopeModule BigString+Chunk+Indexing by Characters.swift
[83/319] Compiling _RopeModule Rope+Sequence.swift
[84/319] Compiling _RopeModule BigString+Insert.swift
[85/319] Compiling _RopeModule BigString+Managing Breaks.swift
[86/319] Compiling _RopeModule BigString+RemoveSubrange.swift
[87/319] Compiling _RopeModule BigString+ReplaceSubrange.swift
[88/319] Compiling _RopeModule BigString+Split.swift
[107/319] Emitting module BitCollections
[108/319] Compiling _RopeModule BigString.swift
[114/319] Compiling _RopeModule BigString+Comparable.swift
[115/319] Compiling _RopeModule BigString+CustomDebugStringConvertible.swift
[116/319] Compiling _RopeModule BigString+CustomStringConvertible.swift
[117/319] Compiling _RopeModule BigString+Equatable.swift
[118/319] Compiling _RopeModule Rope+_Node.swift
[119/319] Compiling _RopeModule Rope+_Storage.swift
[121/319] Compiling OrderedCollections OrderedSet+SubSequence.swift
[122/319] Compiling OrderedCollections OrderedSet+Testing.swift
[123/319] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[124/319] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[125/319] Compiling _RopeModule BigString+Builder.swift
[126/319] Compiling _RopeModule BigString+Contents.swift
[139/319] Emitting module DequeModule
[157/319] Compiling OrderedCollections _UnsafeBitset.swift
[158/319] Compiling _RopeModule BigString+ExpressibleByStringLiteral.swift
[159/319] Compiling _RopeModule BigString+Hashing.swift
[160/319] Compiling _RopeModule BigString+LosslessStringConvertible.swift
[161/319] Compiling _RopeModule BigString+RangeReplaceableCollection.swift
[162/319] Compiling _RopeModule BigString+Sequence.swift
[163/319] Compiling _RopeModule BigString+TextOutputStream.swift
[164/319] Compiling _RopeModule BigString+Append.swift
[172/319] Compiling OrderedCollections OrderedSet.swift
[181/319] Compiling _RopeModule BigString+Initializers.swift
[182/319] Compiling HashTreeCollections _HashNode+Primitive Insertions.swift
[183/319] Compiling HashTreeCollections _HashNode+Primitive Removals.swift
[184/319] Compiling HashTreeCollections _HashNode+Primitive Replacement.swift
[185/319] Compiling HashTreeCollections _HashNode+Storage.swift
[186/319] Compiling HashTreeCollections _HashNode+Structural compactMapValues.swift
[187/319] Compiling HashTreeCollections _HashNode+Structural filter.swift
[188/319] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[189/319] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[237/334] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[238/334] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[239/334] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[240/334] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[241/334] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[242/334] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[243/334] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[244/334] Compiling HashTreeCollections TreeSet.swift
[259/334] Emitting module OrderedCollections
[260/334] Compiling _RopeModule Rope+Remove.swift
[261/334] Compiling _RopeModule Rope+RemoveSubrange.swift
[262/334] Compiling _RopeModule Rope+Split.swift
[263/334] Compiling _RopeModule Optional Utilities.swift
[264/334] Compiling _RopeModule String Utilities.swift
[265/334] Compiling _RopeModule String.Index+ABI.swift
[266/334] Compiling _RopeModule _CharacterRecognizer.swift
[267/334] Emitting module _RopeModule
[334/334] Emitting module HashTreeCollections
[335/336] Compiling Collections Collections.swift
[336/336] Emitting module Collections
[337/393] Compiling HTMLKit EnvironmentModifier.swift
[338/393] Compiling HTMLKit EnvironmentObject.swift
[339/393] Compiling HTMLKit EnvironmentString.swift
[340/393] Compiling HTMLKit EnvironmentValue.swift
[341/393] Compiling HTMLKit Negation.swift
[342/393] Compiling HTMLKit Nullable.swift
[343/393] Compiling HTMLKit Relation.swift
[344/393] Compiling HTMLKit Sequence.swift
[345/393] Compiling HTMLKit Statement.swift
[346/393] Compiling HTMLKit Comparable+HTMLKit.swift
[347/393] Compiling HTMLKit Datatypes+Content.swift
[348/393] Compiling HTMLKit Optional+HTMLKit.swift
[349/393] Compiling HTMLKit TranslationTable.swift
[350/393] Compiling HTMLKit Attribute.swift
[351/393] Compiling HTMLKit Element.swift
[352/393] Compiling HTMLKit Elements.swift
[353/393] Compiling HTMLKit Layouts.swift
[354/393] Compiling HTMLKit Node.swift
[355/399] Compiling HTMLKit Nodes.swift
[356/399] Compiling HTMLKit Content.swift
[357/399] Compiling HTMLKit Encoder.swift
[358/399] Compiling HTMLKit Features.swift
[359/399] Compiling HTMLKit Markdown+Character.swift
[360/399] Compiling HTMLKit MarkdownLexer.swift
[361/399] Compiling HTMLKit InterpolationArgument.swift
[362/399] Compiling HTMLKit Locale.swift
[363/399] Compiling HTMLKit Localizable.swift
[364/399] Compiling HTMLKit Localization.swift
[365/399] Compiling HTMLKit LocalizedString.swift
[366/399] Compiling HTMLKit LocalizedStringKey.swift
[367/399] Compiling HTMLKit ValueTokens.swift
[368/399] Compiling HTMLKit ContentBuilder.swift
[369/399] Compiling HTMLKit Condition.swift
[370/399] Compiling HTMLKit Conditional.swift
[371/399] Compiling HTMLKit Environment.swift
[372/399] Compiling HTMLKit EnvironmentKeys.swift
[373/399] Compiling HTMLKit MarkdownToken.swift
[374/399] Compiling HTMLKit Markdown.swift
[375/399] Compiling HTMLKit MarkdownString.swift
[376/399] Compiling HTMLKit MarkdownNode.swift
[377/399] Compiling HTMLKit MarkdownParser.swift
[378/399] Compiling HTMLKit Renderer.swift
[379/399] Compiling HTMLKit FigureElements.swift
[380/399] Compiling HTMLKit FormElements.swift
[381/399] Compiling HTMLKit HeadElements.swift
[382/399] Compiling HTMLKit HtmlElements.swift
[383/399] Compiling HTMLKit InputElements.swift
[384/399] Compiling HTMLKit ListElements.swift
[385/399] Compiling HTMLKit MapElements.swift
[386/399] Emitting module HTMLKit
[387/399] Compiling HTMLKit MediaElements.swift
[388/399] Compiling HTMLKit ObjectElements.swift
[389/399] Compiling HTMLKit RubyElements.swift
[390/399] Compiling HTMLKit TableElements.swift
[391/399] Compiling HTMLKit VectorElements.swift
[392/399] Compiling HTMLKit EventTokens.swift
[393/399] Compiling HTMLKit AriaAttributes.swift
[394/399] Compiling HTMLKit BasicAttributes.swift
[395/399] Compiling HTMLKit EventAttributes.swift
[396/399] Compiling HTMLKit VectorAttributes.swift
[397/399] Compiling HTMLKit BasicElements.swift
[398/399] Compiling HTMLKit BodyElements.swift
[399/399] Compiling HTMLKit DefinitionElements.swift
Build of target: 'HTMLKit' complete! (11.65s)
   16399
86	/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: 16399
Doc size:   86.0MB
Preparing doc bundle ...
Uploading prod-vapor-community-htmlkit-main-0da4c2bc.zip to s3://spi-docs-inbox/prod-vapor-community-htmlkit-main-0da4c2bc.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.