This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 HTML with Swift 6.0 (beta) for watchOS using Xcode 16.0.

Swift 6 data race errors: 342

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme HTML-Package -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

public let tfoot = TFootTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19579:15: note: consider making struct 'TFootTag' conform to the 'Sendable' protocol
public struct TFootTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19756:12: note: annotate 'tfoot' with '@MainActor' if property should only be accessed from the main actor
public let tfoot = TFootTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19756:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let tfoot = TFootTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19966:12: warning: let 'th' is not concurrency-safe because non-'Sendable' type 'THTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let th = THTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19759:15: note: consider making struct 'THTag' conform to the 'Sendable' protocol
public struct THTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19966:12: note: annotate 'th' with '@MainActor' if property should only be accessed from the main actor
public let th = THTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19966:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let th = THTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20146:12: warning: let 'thead' is not concurrency-safe because non-'Sendable' type 'THeadTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let thead = THeadTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19969:15: note: consider making struct 'THeadTag' conform to the 'Sendable' protocol
public struct THeadTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20146:12: note: annotate 'thead' with '@MainActor' if property should only be accessed from the main actor
public let thead = THeadTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20146:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let thead = THeadTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20332:12: warning: let 'time' is not concurrency-safe because non-'Sendable' type 'TimeTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let time = TimeTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20149:15: note: consider making struct 'TimeTag' conform to the 'Sendable' protocol
public struct TimeTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20332:12: note: annotate 'time' with '@MainActor' if property should only be accessed from the main actor
public let time = TimeTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20332:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let time = TimeTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20512:12: warning: let 'title' is not concurrency-safe because non-'Sendable' type 'TitleTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let title = TitleTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20335:15: note: consider making struct 'TitleTag' conform to the 'Sendable' protocol
public struct TitleTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20512:12: note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
public let title = TitleTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20512:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let title = TitleTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20692:12: warning: let 'tr' is not concurrency-safe because non-'Sendable' type 'TRTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let tr = TRTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20515:15: note: consider making struct 'TRTag' conform to the 'Sendable' protocol
public struct TRTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20692:12: note: annotate 'tr' with '@MainActor' if property should only be accessed from the main actor
public let tr = TRTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20692:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let tr = TRTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20901:12: warning: let 'track' is not concurrency-safe because non-'Sendable' type 'TrackTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let track = TrackTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20695:15: note: consider making struct 'TrackTag' conform to the 'Sendable' protocol
public struct TrackTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20901:12: note: annotate 'track' with '@MainActor' if property should only be accessed from the main actor
public let track = TrackTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20901:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let track = TrackTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21081:12: warning: let 'u' is not concurrency-safe because non-'Sendable' type 'UTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let u = UTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20904:15: note: consider making struct 'UTag' conform to the 'Sendable' protocol
public struct UTag: Tag {
              ^
                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21081:12: note: annotate 'u' with '@MainActor' if property should only be accessed from the main actor
public let u = UTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21081:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let u = UTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21261:12: warning: let 'ul' is not concurrency-safe because non-'Sendable' type 'ULTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let ul = ULTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21084:15: note: consider making struct 'ULTag' conform to the 'Sendable' protocol
public struct ULTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21261:12: note: annotate 'ul' with '@MainActor' if property should only be accessed from the main actor
public let ul = ULTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21261:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let ul = ULTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21441:12: warning: let 'var' is not concurrency-safe because non-'Sendable' type 'VarTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let `var` = VarTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21264:15: note: consider making struct 'VarTag' conform to the 'Sendable' protocol
public struct VarTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21441:12: note: annotate 'var' with '@MainActor' if property should only be accessed from the main actor
public let `var` = VarTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21441:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let `var` = VarTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21687:12: warning: let 'video' is not concurrency-safe because non-'Sendable' type 'VideoTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let video = VideoTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21444:15: note: consider making struct 'VideoTag' conform to the 'Sendable' protocol
public struct VideoTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21687:12: note: annotate 'video' with '@MainActor' if property should only be accessed from the main actor
public let video = VideoTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21687:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let video = VideoTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21866:12: warning: let 'wbr' is not concurrency-safe because non-'Sendable' type 'WBRTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let wbr = WBRTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21690:15: note: consider making struct 'WBRTag' conform to the 'Sendable' protocol
public struct WBRTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21866:12: note: annotate 'wbr' with '@MainActor' if property should only be accessed from the main actor
public let wbr = WBRTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21866:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let wbr = WBRTag()
           ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling NodeBuilder.swift (in target 'Swim' from project 'HTML')
SwiftCompile normal arm64_32 Compiling\ Tag.swift /Users/admin/builder/spi-builder-workspace/Sources/HTML/Tag.swift (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTML/Tag.swift /Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Tag.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Tag.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Tag.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Tag.dia -target arm64_32-apple-watchos7.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTML -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Tag.o -index-unit-output-path /HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Tag.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/HTML/Tag.swift (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTML/Tag.swift /Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Tag.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Tag.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Tag.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Tag.dia -target arm64_32-apple-watchos7.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTML -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Tag.o -index-unit-output-path /HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Tag.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling String+XML.swift (in target 'Swim' from project 'HTML')
SwiftCompile normal arm64 Compiling\ Tags.swift /Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/HTML/Tag.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Tags.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Tags.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Tags.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Tags.dia -target arm64-apple-watchos7.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTML -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Tags.o -index-unit-output-path /HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Tags.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/HTML/Tag.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Tags.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Tags.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Tags.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Tags.dia -target arm64-apple-watchos7.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTML -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Tags.o -index-unit-output-path /HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Tags.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:232:12: warning: let 'a' is not concurrency-safe because non-'Sendable' type 'ATag' may have shared mutable state; this is an error in the Swift 6 language mode
public let a = ATag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7:15: note: consider making struct 'ATag' conform to the 'Sendable' protocol
public struct ATag: Tag {
              ^
                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:232:12: note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
public let a = ATag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:232:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let a = ATag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:412:12: warning: let 'abbr' is not concurrency-safe because non-'Sendable' type 'AbbrTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let abbr = AbbrTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:235:15: note: consider making struct 'AbbrTag' conform to the 'Sendable' protocol
public struct AbbrTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:412:12: note: annotate 'abbr' with '@MainActor' if property should only be accessed from the main actor
public let abbr = AbbrTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:412:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let abbr = AbbrTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:592:12: warning: let 'address' is not concurrency-safe because non-'Sendable' type 'AddressTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let address = AddressTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:415:15: note: consider making struct 'AddressTag' conform to the 'Sendable' protocol
public struct AddressTag: Tag {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:592:12: note: annotate 'address' with '@MainActor' if property should only be accessed from the main actor
public let address = AddressTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:592:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let address = AddressTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:825:12: warning: let 'area' is not concurrency-safe because non-'Sendable' type 'AreaTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let area = AreaTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:595:15: note: consider making struct 'AreaTag' conform to the 'Sendable' protocol
public struct AreaTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:825:12: note: annotate 'area' with '@MainActor' if property should only be accessed from the main actor
public let area = AreaTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:825:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let area = AreaTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1005:12: warning: let 'article' is not concurrency-safe because non-'Sendable' type 'ArticleTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let article = ArticleTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:828:15: note: consider making struct 'ArticleTag' conform to the 'Sendable' protocol
public struct ArticleTag: Tag {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1005:12: note: annotate 'article' with '@MainActor' if property should only be accessed from the main actor
public let article = ArticleTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1005:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let article = ArticleTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1185:12: warning: let 'aside' is not concurrency-safe because non-'Sendable' type 'AsideTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let aside = AsideTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1008:15: note: consider making struct 'AsideTag' conform to the 'Sendable' protocol
public struct AsideTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1185:12: note: annotate 'aside' with '@MainActor' if property should only be accessed from the main actor
public let aside = AsideTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1185:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let aside = AsideTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1407:12: warning: let 'audio' is not concurrency-safe because non-'Sendable' type 'AudioTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let audio = AudioTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1188:15: note: consider making struct 'AudioTag' conform to the 'Sendable' protocol
public struct AudioTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1407:12: note: annotate 'audio' with '@MainActor' if property should only be accessed from the main actor
public let audio = AudioTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1407:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let audio = AudioTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1587:12: warning: let 'b' is not concurrency-safe because non-'Sendable' type 'BTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let b = BTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1410:15: note: consider making struct 'BTag' conform to the 'Sendable' protocol
public struct BTag: Tag {
              ^
                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1587:12: note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
public let b = BTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1587:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let b = BTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1778:12: warning: let 'base' is not concurrency-safe because non-'Sendable' type 'BaseTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let base = BaseTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1590:15: note: consider making struct 'BaseTag' conform to the 'Sendable' protocol
public struct BaseTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1778:12: note: annotate 'base' with '@MainActor' if property should only be accessed from the main actor
public let base = BaseTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1778:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let base = BaseTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1958:12: warning: let 'bdi' is not concurrency-safe because non-'Sendable' type 'BDITag' may have shared mutable state; this is an error in the Swift 6 language mode
public let bdi = BDITag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1781:15: note: consider making struct 'BDITag' conform to the 'Sendable' protocol
public struct BDITag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1958:12: note: annotate 'bdi' with '@MainActor' if property should only be accessed from the main actor
public let bdi = BDITag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1958:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let bdi = BDITag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2138:12: warning: let 'bdo' is not concurrency-safe because non-'Sendable' type 'BDOTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let bdo = BDOTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:1961:15: note: consider making struct 'BDOTag' conform to the 'Sendable' protocol
public struct BDOTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2138:12: note: annotate 'bdo' with '@MainActor' if property should only be accessed from the main actor
public let bdo = BDOTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2138:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let bdo = BDOTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2324:12: warning: let 'blockquote' is not concurrency-safe because non-'Sendable' type 'BlockquoteTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let blockquote = BlockquoteTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2141:15: note: consider making struct 'BlockquoteTag' conform to the 'Sendable' protocol
public struct BlockquoteTag: Tag {
              ^
                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2324:12: note: annotate 'blockquote' with '@MainActor' if property should only be accessed from the main actor
public let blockquote = BlockquoteTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2324:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let blockquote = BlockquoteTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2504:12: warning: let 'body' is not concurrency-safe because non-'Sendable' type 'BodyTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let body = BodyTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2327:15: note: consider making struct 'BodyTag' conform to the 'Sendable' protocol
public struct BodyTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2504:12: note: annotate 'body' with '@MainActor' if property should only be accessed from the main actor
public let body = BodyTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2504:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let body = BodyTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2683:12: warning: let 'br' is not concurrency-safe because non-'Sendable' type 'BRTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let br = BRTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2507:15: note: consider making struct 'BRTag' conform to the 'Sendable' protocol
public struct BRTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2683:12: note: annotate 'br' with '@MainActor' if property should only be accessed from the main actor
public let br = BRTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2683:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let br = BRTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2923:12: warning: let 'button' is not concurrency-safe because non-'Sendable' type 'ButtonTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let button = ButtonTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2686:15: note: consider making struct 'ButtonTag' conform to the 'Sendable' protocol
public struct ButtonTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2923:12: note: annotate 'button' with '@MainActor' if property should only be accessed from the main actor
public let button = ButtonTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2923:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let button = ButtonTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3115:12: warning: let 'canvas' is not concurrency-safe because non-'Sendable' type 'CanvasTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let canvas = CanvasTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:2926:15: note: consider making struct 'CanvasTag' conform to the 'Sendable' protocol
public struct CanvasTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3115:12: note: annotate 'canvas' with '@MainActor' if property should only be accessed from the main actor
public let canvas = CanvasTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3115:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let canvas = CanvasTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3295:12: warning: let 'caption' is not concurrency-safe because non-'Sendable' type 'CaptionTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let caption = CaptionTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3118:15: note: consider making struct 'CaptionTag' conform to the 'Sendable' protocol
public struct CaptionTag: Tag {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3295:12: note: annotate 'caption' with '@MainActor' if property should only be accessed from the main actor
public let caption = CaptionTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3295:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let caption = CaptionTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3475:12: warning: let 'cite' is not concurrency-safe because non-'Sendable' type 'CiteTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let cite = CiteTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3298:15: note: consider making struct 'CiteTag' conform to the 'Sendable' protocol
public struct CiteTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3475:12: note: annotate 'cite' with '@MainActor' if property should only be accessed from the main actor
public let cite = CiteTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3475:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let cite = CiteTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3655:12: warning: let 'code' is not concurrency-safe because non-'Sendable' type 'CodeTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let code = CodeTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3478:15: note: consider making struct 'CodeTag' conform to the 'Sendable' protocol
public struct CodeTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3655:12: note: annotate 'code' with '@MainActor' if property should only be accessed from the main actor
public let code = CodeTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3655:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let code = CodeTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3840:12: warning: let 'col' is not concurrency-safe because non-'Sendable' type 'ColTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let col = ColTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3658:15: note: consider making struct 'ColTag' conform to the 'Sendable' protocol
public struct ColTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3840:12: note: annotate 'col' with '@MainActor' if property should only be accessed from the main actor
public let col = ColTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3840:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let col = ColTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4026:12: warning: let 'colgroup' is not concurrency-safe because non-'Sendable' type 'ColgroupTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let colgroup = ColgroupTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:3843:15: note: consider making struct 'ColgroupTag' conform to the 'Sendable' protocol
public struct ColgroupTag: Tag {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4026:12: note: annotate 'colgroup' with '@MainActor' if property should only be accessed from the main actor
public let colgroup = ColgroupTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4026:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let colgroup = ColgroupTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4212:12: warning: let 'data' is not concurrency-safe because non-'Sendable' type 'DataTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let data = DataTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4029:15: note: consider making struct 'DataTag' conform to the 'Sendable' protocol
public struct DataTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4212:12: note: annotate 'data' with '@MainActor' if property should only be accessed from the main actor
public let data = DataTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4212:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let data = DataTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4392:12: warning: let 'datalist' is not concurrency-safe because non-'Sendable' type 'DatalistTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let datalist = DatalistTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4215:15: note: consider making struct 'DatalistTag' conform to the 'Sendable' protocol
public struct DatalistTag: Tag {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4392:12: note: annotate 'datalist' with '@MainActor' if property should only be accessed from the main actor
public let datalist = DatalistTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4392:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let datalist = DatalistTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4572:12: warning: let 'dd' is not concurrency-safe because non-'Sendable' type 'DDTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let dd = DDTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4395:15: note: consider making struct 'DDTag' conform to the 'Sendable' protocol
public struct DDTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4572:12: note: annotate 'dd' with '@MainActor' if property should only be accessed from the main actor
public let dd = DDTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4572:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let dd = DDTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4764:12: warning: let 'del' is not concurrency-safe because non-'Sendable' type 'DelTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let del = DelTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4575:15: note: consider making struct 'DelTag' conform to the 'Sendable' protocol
public struct DelTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4764:12: note: annotate 'del' with '@MainActor' if property should only be accessed from the main actor
public let del = DelTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4764:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let del = DelTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4950:12: warning: let 'details' is not concurrency-safe because non-'Sendable' type 'DetailsTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let details = DetailsTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4767:15: note: consider making struct 'DetailsTag' conform to the 'Sendable' protocol
public struct DetailsTag: Tag {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4950:12: note: annotate 'details' with '@MainActor' if property should only be accessed from the main actor
public let details = DetailsTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4950:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let details = DetailsTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5130:12: warning: let 'dfn' is not concurrency-safe because non-'Sendable' type 'DFNTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let dfn = DFNTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:4953:15: note: consider making struct 'DFNTag' conform to the 'Sendable' protocol
public struct DFNTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5130:12: note: annotate 'dfn' with '@MainActor' if property should only be accessed from the main actor
public let dfn = DFNTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5130:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let dfn = DFNTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5316:12: warning: let 'dialog' is not concurrency-safe because non-'Sendable' type 'DialogTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let dialog = DialogTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5133:15: note: consider making struct 'DialogTag' conform to the 'Sendable' protocol
public struct DialogTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5316:12: note: annotate 'dialog' with '@MainActor' if property should only be accessed from the main actor
public let dialog = DialogTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5316:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let dialog = DialogTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5496:12: warning: let 'div' is not concurrency-safe because non-'Sendable' type 'DivTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let div = DivTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5319:15: note: consider making struct 'DivTag' conform to the 'Sendable' protocol
public struct DivTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5496:12: note: annotate 'div' with '@MainActor' if property should only be accessed from the main actor
public let div = DivTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5496:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let div = DivTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5676:12: warning: let 'dl' is not concurrency-safe because non-'Sendable' type 'DLTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let dl = DLTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5499:15: note: consider making struct 'DLTag' conform to the 'Sendable' protocol
public struct DLTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5676:12: note: annotate 'dl' with '@MainActor' if property should only be accessed from the main actor
public let dl = DLTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5676:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let dl = DLTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5856:12: warning: let 'dt' is not concurrency-safe because non-'Sendable' type 'DTTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let dt = DTTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5679:15: note: consider making struct 'DTTag' conform to the 'Sendable' protocol
public struct DTTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5856:12: note: annotate 'dt' with '@MainActor' if property should only be accessed from the main actor
public let dt = DTTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5856:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let dt = DTTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6036:12: warning: let 'em' is not concurrency-safe because non-'Sendable' type 'EmTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let em = EmTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:5859:15: note: consider making struct 'EmTag' conform to the 'Sendable' protocol
public struct EmTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6036:12: note: annotate 'em' with '@MainActor' if property should only be accessed from the main actor
public let em = EmTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6036:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let em = EmTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6239:12: warning: let 'embed' is not concurrency-safe because non-'Sendable' type 'EmbedTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let embed = EmbedTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6039:15: note: consider making struct 'EmbedTag' conform to the 'Sendable' protocol
public struct EmbedTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6239:12: note: annotate 'embed' with '@MainActor' if property should only be accessed from the main actor
public let embed = EmbedTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6239:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let embed = EmbedTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6437:12: warning: let 'fieldset' is not concurrency-safe because non-'Sendable' type 'FieldsetTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let fieldset = FieldsetTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6242:15: note: consider making struct 'FieldsetTag' conform to the 'Sendable' protocol
public struct FieldsetTag: Tag {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6437:12: note: annotate 'fieldset' with '@MainActor' if property should only be accessed from the main actor
public let fieldset = FieldsetTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6437:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let fieldset = FieldsetTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6617:12: warning: let 'figcaption' is not concurrency-safe because non-'Sendable' type 'FigcaptionTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let figcaption = FigcaptionTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6440:15: note: consider making struct 'FigcaptionTag' conform to the 'Sendable' protocol
public struct FigcaptionTag: Tag {
              ^
                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6617:12: note: annotate 'figcaption' with '@MainActor' if property should only be accessed from the main actor
public let figcaption = FigcaptionTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6617:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let figcaption = FigcaptionTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6797:12: warning: let 'figure' is not concurrency-safe because non-'Sendable' type 'FigureTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let figure = FigureTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6620:15: note: consider making struct 'FigureTag' conform to the 'Sendable' protocol
public struct FigureTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6797:12: note: annotate 'figure' with '@MainActor' if property should only be accessed from the main actor
public let figure = FigureTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6797:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let figure = FigureTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6977:12: warning: let 'footer' is not concurrency-safe because non-'Sendable' type 'FooterTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let footer = FooterTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6800:15: note: consider making struct 'FooterTag' conform to the 'Sendable' protocol
public struct FooterTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6977:12: note: annotate 'footer' with '@MainActor' if property should only be accessed from the main actor
public let footer = FooterTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6977:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let footer = FooterTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7205:12: warning: let 'form' is not concurrency-safe because non-'Sendable' type 'FormTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let form = FormTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:6980:15: note: consider making struct 'FormTag' conform to the 'Sendable' protocol
public struct FormTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7205:12: note: annotate 'form' with '@MainActor' if property should only be accessed from the main actor
public let form = FormTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7205:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let form = FormTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7385:12: warning: let 'h1' is not concurrency-safe because non-'Sendable' type 'H1Tag' may have shared mutable state; this is an error in the Swift 6 language mode
public let h1 = H1Tag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7208:15: note: consider making struct 'H1Tag' conform to the 'Sendable' protocol
public struct H1Tag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7385:12: note: annotate 'h1' with '@MainActor' if property should only be accessed from the main actor
public let h1 = H1Tag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7385:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let h1 = H1Tag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7565:12: warning: let 'h2' is not concurrency-safe because non-'Sendable' type 'H2Tag' may have shared mutable state; this is an error in the Swift 6 language mode
public let h2 = H2Tag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7388:15: note: consider making struct 'H2Tag' conform to the 'Sendable' protocol
public struct H2Tag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7565:12: note: annotate 'h2' with '@MainActor' if property should only be accessed from the main actor
public let h2 = H2Tag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7565:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let h2 = H2Tag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7745:12: warning: let 'h3' is not concurrency-safe because non-'Sendable' type 'H3Tag' may have shared mutable state; this is an error in the Swift 6 language mode
public let h3 = H3Tag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7568:15: note: consider making struct 'H3Tag' conform to the 'Sendable' protocol
public struct H3Tag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7745:12: note: annotate 'h3' with '@MainActor' if property should only be accessed from the main actor
public let h3 = H3Tag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7745:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let h3 = H3Tag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7925:12: warning: let 'h4' is not concurrency-safe because non-'Sendable' type 'H4Tag' may have shared mutable state; this is an error in the Swift 6 language mode
public let h4 = H4Tag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7748:15: note: consider making struct 'H4Tag' conform to the 'Sendable' protocol
public struct H4Tag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7925:12: note: annotate 'h4' with '@MainActor' if property should only be accessed from the main actor
public let h4 = H4Tag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7925:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let h4 = H4Tag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8105:12: warning: let 'h5' is not concurrency-safe because non-'Sendable' type 'H5Tag' may have shared mutable state; this is an error in the Swift 6 language mode
public let h5 = H5Tag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:7928:15: note: consider making struct 'H5Tag' conform to the 'Sendable' protocol
public struct H5Tag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8105:12: note: annotate 'h5' with '@MainActor' if property should only be accessed from the main actor
public let h5 = H5Tag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8105:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let h5 = H5Tag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8285:12: warning: let 'h6' is not concurrency-safe because non-'Sendable' type 'H6Tag' may have shared mutable state; this is an error in the Swift 6 language mode
public let h6 = H6Tag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8108:15: note: consider making struct 'H6Tag' conform to the 'Sendable' protocol
public struct H6Tag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8285:12: note: annotate 'h6' with '@MainActor' if property should only be accessed from the main actor
public let h6 = H6Tag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8285:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let h6 = H6Tag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8465:12: warning: let 'head' is not concurrency-safe because non-'Sendable' type 'HeadTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let head = HeadTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8288:15: note: consider making struct 'HeadTag' conform to the 'Sendable' protocol
public struct HeadTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8465:12: note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
public let head = HeadTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8465:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let head = HeadTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8645:12: warning: let 'header' is not concurrency-safe because non-'Sendable' type 'HeaderTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let header = HeaderTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8468:15: note: consider making struct 'HeaderTag' conform to the 'Sendable' protocol
public struct HeaderTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8645:12: note: annotate 'header' with '@MainActor' if property should only be accessed from the main actor
public let header = HeaderTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8645:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let header = HeaderTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8825:12: warning: let 'hgroup' is not concurrency-safe because non-'Sendable' type 'HgroupTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let hgroup = HgroupTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8648:15: note: consider making struct 'HgroupTag' conform to the 'Sendable' protocol
public struct HgroupTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8825:12: note: annotate 'hgroup' with '@MainActor' if property should only be accessed from the main actor
public let hgroup = HgroupTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8825:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let hgroup = HgroupTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9004:12: warning: let 'hr' is not concurrency-safe because non-'Sendable' type 'HRTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let hr = HRTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:8828:15: note: consider making struct 'HRTag' conform to the 'Sendable' protocol
public struct HRTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9004:12: note: annotate 'hr' with '@MainActor' if property should only be accessed from the main actor
public let hr = HRTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9004:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let hr = HRTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9190:12: warning: let 'html' is not concurrency-safe because non-'Sendable' type 'HTMLTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let html = HTMLTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9007:15: note: consider making struct 'HTMLTag' conform to the 'Sendable' protocol
public struct HTMLTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9190:12: note: annotate 'html' with '@MainActor' if property should only be accessed from the main actor
public let html = HTMLTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9190:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let html = HTMLTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9370:12: warning: let 'i' is not concurrency-safe because non-'Sendable' type 'ITag' may have shared mutable state; this is an error in the Swift 6 language mode
public let i = ITag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9193:15: note: consider making struct 'ITag' conform to the 'Sendable' protocol
public struct ITag: Tag {
              ^
                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9370:12: note: annotate 'i' with '@MainActor' if property should only be accessed from the main actor
public let i = ITag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9370:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let i = ITag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9610:12: warning: let 'iframe' is not concurrency-safe because non-'Sendable' type 'IFrameTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let iframe = IFrameTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9373:15: note: consider making struct 'IFrameTag' conform to the 'Sendable' protocol
public struct IFrameTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9610:12: note: annotate 'iframe' with '@MainActor' if property should only be accessed from the main actor
public let iframe = IFrameTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9610:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let iframe = IFrameTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9861:12: warning: let 'img' is not concurrency-safe because non-'Sendable' type 'ImgTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let img = ImgTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9613:15: note: consider making struct 'ImgTag' conform to the 'Sendable' protocol
public struct ImgTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9861:12: note: annotate 'img' with '@MainActor' if property should only be accessed from the main actor
public let img = ImgTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9861:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let img = ImgTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10220:12: warning: let 'input' is not concurrency-safe because non-'Sendable' type 'InputTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let input = InputTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:9864:15: note: consider making struct 'InputTag' conform to the 'Sendable' protocol
public struct InputTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10220:12: note: annotate 'input' with '@MainActor' if property should only be accessed from the main actor
public let input = InputTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10220:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let input = InputTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10412:12: warning: let 'ins' is not concurrency-safe because non-'Sendable' type 'InsTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let ins = InsTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10223:15: note: consider making struct 'InsTag' conform to the 'Sendable' protocol
public struct InsTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10412:12: note: annotate 'ins' with '@MainActor' if property should only be accessed from the main actor
public let ins = InsTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10412:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let ins = InsTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10592:12: warning: let 'kbd' is not concurrency-safe because non-'Sendable' type 'KBDTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let kbd = KBDTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10415:15: note: consider making struct 'KBDTag' conform to the 'Sendable' protocol
public struct KBDTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10592:12: note: annotate 'kbd' with '@MainActor' if property should only be accessed from the main actor
public let kbd = KBDTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10592:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let kbd = KBDTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10778:12: warning: let 'label' is not concurrency-safe because non-'Sendable' type 'LabelTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let label = LabelTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10595:15: note: consider making struct 'LabelTag' conform to the 'Sendable' protocol
public struct LabelTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10778:12: note: annotate 'label' with '@MainActor' if property should only be accessed from the main actor
public let label = LabelTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10778:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let label = LabelTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10958:12: warning: let 'legend' is not concurrency-safe because non-'Sendable' type 'legendTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let legend = legendTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10781:15: note: consider making struct 'legendTag' conform to the 'Sendable' protocol
public struct legendTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10958:12: note: annotate 'legend' with '@MainActor' if property should only be accessed from the main actor
public let legend = legendTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10958:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let legend = legendTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11144:12: warning: let 'li' is not concurrency-safe because non-'Sendable' type 'LITag' may have shared mutable state; this is an error in the Swift 6 language mode
public let li = LITag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:10961:15: note: consider making struct 'LITag' conform to the 'Sendable' protocol
public struct LITag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11144:12: note: annotate 'li' with '@MainActor' if property should only be accessed from the main actor
public let li = LITag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11144:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let li = LITag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11401:12: warning: let 'link' is not concurrency-safe because non-'Sendable' type 'LinkTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let link = LinkTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11147:15: note: consider making struct 'LinkTag' conform to the 'Sendable' protocol
public struct LinkTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11401:12: note: annotate 'link' with '@MainActor' if property should only be accessed from the main actor
public let link = LinkTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11401:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let link = LinkTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11581:12: warning: let 'main' is not concurrency-safe because non-'Sendable' type 'MainTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let main = MainTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11404:15: note: consider making struct 'MainTag' conform to the 'Sendable' protocol
public struct MainTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11581:12: note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
public let main = MainTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11581:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let main = MainTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11767:12: warning: let 'map' is not concurrency-safe because non-'Sendable' type 'MapTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let map = MapTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11584:15: note: consider making struct 'MapTag' conform to the 'Sendable' protocol
public struct MapTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11767:12: note: annotate 'map' with '@MainActor' if property should only be accessed from the main actor
public let map = MapTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11767:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let map = MapTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11947:12: warning: let 'mark' is not concurrency-safe because non-'Sendable' type 'MarkTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let mark = MarkTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11770:15: note: consider making struct 'MarkTag' conform to the 'Sendable' protocol
public struct MarkTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11947:12: note: annotate 'mark' with '@MainActor' if property should only be accessed from the main actor
public let mark = MarkTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11947:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let mark = MarkTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12127:12: warning: let 'math' is not concurrency-safe because non-'Sendable' type 'MathTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let math = MathTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:11950:15: note: consider making struct 'MathTag' conform to the 'Sendable' protocol
public struct MathTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12127:12: note: annotate 'math' with '@MainActor' if property should only be accessed from the main actor
public let math = MathTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12127:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let math = MathTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12307:12: warning: let 'menu' is not concurrency-safe because non-'Sendable' type 'MenuTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let menu = MenuTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12130:15: note: consider making struct 'MenuTag' conform to the 'Sendable' protocol
public struct MenuTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12307:12: note: annotate 'menu' with '@MainActor' if property should only be accessed from the main actor
public let menu = MenuTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12307:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let menu = MenuTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12510:12: warning: let 'meta' is not concurrency-safe because non-'Sendable' type 'MetaTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let meta = MetaTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12310:15: note: consider making struct 'MetaTag' conform to the 'Sendable' protocol
public struct MetaTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12510:12: note: annotate 'meta' with '@MainActor' if property should only be accessed from the main actor
public let meta = MetaTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12510:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let meta = MetaTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12726:12: warning: let 'meter' is not concurrency-safe because non-'Sendable' type 'MeterTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let meter = MeterTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12513:15: note: consider making struct 'MeterTag' conform to the 'Sendable' protocol
public struct MeterTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12726:12: note: annotate 'meter' with '@MainActor' if property should only be accessed from the main actor
public let meter = MeterTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12726:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let meter = MeterTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12906:12: warning: let 'nav' is not concurrency-safe because non-'Sendable' type 'NavTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let nav = NavTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12729:15: note: consider making struct 'NavTag' conform to the 'Sendable' protocol
public struct NavTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12906:12: note: annotate 'nav' with '@MainActor' if property should only be accessed from the main actor
public let nav = NavTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12906:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let nav = NavTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13086:12: warning: let 'noscript' is not concurrency-safe because non-'Sendable' type 'NoscriptTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let noscript = NoscriptTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:12909:15: note: consider making struct 'NoscriptTag' conform to the 'Sendable' protocol
public struct NoscriptTag: Tag {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13086:12: note: annotate 'noscript' with '@MainActor' if property should only be accessed from the main actor
public let noscript = NoscriptTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13086:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let noscript = NoscriptTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13308:12: warning: let 'object' is not concurrency-safe because non-'Sendable' type 'ObjectTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let object = ObjectTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13089:15: note: consider making struct 'ObjectTag' conform to the 'Sendable' protocol
public struct ObjectTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13308:12: note: annotate 'object' with '@MainActor' if property should only be accessed from the main actor
public let object = ObjectTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13308:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let object = ObjectTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13506:12: warning: let 'ol' is not concurrency-safe because non-'Sendable' type 'OLTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let ol = OLTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13311:15: note: consider making struct 'OLTag' conform to the 'Sendable' protocol
public struct OLTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13506:12: note: annotate 'ol' with '@MainActor' if property should only be accessed from the main actor
public let ol = OLTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13506:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let ol = OLTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13698:12: warning: let 'optgroup' is not concurrency-safe because non-'Sendable' type 'OptgroupTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let optgroup = OptgroupTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13509:15: note: consider making struct 'OptgroupTag' conform to the 'Sendable' protocol
public struct OptgroupTag: Tag {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13698:12: note: annotate 'optgroup' with '@MainActor' if property should only be accessed from the main actor
public let optgroup = OptgroupTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13698:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let optgroup = OptgroupTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13902:12: warning: let 'option' is not concurrency-safe because non-'Sendable' type 'OptionTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let option = OptionTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13701:15: note: consider making struct 'OptionTag' conform to the 'Sendable' protocol
public struct OptionTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13902:12: note: annotate 'option' with '@MainActor' if property should only be accessed from the main actor
public let option = OptionTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13902:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let option = OptionTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14100:12: warning: let 'output' is not concurrency-safe because non-'Sendable' type 'OutputTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let output = OutputTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:13905:15: note: consider making struct 'OutputTag' conform to the 'Sendable' protocol
public struct OutputTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14100:12: note: annotate 'output' with '@MainActor' if property should only be accessed from the main actor
public let output = OutputTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14100:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let output = OutputTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14280:12: warning: let 'p' is not concurrency-safe because non-'Sendable' type 'PTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let p = PTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14103:15: note: consider making struct 'PTag' conform to the 'Sendable' protocol
public struct PTag: Tag {
              ^
                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14280:12: note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
public let p = PTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14280:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let p = PTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14471:12: warning: let 'param' is not concurrency-safe because non-'Sendable' type 'ParamTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let param = ParamTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14283:15: note: consider making struct 'ParamTag' conform to the 'Sendable' protocol
public struct ParamTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14471:12: note: annotate 'param' with '@MainActor' if property should only be accessed from the main actor
public let param = ParamTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14471:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let param = ParamTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14651:12: warning: let 'picture' is not concurrency-safe because non-'Sendable' type 'PictureTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let picture = PictureTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14474:15: note: consider making struct 'PictureTag' conform to the 'Sendable' protocol
public struct PictureTag: Tag {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14651:12: note: annotate 'picture' with '@MainActor' if property should only be accessed from the main actor
public let picture = PictureTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14651:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let picture = PictureTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14831:12: warning: let 'pre' is not concurrency-safe because non-'Sendable' type 'PreTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let pre = PreTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14654:15: note: consider making struct 'PreTag' conform to the 'Sendable' protocol
public struct PreTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14831:12: note: annotate 'pre' with '@MainActor' if property should only be accessed from the main actor
public let pre = PreTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14831:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let pre = PreTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15023:12: warning: let 'progress' is not concurrency-safe because non-'Sendable' type 'ProgressTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let progress = ProgressTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:14834:15: note: consider making struct 'ProgressTag' conform to the 'Sendable' protocol
public struct ProgressTag: Tag {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15023:12: note: annotate 'progress' with '@MainActor' if property should only be accessed from the main actor
public let progress = ProgressTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15023:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let progress = ProgressTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15209:12: warning: let 'q' is not concurrency-safe because non-'Sendable' type 'QTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let q = QTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15026:15: note: consider making struct 'QTag' conform to the 'Sendable' protocol
public struct QTag: Tag {
              ^
                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15209:12: note: annotate 'q' with '@MainActor' if property should only be accessed from the main actor
public let q = QTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15209:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let q = QTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15389:12: warning: let 'rp' is not concurrency-safe because non-'Sendable' type 'RPTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let rp = RPTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15212:15: note: consider making struct 'RPTag' conform to the 'Sendable' protocol
public struct RPTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15389:12: note: annotate 'rp' with '@MainActor' if property should only be accessed from the main actor
public let rp = RPTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15389:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let rp = RPTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15569:12: warning: let 'rt' is not concurrency-safe because non-'Sendable' type 'RTTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let rt = RTTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15392:15: note: consider making struct 'RTTag' conform to the 'Sendable' protocol
public struct RTTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15569:12: note: annotate 'rt' with '@MainActor' if property should only be accessed from the main actor
public let rt = RTTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15569:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let rt = RTTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15749:12: warning: let 'ruby' is not concurrency-safe because non-'Sendable' type 'RubyTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let ruby = RubyTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15572:15: note: consider making struct 'RubyTag' conform to the 'Sendable' protocol
public struct RubyTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15749:12: note: annotate 'ruby' with '@MainActor' if property should only be accessed from the main actor
public let ruby = RubyTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15749:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let ruby = RubyTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15929:12: warning: let 's' is not concurrency-safe because non-'Sendable' type 'STag' may have shared mutable state; this is an error in the Swift 6 language mode
public let s = STag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15752:15: note: consider making struct 'STag' conform to the 'Sendable' protocol
public struct STag: Tag {
              ^
                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15929:12: note: annotate 's' with '@MainActor' if property should only be accessed from the main actor
public let s = STag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15929:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let s = STag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16109:12: warning: let 'samp' is not concurrency-safe because non-'Sendable' type 'SampTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let samp = SampTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:15932:15: note: consider making struct 'SampTag' conform to the 'Sendable' protocol
public struct SampTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16109:12: note: annotate 'samp' with '@MainActor' if property should only be accessed from the main actor
public let samp = SampTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16109:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let samp = SampTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16337:12: warning: let 'script' is not concurrency-safe because non-'Sendable' type 'ScriptTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let script = ScriptTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16112:15: note: consider making struct 'ScriptTag' conform to the 'Sendable' protocol
public struct ScriptTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16337:12: note: annotate 'script' with '@MainActor' if property should only be accessed from the main actor
public let script = ScriptTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16337:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let script = ScriptTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16517:12: warning: let 'section' is not concurrency-safe because non-'Sendable' type 'SectionTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let section = SectionTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16340:15: note: consider making struct 'SectionTag' conform to the 'Sendable' protocol
public struct SectionTag: Tag {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16517:12: note: annotate 'section' with '@MainActor' if property should only be accessed from the main actor
public let section = SectionTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16517:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let section = SectionTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16739:12: warning: let 'select' is not concurrency-safe because non-'Sendable' type 'SelectTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let select = SelectTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16520:15: note: consider making struct 'SelectTag' conform to the 'Sendable' protocol
public struct SelectTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16739:12: note: annotate 'select' with '@MainActor' if property should only be accessed from the main actor
public let select = SelectTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16739:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let select = SelectTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16925:12: warning: let 'slot' is not concurrency-safe because non-'Sendable' type 'SlotTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let slot = SlotTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16742:15: note: consider making struct 'SlotTag' conform to the 'Sendable' protocol
public struct SlotTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16925:12: note: annotate 'slot' with '@MainActor' if property should only be accessed from the main actor
public let slot = SlotTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16925:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let slot = SlotTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17105:12: warning: let 'small' is not concurrency-safe because non-'Sendable' type 'SmallTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let small = SmallTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:16928:15: note: consider making struct 'SmallTag' conform to the 'Sendable' protocol
public struct SmallTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17105:12: note: annotate 'small' with '@MainActor' if property should only be accessed from the main actor
public let small = SmallTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17105:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let small = SmallTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17314:12: warning: let 'source' is not concurrency-safe because non-'Sendable' type 'SourceTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let source = SourceTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17108:15: note: consider making struct 'SourceTag' conform to the 'Sendable' protocol
public struct SourceTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17314:12: note: annotate 'source' with '@MainActor' if property should only be accessed from the main actor
public let source = SourceTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17314:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let source = SourceTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17494:12: warning: let 'span' is not concurrency-safe because non-'Sendable' type 'SpanTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let span = SpanTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17317:15: note: consider making struct 'SpanTag' conform to the 'Sendable' protocol
public struct SpanTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17494:12: note: annotate 'span' with '@MainActor' if property should only be accessed from the main actor
public let span = SpanTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17494:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let span = SpanTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17674:12: warning: let 'strong' is not concurrency-safe because non-'Sendable' type 'StrongTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let strong = StrongTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17497:15: note: consider making struct 'StrongTag' conform to the 'Sendable' protocol
public struct StrongTag: Tag {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17674:12: note: annotate 'strong' with '@MainActor' if property should only be accessed from the main actor
public let strong = StrongTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17674:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let strong = StrongTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17860:12: warning: let 'style' is not concurrency-safe because non-'Sendable' type 'StyleTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let style = StyleTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17677:15: note: consider making struct 'StyleTag' conform to the 'Sendable' protocol
public struct StyleTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17860:12: note: annotate 'style' with '@MainActor' if property should only be accessed from the main actor
public let style = StyleTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17860:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let style = StyleTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18040:12: warning: let 'sub' is not concurrency-safe because non-'Sendable' type 'SubTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let sub = SubTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:17863:15: note: consider making struct 'SubTag' conform to the 'Sendable' protocol
public struct SubTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18040:12: note: annotate 'sub' with '@MainActor' if property should only be accessed from the main actor
public let sub = SubTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18040:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let sub = SubTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18220:12: warning: let 'summary' is not concurrency-safe because non-'Sendable' type 'SummaryTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let summary = SummaryTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18043:15: note: consider making struct 'SummaryTag' conform to the 'Sendable' protocol
public struct SummaryTag: Tag {
              ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18220:12: note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
public let summary = SummaryTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18220:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let summary = SummaryTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18400:12: warning: let 'sup' is not concurrency-safe because non-'Sendable' type 'SupTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let sup = SupTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18223:15: note: consider making struct 'SupTag' conform to the 'Sendable' protocol
public struct SupTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18400:12: note: annotate 'sup' with '@MainActor' if property should only be accessed from the main actor
public let sup = SupTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18400:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let sup = SupTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18580:12: warning: let 'svg' is not concurrency-safe because non-'Sendable' type 'SVGTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let svg = SVGTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18403:15: note: consider making struct 'SVGTag' conform to the 'Sendable' protocol
public struct SVGTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18580:12: note: annotate 'svg' with '@MainActor' if property should only be accessed from the main actor
public let svg = SVGTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18580:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let svg = SVGTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18760:12: warning: let 'table' is not concurrency-safe because non-'Sendable' type 'TableTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let table = TableTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18583:15: note: consider making struct 'TableTag' conform to the 'Sendable' protocol
public struct TableTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18760:12: note: annotate 'table' with '@MainActor' if property should only be accessed from the main actor
public let table = TableTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18760:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let table = TableTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18940:12: warning: let 'tbody' is not concurrency-safe because non-'Sendable' type 'TBodyTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let tbody = TBodyTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18763:15: note: consider making struct 'TBodyTag' conform to the 'Sendable' protocol
public struct TBodyTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18940:12: note: annotate 'tbody' with '@MainActor' if property should only be accessed from the main actor
public let tbody = TBodyTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18940:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let tbody = TBodyTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19138:12: warning: let 'td' is not concurrency-safe because non-'Sendable' type 'TDTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let td = TDTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:18943:15: note: consider making struct 'TDTag' conform to the 'Sendable' protocol
public struct TDTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19138:12: note: annotate 'td' with '@MainActor' if property should only be accessed from the main actor
public let td = TDTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19138:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let td = TDTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19318:12: warning: let 'template' is not concurrency-safe because non-'Sendable' type 'TemplateTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let template = TemplateTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19141:15: note: consider making struct 'TemplateTag' conform to the 'Sendable' protocol
public struct TemplateTag: Tag {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19318:12: note: annotate 'template' with '@MainActor' if property should only be accessed from the main actor
public let template = TemplateTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19318:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let template = TemplateTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19576:12: warning: let 'textarea' is not concurrency-safe because non-'Sendable' type 'TextareaTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let textarea = TextareaTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19321:15: note: consider making struct 'TextareaTag' conform to the 'Sendable' protocol
public struct TextareaTag: Tag {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19576:12: note: annotate 'textarea' with '@MainActor' if property should only be accessed from the main actor
public let textarea = TextareaTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19576:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let textarea = TextareaTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19756:12: warning: let 'tfoot' is not concurrency-safe because non-'Sendable' type 'TFootTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let tfoot = TFootTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19579:15: note: consider making struct 'TFootTag' conform to the 'Sendable' protocol
public struct TFootTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19756:12: note: annotate 'tfoot' with '@MainActor' if property should only be accessed from the main actor
public let tfoot = TFootTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19756:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let tfoot = TFootTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19966:12: warning: let 'th' is not concurrency-safe because non-'Sendable' type 'THTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let th = THTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19759:15: note: consider making struct 'THTag' conform to the 'Sendable' protocol
public struct THTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19966:12: note: annotate 'th' with '@MainActor' if property should only be accessed from the main actor
public let th = THTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19966:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let th = THTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20146:12: warning: let 'thead' is not concurrency-safe because non-'Sendable' type 'THeadTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let thead = THeadTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:19969:15: note: consider making struct 'THeadTag' conform to the 'Sendable' protocol
public struct THeadTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20146:12: note: annotate 'thead' with '@MainActor' if property should only be accessed from the main actor
public let thead = THeadTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20146:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let thead = THeadTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20332:12: warning: let 'time' is not concurrency-safe because non-'Sendable' type 'TimeTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let time = TimeTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20149:15: note: consider making struct 'TimeTag' conform to the 'Sendable' protocol
public struct TimeTag: Tag {
              ^
                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20332:12: note: annotate 'time' with '@MainActor' if property should only be accessed from the main actor
public let time = TimeTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20332:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let time = TimeTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20512:12: warning: let 'title' is not concurrency-safe because non-'Sendable' type 'TitleTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let title = TitleTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20335:15: note: consider making struct 'TitleTag' conform to the 'Sendable' protocol
public struct TitleTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20512:12: note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
public let title = TitleTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20512:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let title = TitleTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20692:12: warning: let 'tr' is not concurrency-safe because non-'Sendable' type 'TRTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let tr = TRTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20515:15: note: consider making struct 'TRTag' conform to the 'Sendable' protocol
public struct TRTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20692:12: note: annotate 'tr' with '@MainActor' if property should only be accessed from the main actor
public let tr = TRTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20692:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let tr = TRTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20901:12: warning: let 'track' is not concurrency-safe because non-'Sendable' type 'TrackTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let track = TrackTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20695:15: note: consider making struct 'TrackTag' conform to the 'Sendable' protocol
public struct TrackTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20901:12: note: annotate 'track' with '@MainActor' if property should only be accessed from the main actor
public let track = TrackTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20901:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let track = TrackTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21081:12: warning: let 'u' is not concurrency-safe because non-'Sendable' type 'UTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let u = UTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:20904:15: note: consider making struct 'UTag' conform to the 'Sendable' protocol
public struct UTag: Tag {
              ^
                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21081:12: note: annotate 'u' with '@MainActor' if property should only be accessed from the main actor
public let u = UTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21081:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let u = UTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21261:12: warning: let 'ul' is not concurrency-safe because non-'Sendable' type 'ULTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let ul = ULTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21084:15: note: consider making struct 'ULTag' conform to the 'Sendable' protocol
public struct ULTag: Tag {
              ^
                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21261:12: note: annotate 'ul' with '@MainActor' if property should only be accessed from the main actor
public let ul = ULTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21261:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let ul = ULTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21441:12: warning: let 'var' is not concurrency-safe because non-'Sendable' type 'VarTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let `var` = VarTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21264:15: note: consider making struct 'VarTag' conform to the 'Sendable' protocol
public struct VarTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21441:12: note: annotate 'var' with '@MainActor' if property should only be accessed from the main actor
public let `var` = VarTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21441:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let `var` = VarTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21687:12: warning: let 'video' is not concurrency-safe because non-'Sendable' type 'VideoTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let video = VideoTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21444:15: note: consider making struct 'VideoTag' conform to the 'Sendable' protocol
public struct VideoTag: Tag {
              ^
                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21687:12: note: annotate 'video' with '@MainActor' if property should only be accessed from the main actor
public let video = VideoTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21687:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let video = VideoTag()
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21866:12: warning: let 'wbr' is not concurrency-safe because non-'Sendable' type 'WBRTag' may have shared mutable state; this is an error in the Swift 6 language mode
public let wbr = WBRTag()
           ^
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21690:15: note: consider making struct 'WBRTag' conform to the 'Sendable' protocol
public struct WBRTag: Tag {
              ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21866:12: note: annotate 'wbr' with '@MainActor' if property should only be accessed from the main actor
public let wbr = WBRTag()
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTML/Tags.swift:21866:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let wbr = WBRTag()
           ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Node.swift (in target 'Swim' from project 'HTML')
SwiftDriverJobDiscovery normal arm64 Compiling Visitor.swift (in target 'Swim' from project 'HTML')
SwiftDriverJobDiscovery normal arm64 Compiling Trimming.swift (in target 'Swim' from project 'HTML')
SwiftDriver\ Compilation Swim normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Swim' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Swim -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/arm64/Swim.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/arm64/Swim-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/arm64/Swim.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/arm64/Swim_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/arm64/Swim-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/arm64/Binary/Swim.o normal arm64 (in target 'Swim' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos7.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/arm64/Swim.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/arm64/Swim_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/arm64/Swim.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/arm64/Swim_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/arm64/Binary/Swim.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Swim.o normal arm64\ armv7k\ arm64_32 (in target 'Swim' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/arm64/Binary/Swim.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/armv7k/Binary/Swim.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/Swim.build/Objects-normal/arm64_32/Binary/Swim.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Swim.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Swim.o (in target 'Swim' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Swim.o
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.LinkFileList (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.LinkFileList (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.LinkFileList (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.LinkFileList
SwiftDriverJobDiscovery normal arm64 Compiling Tag.swift (in target 'HTML' from project 'HTML')
SwiftDriverJobDiscovery normal arm64_32 Compiling Tag.swift (in target 'HTML' from project 'HTML')
SwiftDriverJobDiscovery normal armv7k Emitting module for HTML (in target 'HTML' from project 'HTML')
SwiftDriver\ Compilation\ Requirements HTML normal armv7k com.apple.xcode.tools.swift.compiler (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name HTML -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.abi.json (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.swiftdoc (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.swiftmodule (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.swiftsourceinfo (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Emitting module for HTML (in target 'HTML' from project 'HTML')
SwiftDriver\ Compilation\ Requirements HTML normal arm64 com.apple.xcode.tools.swift.compiler (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name HTML -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.swiftmodule (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.swiftdoc (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.abi.json (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.swiftsourceinfo (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64_32 Emitting module for HTML (in target 'HTML' from project 'HTML')
SwiftDriver\ Compilation\ Requirements HTML normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name HTML -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64_32-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/HTML-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML-Swift.h (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/HTML-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.swiftmodule (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.swiftdoc (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.abi.json (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.swiftsourceinfo (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal armv7k Compiling Tags.swift (in target 'HTML' from project 'HTML')
SwiftDriver\ Compilation HTML normal armv7k com.apple.xcode.tools.swift.compiler (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name HTML -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/Binary/HTML.o normal armv7k (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos7.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/HTML_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/Binary/HTML.o
SwiftDriverJobDiscovery normal arm64 Compiling Tags.swift (in target 'HTML' from project 'HTML')
SwiftDriver\ Compilation HTML normal arm64 com.apple.xcode.tools.swift.compiler (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name HTML -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Binary/HTML.o normal arm64 (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos7.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/HTML_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Binary/HTML.o
SwiftDriverJobDiscovery normal arm64_32 Compiling Tags.swift (in target 'HTML' from project 'HTML')
SwiftDriver\ Compilation HTML normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name HTML -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64_32-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Binary/HTML.o normal arm64_32 (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos7.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/HTML_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Binary/HTML.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.o normal arm64\ armv7k\ arm64_32 (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64/Binary/HTML.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/armv7k/Binary/HTML.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTML.build/Debug-watchos/HTML.build/Objects-normal/arm64_32/Binary/HTML.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.o (in target 'HTML' from project 'HTML')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/HTML.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Swim' from project 'HTML')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'HTML' from project 'HTML')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'HTML' from project 'HTML')
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "HTML",
  "name" : "HTML",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "HTML",
      "targets" : [
        "HTML"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Swim",
      "targets" : [
        "Swim"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwimTests",
      "module_type" : "SwiftTarget",
      "name" : "SwimTests",
      "path" : "Tests/SwimTests",
      "sources" : [
        "SwimTests.swift"
      ],
      "target_dependencies" : [
        "HTML"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Swim",
      "module_type" : "SwiftTarget",
      "name" : "Swim",
      "path" : "Sources/Swim",
      "product_memberships" : [
        "HTML",
        "Swim"
      ],
      "sources" : [
        "Node.swift",
        "NodeBuilder.swift",
        "String+XML.swift",
        "Trimming.swift",
        "Visitor.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HTMLTests",
      "module_type" : "SwiftTarget",
      "name" : "HTMLTests",
      "path" : "Tests/HTMLTests",
      "sources" : [
        "HTMLTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "HTML"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HTML",
      "module_type" : "SwiftTarget",
      "name" : "HTML",
      "path" : "Sources/HTML",
      "product_memberships" : [
        "HTML"
      ],
      "sources" : [
        "Tag.swift",
        "Tags.swift"
      ],
      "target_dependencies" : [
        "Swim"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.4"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.