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, reference 0.4.0 (a0943e), with Swift 6.0 for Linux on 28 Nov 2024 13:33:00 UTC.

Swift 6 data race errors: 114

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 3476 |
 3477 |
/host/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
 3476 |
 3477 |
 3478 | public struct CodeTag: Tag {
      |               `- note: consider making struct 'CodeTag' conform to the 'Sendable' protocol
 3479 |     public let elementName: String = "code"
 3480 |
      :
 3653 | }
 3654 |
 3655 | public let code = CodeTag()
      |            |- 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
      |            |- note: annotate 'code' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 3656 |
 3657 |
/host/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
 3656 |
 3657 |
 3658 | public struct ColTag: Tag {
      |               `- note: consider making struct 'ColTag' conform to the 'Sendable' protocol
 3659 |     public let elementName: String = "col"
 3660 |
      :
 3838 | }
 3839 |
 3840 | public let col = ColTag()
      |            |- 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
      |            |- note: annotate 'col' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 3841 |
 3842 |
/host/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
 3841 |
 3842 |
 3843 | public struct ColgroupTag: Tag {
      |               `- note: consider making struct 'ColgroupTag' conform to the 'Sendable' protocol
 3844 |     public let elementName: String = "colgroup"
 3845 |
      :
 4024 | }
 4025 |
 4026 | public let colgroup = ColgroupTag()
      |            |- 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
      |            |- note: annotate 'colgroup' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 4027 |
 4028 |
/host/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
 4027 |
 4028 |
 4029 | public struct DataTag: Tag {
      |               `- note: consider making struct 'DataTag' conform to the 'Sendable' protocol
 4030 |     public let elementName: String = "data"
 4031 |
      :
 4210 | }
 4211 |
 4212 | public let data = DataTag()
      |            |- 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
      |            |- note: annotate 'data' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 4213 |
 4214 |
/host/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
 4213 |
 4214 |
 4215 | public struct DatalistTag: Tag {
      |               `- note: consider making struct 'DatalistTag' conform to the 'Sendable' protocol
 4216 |     public let elementName: String = "datalist"
 4217 |
      :
 4390 | }
 4391 |
 4392 | public let datalist = DatalistTag()
      |            |- 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
      |            |- note: annotate 'datalist' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 4393 |
 4394 |
/host/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
 4393 |
 4394 |
 4395 | public struct DDTag: Tag {
      |               `- note: consider making struct 'DDTag' conform to the 'Sendable' protocol
 4396 |     public let elementName: String = "dd"
 4397 |
      :
 4570 | }
 4571 |
 4572 | public let dd = DDTag()
      |            |- 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
      |            |- note: annotate 'dd' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 4573 |
 4574 |
/host/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
 4573 |
 4574 |
 4575 | public struct DelTag: Tag {
      |               `- note: consider making struct 'DelTag' conform to the 'Sendable' protocol
 4576 |     public let elementName: String = "del"
 4577 |
      :
 4762 | }
 4763 |
 4764 | public let del = DelTag()
      |            |- 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
      |            |- note: annotate 'del' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 4765 |
 4766 |
/host/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
 4765 |
 4766 |
 4767 | public struct DetailsTag: Tag {
      |               `- note: consider making struct 'DetailsTag' conform to the 'Sendable' protocol
 4768 |     public let elementName: String = "details"
 4769 |
      :
 4948 | }
 4949 |
 4950 | public let details = DetailsTag()
      |            |- 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
      |            |- note: annotate 'details' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 4951 |
 4952 |
/host/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
 4951 |
 4952 |
 4953 | public struct DFNTag: Tag {
      |               `- note: consider making struct 'DFNTag' conform to the 'Sendable' protocol
 4954 |     public let elementName: String = "dfn"
 4955 |
      :
 5128 | }
 5129 |
 5130 | public let dfn = DFNTag()
      |            |- 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
      |            |- note: annotate 'dfn' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5131 |
 5132 |
/host/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
 5131 |
 5132 |
 5133 | public struct DialogTag: Tag {
      |               `- note: consider making struct 'DialogTag' conform to the 'Sendable' protocol
 5134 |     public let elementName: String = "dialog"
 5135 |
      :
 5314 | }
 5315 |
 5316 | public let dialog = DialogTag()
      |            |- 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
      |            |- note: annotate 'dialog' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5317 |
 5318 |
/host/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
 5317 |
 5318 |
 5319 | public struct DivTag: Tag {
      |               `- note: consider making struct 'DivTag' conform to the 'Sendable' protocol
 5320 |     public let elementName: String = "div"
 5321 |
      :
 5494 | }
 5495 |
 5496 | public let div = DivTag()
      |            |- 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
      |            |- note: annotate 'div' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5497 |
 5498 |
/host/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
 5497 |
 5498 |
 5499 | public struct DLTag: Tag {
      |               `- note: consider making struct 'DLTag' conform to the 'Sendable' protocol
 5500 |     public let elementName: String = "dl"
 5501 |
      :
 5674 | }
 5675 |
 5676 | public let dl = DLTag()
      |            |- 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
      |            |- note: annotate 'dl' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5677 |
 5678 |
/host/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
 5677 |
 5678 |
 5679 | public struct DTTag: Tag {
      |               `- note: consider making struct 'DTTag' conform to the 'Sendable' protocol
 5680 |     public let elementName: String = "dt"
 5681 |
      :
 5854 | }
 5855 |
 5856 | public let dt = DTTag()
      |            |- 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
      |            |- note: annotate 'dt' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5857 |
 5858 |
/host/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
 5857 |
 5858 |
 5859 | public struct EmTag: Tag {
      |               `- note: consider making struct 'EmTag' conform to the 'Sendable' protocol
 5860 |     public let elementName: String = "em"
 5861 |
      :
 6034 | }
 6035 |
 6036 | public let em = EmTag()
      |            |- 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
      |            |- note: annotate 'em' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6037 |
 6038 |
/host/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
 6037 |
 6038 |
 6039 | public struct EmbedTag: Tag {
      |               `- note: consider making struct 'EmbedTag' conform to the 'Sendable' protocol
 6040 |     public let elementName: String = "embed"
 6041 |
      :
 6237 | }
 6238 |
 6239 | public let embed = EmbedTag()
      |            |- 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
      |            |- note: annotate 'embed' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6240 |
 6241 |
/host/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
 6240 |
 6241 |
 6242 | public struct FieldsetTag: Tag {
      |               `- note: consider making struct 'FieldsetTag' conform to the 'Sendable' protocol
 6243 |     public let elementName: String = "fieldset"
 6244 |
      :
 6435 | }
 6436 |
 6437 | public let fieldset = FieldsetTag()
      |            |- 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
      |            |- note: annotate 'fieldset' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6438 |
 6439 |
/host/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
 6438 |
 6439 |
 6440 | public struct FigcaptionTag: Tag {
      |               `- note: consider making struct 'FigcaptionTag' conform to the 'Sendable' protocol
 6441 |     public let elementName: String = "figcaption"
 6442 |
      :
 6615 | }
 6616 |
 6617 | public let figcaption = FigcaptionTag()
      |            |- 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
      |            |- note: annotate 'figcaption' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6618 |
 6619 |
/host/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
 6618 |
 6619 |
 6620 | public struct FigureTag: Tag {
      |               `- note: consider making struct 'FigureTag' conform to the 'Sendable' protocol
 6621 |     public let elementName: String = "figure"
 6622 |
      :
 6795 | }
 6796 |
 6797 | public let figure = FigureTag()
      |            |- 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
      |            |- note: annotate 'figure' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6798 |
 6799 |
/host/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
 6798 |
 6799 |
 6800 | public struct FooterTag: Tag {
      |               `- note: consider making struct 'FooterTag' conform to the 'Sendable' protocol
 6801 |     public let elementName: String = "footer"
 6802 |
      :
 6975 | }
 6976 |
 6977 | public let footer = FooterTag()
      |            |- 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
      |            |- note: annotate 'footer' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6978 |
 6979 |
/host/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
 6978 |
 6979 |
 6980 | public struct FormTag: Tag {
      |               `- note: consider making struct 'FormTag' conform to the 'Sendable' protocol
 6981 |     public let elementName: String = "form"
 6982 |
      :
 7203 | }
 7204 |
 7205 | public let form = FormTag()
      |            |- 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
      |            |- note: annotate 'form' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7206 |
 7207 |
/host/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
 7206 |
 7207 |
 7208 | public struct H1Tag: Tag {
      |               `- note: consider making struct 'H1Tag' conform to the 'Sendable' protocol
 7209 |     public let elementName: String = "h1"
 7210 |
      :
 7383 | }
 7384 |
 7385 | public let h1 = H1Tag()
      |            |- 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
      |            |- note: annotate 'h1' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7386 |
 7387 |
/host/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
 7386 |
 7387 |
 7388 | public struct H2Tag: Tag {
      |               `- note: consider making struct 'H2Tag' conform to the 'Sendable' protocol
 7389 |     public let elementName: String = "h2"
 7390 |
      :
 7563 | }
 7564 |
 7565 | public let h2 = H2Tag()
      |            |- 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
      |            |- note: annotate 'h2' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7566 |
 7567 |
/host/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
 7566 |
 7567 |
 7568 | public struct H3Tag: Tag {
      |               `- note: consider making struct 'H3Tag' conform to the 'Sendable' protocol
 7569 |     public let elementName: String = "h3"
 7570 |
      :
 7743 | }
 7744 |
 7745 | public let h3 = H3Tag()
      |            |- 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
      |            |- note: annotate 'h3' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7746 |
 7747 |
/host/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
 7746 |
 7747 |
 7748 | public struct H4Tag: Tag {
      |               `- note: consider making struct 'H4Tag' conform to the 'Sendable' protocol
 7749 |     public let elementName: String = "h4"
 7750 |
      :
 7923 | }
 7924 |
 7925 | public let h4 = H4Tag()
      |            |- 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
      |            |- note: annotate 'h4' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7926 |
 7927 |
/host/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
 7926 |
 7927 |
 7928 | public struct H5Tag: Tag {
      |               `- note: consider making struct 'H5Tag' conform to the 'Sendable' protocol
 7929 |     public let elementName: String = "h5"
 7930 |
      :
 8103 | }
 8104 |
 8105 | public let h5 = H5Tag()
      |            |- 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
      |            |- note: annotate 'h5' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8106 |
 8107 |
/host/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
 8106 |
 8107 |
 8108 | public struct H6Tag: Tag {
      |               `- note: consider making struct 'H6Tag' conform to the 'Sendable' protocol
 8109 |     public let elementName: String = "h6"
 8110 |
      :
 8283 | }
 8284 |
 8285 | public let h6 = H6Tag()
      |            |- 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
      |            |- note: annotate 'h6' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8286 |
 8287 |
/host/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
 8286 |
 8287 |
 8288 | public struct HeadTag: Tag {
      |               `- note: consider making struct 'HeadTag' conform to the 'Sendable' protocol
 8289 |     public let elementName: String = "head"
 8290 |
      :
 8463 | }
 8464 |
 8465 | public let head = HeadTag()
      |            |- 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
      |            |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8466 |
 8467 |
/host/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
 8466 |
 8467 |
 8468 | public struct HeaderTag: Tag {
      |               `- note: consider making struct 'HeaderTag' conform to the 'Sendable' protocol
 8469 |     public let elementName: String = "header"
 8470 |
      :
 8643 | }
 8644 |
 8645 | public let header = HeaderTag()
      |            |- 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
      |            |- note: annotate 'header' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8646 |
 8647 |
/host/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
 8646 |
 8647 |
 8648 | public struct HgroupTag: Tag {
      |               `- note: consider making struct 'HgroupTag' conform to the 'Sendable' protocol
 8649 |     public let elementName: String = "hgroup"
 8650 |
      :
 8823 | }
 8824 |
 8825 | public let hgroup = HgroupTag()
      |            |- 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
      |            |- note: annotate 'hgroup' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8826 |
 8827 |
/host/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
 8826 |
 8827 |
 8828 | public struct HRTag: Tag {
      |               `- note: consider making struct 'HRTag' conform to the 'Sendable' protocol
 8829 |     public let elementName: String = "hr"
 8830 |
      :
 9002 | }
 9003 |
 9004 | public let hr = HRTag()
      |            |- 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
      |            |- note: annotate 'hr' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9005 |
 9006 |
/host/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
 9005 |
 9006 |
 9007 | public struct HTMLTag: Tag {
      |               `- note: consider making struct 'HTMLTag' conform to the 'Sendable' protocol
 9008 |     public let elementName: String = "html"
 9009 |
      :
 9188 | }
 9189 |
 9190 | public let html = HTMLTag()
      |            |- 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
      |            |- note: annotate 'html' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9191 |
 9192 |
/host/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
 9191 |
 9192 |
 9193 | public struct ITag: Tag {
      |               `- note: consider making struct 'ITag' conform to the 'Sendable' protocol
 9194 |     public let elementName: String = "i"
 9195 |
      :
 9368 | }
 9369 |
 9370 | public let i = ITag()
      |            |- 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
      |            |- note: annotate 'i' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9371 |
 9372 |
/host/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
 9371 |
 9372 |
 9373 | public struct IFrameTag: Tag {
      |               `- note: consider making struct 'IFrameTag' conform to the 'Sendable' protocol
 9374 |     public let elementName: String = "iframe"
 9375 |
      :
 9608 | }
 9609 |
 9610 | public let iframe = IFrameTag()
      |            |- 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
      |            |- note: annotate 'iframe' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9611 |
 9612 |
/host/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
 9611 |
 9612 |
 9613 | public struct ImgTag: Tag {
      |               `- note: consider making struct 'ImgTag' conform to the 'Sendable' protocol
 9614 |     public let elementName: String = "img"
 9615 |
      :
 9859 | }
 9860 |
 9861 | public let img = ImgTag()
      |            |- 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
      |            |- note: annotate 'img' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9862 |
 9863 |
/host/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
 9862 |
 9863 |
 9864 | public struct InputTag: Tag {
      |               `- note: consider making struct 'InputTag' conform to the 'Sendable' protocol
 9865 |     public let elementName: String = "input"
 9866 |
      :
10218 | }
10219 |
10220 | public let input = InputTag()
      |            |- 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
      |            |- note: annotate 'input' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10221 |
10222 |
/host/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
10221 |
10222 |
10223 | public struct InsTag: Tag {
      |               `- note: consider making struct 'InsTag' conform to the 'Sendable' protocol
10224 |     public let elementName: String = "ins"
10225 |
      :
10410 | }
10411 |
10412 | public let ins = InsTag()
      |            |- 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
      |            |- note: annotate 'ins' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10413 |
10414 |
/host/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
10413 |
10414 |
10415 | public struct KBDTag: Tag {
      |               `- note: consider making struct 'KBDTag' conform to the 'Sendable' protocol
10416 |     public let elementName: String = "kbd"
10417 |
      :
10590 | }
10591 |
10592 | public let kbd = KBDTag()
      |            |- 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
      |            |- note: annotate 'kbd' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10593 |
10594 |
/host/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
10593 |
10594 |
10595 | public struct LabelTag: Tag {
      |               `- note: consider making struct 'LabelTag' conform to the 'Sendable' protocol
10596 |     public let elementName: String = "label"
10597 |
      :
10776 | }
10777 |
10778 | public let label = LabelTag()
      |            |- 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
      |            |- note: annotate 'label' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10779 |
10780 |
/host/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
10779 |
10780 |
10781 | public struct legendTag: Tag {
      |               `- note: consider making struct 'legendTag' conform to the 'Sendable' protocol
10782 |     public let elementName: String = "legend"
10783 |
      :
10956 | }
10957 |
10958 | public let legend = legendTag()
      |            |- 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
      |            |- note: annotate 'legend' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10959 |
10960 |
/host/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
10959 |
10960 |
10961 | public struct LITag: Tag {
      |               `- note: consider making struct 'LITag' conform to the 'Sendable' protocol
10962 |     public let elementName: String = "li"
10963 |
      :
11142 | }
11143 |
11144 | public let li = LITag()
      |            |- 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
      |            |- note: annotate 'li' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11145 |
11146 |
/host/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
11145 |
11146 |
11147 | public struct LinkTag: Tag {
      |               `- note: consider making struct 'LinkTag' conform to the 'Sendable' protocol
11148 |     public let elementName: String = "link"
11149 |
      :
11399 | }
11400 |
11401 | public let link = LinkTag()
      |            |- 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
      |            |- note: annotate 'link' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11402 |
11403 |
/host/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
11402 |
11403 |
11404 | public struct MainTag: Tag {
      |               `- note: consider making struct 'MainTag' conform to the 'Sendable' protocol
11405 |     public let elementName: String = "main"
11406 |
      :
11579 | }
11580 |
11581 | public let main = MainTag()
      |            |- 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
      |            |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11582 |
11583 |
/host/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
11582 |
11583 |
11584 | public struct MapTag: Tag {
      |               `- note: consider making struct 'MapTag' conform to the 'Sendable' protocol
11585 |     public let elementName: String = "map"
11586 |
      :
11765 | }
11766 |
11767 | public let map = MapTag()
      |            |- 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
      |            |- note: annotate 'map' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11768 |
11769 |
/host/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
11768 |
11769 |
11770 | public struct MarkTag: Tag {
      |               `- note: consider making struct 'MarkTag' conform to the 'Sendable' protocol
11771 |     public let elementName: String = "mark"
11772 |
      :
11945 | }
11946 |
11947 | public let mark = MarkTag()
      |            |- 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
      |            |- note: annotate 'mark' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11948 |
11949 |
/host/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
11948 |
11949 |
11950 | public struct MathTag: Tag {
      |               `- note: consider making struct 'MathTag' conform to the 'Sendable' protocol
11951 |     public let elementName: String = "math"
11952 |
      :
12125 | }
12126 |
12127 | public let math = MathTag()
      |            |- 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
      |            |- note: annotate 'math' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12128 |
12129 |
/host/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
12128 |
12129 |
12130 | public struct MenuTag: Tag {
      |               `- note: consider making struct 'MenuTag' conform to the 'Sendable' protocol
12131 |     public let elementName: String = "menu"
12132 |
      :
12305 | }
12306 |
12307 | public let menu = MenuTag()
      |            |- 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
      |            |- note: annotate 'menu' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12308 |
12309 |
/host/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
12308 |
12309 |
12310 | public struct MetaTag: Tag {
      |               `- note: consider making struct 'MetaTag' conform to the 'Sendable' protocol
12311 |     public let elementName: String = "meta"
12312 |
      :
12508 | }
12509 |
12510 | public let meta = MetaTag()
      |            |- 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
      |            |- note: annotate 'meta' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12511 |
12512 |
/host/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
12511 |
12512 |
12513 | public struct MeterTag: Tag {
      |               `- note: consider making struct 'MeterTag' conform to the 'Sendable' protocol
12514 |     public let elementName: String = "meter"
12515 |
      :
12724 | }
12725 |
12726 | public let meter = MeterTag()
      |            |- 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
      |            |- note: annotate 'meter' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12727 |
12728 |
/host/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
12727 |
12728 |
12729 | public struct NavTag: Tag {
      |               `- note: consider making struct 'NavTag' conform to the 'Sendable' protocol
12730 |     public let elementName: String = "nav"
12731 |
      :
12904 | }
12905 |
12906 | public let nav = NavTag()
      |            |- 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
      |            |- note: annotate 'nav' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12907 |
12908 |
/host/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
12907 |
12908 |
12909 | public struct NoscriptTag: Tag {
      |               `- note: consider making struct 'NoscriptTag' conform to the 'Sendable' protocol
12910 |     public let elementName: String = "noscript"
12911 |
      :
13084 | }
13085 |
13086 | public let noscript = NoscriptTag()
      |            |- 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
      |            |- note: annotate 'noscript' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13087 |
13088 |
/host/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
13087 |
13088 |
13089 | public struct ObjectTag: Tag {
      |               `- note: consider making struct 'ObjectTag' conform to the 'Sendable' protocol
13090 |     public let elementName: String = "object"
13091 |
      :
13306 | }
13307 |
13308 | public let object = ObjectTag()
      |            |- 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
      |            |- note: annotate 'object' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13309 |
13310 |
/host/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
13309 |
13310 |
13311 | public struct OLTag: Tag {
      |               `- note: consider making struct 'OLTag' conform to the 'Sendable' protocol
13312 |     public let elementName: String = "ol"
13313 |
      :
13504 | }
13505 |
13506 | public let ol = OLTag()
      |            |- 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
      |            |- note: annotate 'ol' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13507 |
13508 |
/host/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
13507 |
13508 |
13509 | public struct OptgroupTag: Tag {
      |               `- note: consider making struct 'OptgroupTag' conform to the 'Sendable' protocol
13510 |     public let elementName: String = "optgroup"
13511 |
      :
13696 | }
13697 |
13698 | public let optgroup = OptgroupTag()
      |            |- 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
      |            |- note: annotate 'optgroup' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13699 |
13700 |
/host/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
13699 |
13700 |
13701 | public struct OptionTag: Tag {
      |               `- note: consider making struct 'OptionTag' conform to the 'Sendable' protocol
13702 |     public let elementName: String = "option"
13703 |
      :
13900 | }
13901 |
13902 | public let option = OptionTag()
      |            |- 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
      |            |- note: annotate 'option' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13903 |
13904 |
/host/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
13903 |
13904 |
13905 | public struct OutputTag: Tag {
      |               `- note: consider making struct 'OutputTag' conform to the 'Sendable' protocol
13906 |     public let elementName: String = "output"
13907 |
      :
14098 | }
14099 |
14100 | public let output = OutputTag()
      |            |- 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
      |            |- note: annotate 'output' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14101 |
14102 |
/host/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
14101 |
14102 |
14103 | public struct PTag: Tag {
      |               `- note: consider making struct 'PTag' conform to the 'Sendable' protocol
14104 |     public let elementName: String = "p"
14105 |
      :
14278 | }
14279 |
14280 | public let p = PTag()
      |            |- 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
      |            |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14281 |
14282 |
/host/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
14281 |
14282 |
14283 | public struct ParamTag: Tag {
      |               `- note: consider making struct 'ParamTag' conform to the 'Sendable' protocol
14284 |     public let elementName: String = "param"
14285 |
      :
14469 | }
14470 |
14471 | public let param = ParamTag()
      |            |- 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
      |            |- note: annotate 'param' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14472 |
14473 |
/host/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
14472 |
14473 |
14474 | public struct PictureTag: Tag {
      |               `- note: consider making struct 'PictureTag' conform to the 'Sendable' protocol
14475 |     public let elementName: String = "picture"
14476 |
      :
14649 | }
14650 |
14651 | public let picture = PictureTag()
      |            |- 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
      |            |- note: annotate 'picture' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14652 |
14653 |
/host/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
14652 |
14653 |
14654 | public struct PreTag: Tag {
      |               `- note: consider making struct 'PreTag' conform to the 'Sendable' protocol
14655 |     public let elementName: String = "pre"
14656 |
      :
14829 | }
14830 |
14831 | public let pre = PreTag()
      |            |- 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
      |            |- note: annotate 'pre' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14832 |
14833 |
/host/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
14832 |
14833 |
14834 | public struct ProgressTag: Tag {
      |               `- note: consider making struct 'ProgressTag' conform to the 'Sendable' protocol
14835 |     public let elementName: String = "progress"
14836 |
      :
15021 | }
15022 |
15023 | public let progress = ProgressTag()
      |            |- 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
      |            |- note: annotate 'progress' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15024 |
15025 |
/host/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
15024 |
15025 |
15026 | public struct QTag: Tag {
      |               `- note: consider making struct 'QTag' conform to the 'Sendable' protocol
15027 |     public let elementName: String = "q"
15028 |
      :
15207 | }
15208 |
15209 | public let q = QTag()
      |            |- 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
      |            |- note: annotate 'q' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15210 |
15211 |
/host/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
15210 |
15211 |
15212 | public struct RPTag: Tag {
      |               `- note: consider making struct 'RPTag' conform to the 'Sendable' protocol
15213 |     public let elementName: String = "rp"
15214 |
      :
15387 | }
15388 |
15389 | public let rp = RPTag()
      |            |- 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
      |            |- note: annotate 'rp' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15390 |
15391 |
/host/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
15390 |
15391 |
15392 | public struct RTTag: Tag {
      |               `- note: consider making struct 'RTTag' conform to the 'Sendable' protocol
15393 |     public let elementName: String = "rt"
15394 |
      :
15567 | }
15568 |
15569 | public let rt = RTTag()
      |            |- 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
      |            |- note: annotate 'rt' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15570 |
15571 |
/host/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
15570 |
15571 |
15572 | public struct RubyTag: Tag {
      |               `- note: consider making struct 'RubyTag' conform to the 'Sendable' protocol
15573 |     public let elementName: String = "ruby"
15574 |
      :
15747 | }
15748 |
15749 | public let ruby = RubyTag()
      |            |- 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
      |            |- note: annotate 'ruby' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15750 |
15751 |
/host/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
15750 |
15751 |
15752 | public struct STag: Tag {
      |               `- note: consider making struct 'STag' conform to the 'Sendable' protocol
15753 |     public let elementName: String = "s"
15754 |
      :
15927 | }
15928 |
15929 | public let s = STag()
      |            |- 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
      |            |- note: annotate 's' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15930 |
15931 |
/host/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
15930 |
15931 |
15932 | public struct SampTag: Tag {
      |               `- note: consider making struct 'SampTag' conform to the 'Sendable' protocol
15933 |     public let elementName: String = "samp"
15934 |
      :
16107 | }
16108 |
16109 | public let samp = SampTag()
      |            |- 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
      |            |- note: annotate 'samp' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16110 |
16111 |
/host/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
16110 |
16111 |
16112 | public struct ScriptTag: Tag {
      |               `- note: consider making struct 'ScriptTag' conform to the 'Sendable' protocol
16113 |     public let elementName: String = "script"
16114 |
      :
16335 | }
16336 |
16337 | public let script = ScriptTag()
      |            |- 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
      |            |- note: annotate 'script' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16338 |
16339 |
/host/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
16338 |
16339 |
16340 | public struct SectionTag: Tag {
      |               `- note: consider making struct 'SectionTag' conform to the 'Sendable' protocol
16341 |     public let elementName: String = "section"
16342 |
      :
16515 | }
16516 |
16517 | public let section = SectionTag()
      |            |- 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
      |            |- note: annotate 'section' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16518 |
16519 |
/host/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
16518 |
16519 |
16520 | public struct SelectTag: Tag {
      |               `- note: consider making struct 'SelectTag' conform to the 'Sendable' protocol
16521 |     public let elementName: String = "select"
16522 |
      :
16737 | }
16738 |
16739 | public let select = SelectTag()
      |            |- 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
      |            |- note: annotate 'select' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16740 |
16741 |
/host/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
16740 |
16741 |
16742 | public struct SlotTag: Tag {
      |               `- note: consider making struct 'SlotTag' conform to the 'Sendable' protocol
16743 |     public let elementName: String = "slot"
16744 |
      :
16923 | }
16924 |
16925 | public let slot = SlotTag()
      |            |- 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
      |            |- note: annotate 'slot' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16926 |
16927 |
/host/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
16926 |
16927 |
16928 | public struct SmallTag: Tag {
      |               `- note: consider making struct 'SmallTag' conform to the 'Sendable' protocol
16929 |     public let elementName: String = "small"
16930 |
      :
17103 | }
17104 |
17105 | public let small = SmallTag()
      |            |- 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
      |            |- note: annotate 'small' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17106 |
17107 |
/host/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
17106 |
17107 |
17108 | public struct SourceTag: Tag {
      |               `- note: consider making struct 'SourceTag' conform to the 'Sendable' protocol
17109 |     public let elementName: String = "source"
17110 |
      :
17312 | }
17313 |
17314 | public let source = SourceTag()
      |            |- 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
      |            |- note: annotate 'source' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17315 |
17316 |
/host/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
17315 |
17316 |
17317 | public struct SpanTag: Tag {
      |               `- note: consider making struct 'SpanTag' conform to the 'Sendable' protocol
17318 |     public let elementName: String = "span"
17319 |
      :
17492 | }
17493 |
17494 | public let span = SpanTag()
      |            |- 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
      |            |- note: annotate 'span' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17495 |
17496 |
/host/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
17495 |
17496 |
17497 | public struct StrongTag: Tag {
      |               `- note: consider making struct 'StrongTag' conform to the 'Sendable' protocol
17498 |     public let elementName: String = "strong"
17499 |
      :
17672 | }
17673 |
17674 | public let strong = StrongTag()
      |            |- 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
      |            |- note: annotate 'strong' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17675 |
17676 |
/host/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
17675 |
17676 |
17677 | public struct StyleTag: Tag {
      |               `- note: consider making struct 'StyleTag' conform to the 'Sendable' protocol
17678 |     public let elementName: String = "style"
17679 |
      :
17858 | }
17859 |
17860 | public let style = StyleTag()
      |            |- 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
      |            |- note: annotate 'style' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17861 |
17862 |
/host/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
17861 |
17862 |
17863 | public struct SubTag: Tag {
      |               `- note: consider making struct 'SubTag' conform to the 'Sendable' protocol
17864 |     public let elementName: String = "sub"
17865 |
      :
18038 | }
18039 |
18040 | public let sub = SubTag()
      |            |- 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
      |            |- note: annotate 'sub' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18041 |
18042 |
/host/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
18041 |
18042 |
18043 | public struct SummaryTag: Tag {
      |               `- note: consider making struct 'SummaryTag' conform to the 'Sendable' protocol
18044 |     public let elementName: String = "summary"
18045 |
      :
18218 | }
18219 |
18220 | public let summary = SummaryTag()
      |            |- 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
      |            |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18221 |
18222 |
/host/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
18221 |
18222 |
18223 | public struct SupTag: Tag {
      |               `- note: consider making struct 'SupTag' conform to the 'Sendable' protocol
18224 |     public let elementName: String = "sup"
18225 |
      :
18398 | }
18399 |
18400 | public let sup = SupTag()
      |            |- 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
      |            |- note: annotate 'sup' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18401 |
18402 |
/host/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
18401 |
18402 |
18403 | public struct SVGTag: Tag {
      |               `- note: consider making struct 'SVGTag' conform to the 'Sendable' protocol
18404 |     public let elementName: String = "svg"
18405 |
      :
18578 | }
18579 |
18580 | public let svg = SVGTag()
      |            |- 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
      |            |- note: annotate 'svg' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18581 |
18582 |
/host/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
18581 |
18582 |
18583 | public struct TableTag: Tag {
      |               `- note: consider making struct 'TableTag' conform to the 'Sendable' protocol
18584 |     public let elementName: String = "table"
18585 |
      :
18758 | }
18759 |
18760 | public let table = TableTag()
      |            |- 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
      |            |- note: annotate 'table' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18761 |
18762 |
/host/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
18761 |
18762 |
18763 | public struct TBodyTag: Tag {
      |               `- note: consider making struct 'TBodyTag' conform to the 'Sendable' protocol
18764 |     public let elementName: String = "tbody"
18765 |
      :
18938 | }
18939 |
18940 | public let tbody = TBodyTag()
      |            |- 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
      |            |- note: annotate 'tbody' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18941 |
18942 |
/host/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
18941 |
18942 |
18943 | public struct TDTag: Tag {
      |               `- note: consider making struct 'TDTag' conform to the 'Sendable' protocol
18944 |     public let elementName: String = "td"
18945 |
      :
19136 | }
19137 |
19138 | public let td = TDTag()
      |            |- 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
      |            |- note: annotate 'td' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19139 |
19140 |
/host/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
19139 |
19140 |
19141 | public struct TemplateTag: Tag {
      |               `- note: consider making struct 'TemplateTag' conform to the 'Sendable' protocol
19142 |     public let elementName: String = "template"
19143 |
      :
19316 | }
19317 |
19318 | public let template = TemplateTag()
      |            |- 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
      |            |- note: annotate 'template' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19319 |
19320 |
/host/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
19319 |
19320 |
19321 | public struct TextareaTag: Tag {
      |               `- note: consider making struct 'TextareaTag' conform to the 'Sendable' protocol
19322 |     public let elementName: String = "textarea"
19323 |
      :
19574 | }
19575 |
19576 | public let textarea = TextareaTag()
      |            |- 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
      |            |- note: annotate 'textarea' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19577 |
19578 |
/host/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
19577 |
19578 |
19579 | public struct TFootTag: Tag {
      |               `- note: consider making struct 'TFootTag' conform to the 'Sendable' protocol
19580 |     public let elementName: String = "tfoot"
19581 |
      :
19754 | }
19755 |
19756 | public let tfoot = TFootTag()
      |            |- 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
      |            |- note: annotate 'tfoot' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19757 |
19758 |
/host/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
19757 |
19758 |
19759 | public struct THTag: Tag {
      |               `- note: consider making struct 'THTag' conform to the 'Sendable' protocol
19760 |     public let elementName: String = "th"
19761 |
      :
19964 | }
19965 |
19966 | public let th = THTag()
      |            |- 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
      |            |- note: annotate 'th' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19967 |
19968 |
/host/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
19967 |
19968 |
19969 | public struct THeadTag: Tag {
      |               `- note: consider making struct 'THeadTag' conform to the 'Sendable' protocol
19970 |     public let elementName: String = "thead"
19971 |
      :
20144 | }
20145 |
20146 | public let thead = THeadTag()
      |            |- 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
      |            |- note: annotate 'thead' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20147 |
20148 |
/host/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
20147 |
20148 |
20149 | public struct TimeTag: Tag {
      |               `- note: consider making struct 'TimeTag' conform to the 'Sendable' protocol
20150 |     public let elementName: String = "time"
20151 |
      :
20330 | }
20331 |
20332 | public let time = TimeTag()
      |            |- 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
      |            |- note: annotate 'time' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20333 |
20334 |
/host/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
20333 |
20334 |
20335 | public struct TitleTag: Tag {
      |               `- note: consider making struct 'TitleTag' conform to the 'Sendable' protocol
20336 |     public let elementName: String = "title"
20337 |
      :
20510 | }
20511 |
20512 | public let title = TitleTag()
      |            |- 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
      |            |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20513 |
20514 |
/host/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
20513 |
20514 |
20515 | public struct TRTag: Tag {
      |               `- note: consider making struct 'TRTag' conform to the 'Sendable' protocol
20516 |     public let elementName: String = "tr"
20517 |
      :
20690 | }
20691 |
20692 | public let tr = TRTag()
      |            |- 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
      |            |- note: annotate 'tr' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20693 |
20694 |
/host/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
20693 |
20694 |
20695 | public struct TrackTag: Tag {
      |               `- note: consider making struct 'TrackTag' conform to the 'Sendable' protocol
20696 |     public let elementName: String = "track"
20697 |
      :
20899 | }
20900 |
20901 | public let track = TrackTag()
      |            |- 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
      |            |- note: annotate 'track' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20902 |
20903 |
/host/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
20902 |
20903 |
20904 | public struct UTag: Tag {
      |               `- note: consider making struct 'UTag' conform to the 'Sendable' protocol
20905 |     public let elementName: String = "u"
20906 |
      :
21079 | }
21080 |
21081 | public let u = UTag()
      |            |- 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
      |            |- note: annotate 'u' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21082 |
21083 |
/host/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
21082 |
21083 |
21084 | public struct ULTag: Tag {
      |               `- note: consider making struct 'ULTag' conform to the 'Sendable' protocol
21085 |     public let elementName: String = "ul"
21086 |
      :
21259 | }
21260 |
21261 | public let ul = ULTag()
      |            |- 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
      |            |- note: annotate 'ul' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21262 |
21263 |
/host/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
21262 |
21263 |
21264 | public struct VarTag: Tag {
      |               `- note: consider making struct 'VarTag' conform to the 'Sendable' protocol
21265 |     public let elementName: String = "var"
21266 |
      :
21439 | }
21440 |
21441 | public let `var` = VarTag()
      |            |- 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
      |            |- note: annotate 'var' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21442 |
21443 |
/host/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
21442 |
21443 |
21444 | public struct VideoTag: Tag {
      |               `- note: consider making struct 'VideoTag' conform to the 'Sendable' protocol
21445 |     public let elementName: String = "video"
21446 |
      :
21685 | }
21686 |
21687 | public let video = VideoTag()
      |            |- 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
      |            |- note: annotate 'video' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21688 |
21689 |
/host/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
21688 |
21689 |
21690 | public struct WBRTag: Tag {
      |               `- note: consider making struct 'WBRTag' conform to the 'Sendable' protocol
21691 |     public let elementName: String = "wbr"
21692 |
      :
21864 | }
21865 |
21866 | public let wbr = WBRTag()
      |            |- 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
      |            |- note: annotate 'wbr' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21867 |
[13/13] Compiling HTML Tags.swift
/host/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
    5 |
    6 |
    7 | public struct ATag: Tag {
      |               `- note: consider making struct 'ATag' conform to the 'Sendable' protocol
    8 |     public let elementName: String = "a"
    9 |
      :
  230 | }
  231 |
  232 | public let a = ATag()
      |            |- 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
      |            |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  233 |
  234 |
/host/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
  233 |
  234 |
  235 | public struct AbbrTag: Tag {
      |               `- note: consider making struct 'AbbrTag' conform to the 'Sendable' protocol
  236 |     public let elementName: String = "abbr"
  237 |
      :
  410 | }
  411 |
  412 | public let abbr = AbbrTag()
      |            |- 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
      |            |- note: annotate 'abbr' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  413 |
  414 |
/host/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
  413 |
  414 |
  415 | public struct AddressTag: Tag {
      |               `- note: consider making struct 'AddressTag' conform to the 'Sendable' protocol
  416 |     public let elementName: String = "address"
  417 |
      :
  590 | }
  591 |
  592 | public let address = AddressTag()
      |            |- 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
      |            |- note: annotate 'address' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  593 |
  594 |
/host/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
  593 |
  594 |
  595 | public struct AreaTag: Tag {
      |               `- note: consider making struct 'AreaTag' conform to the 'Sendable' protocol
  596 |     public let elementName: String = "area"
  597 |
      :
  823 | }
  824 |
  825 | public let area = AreaTag()
      |            |- 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
      |            |- note: annotate 'area' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  826 |
  827 |
/host/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
  826 |
  827 |
  828 | public struct ArticleTag: Tag {
      |               `- note: consider making struct 'ArticleTag' conform to the 'Sendable' protocol
  829 |     public let elementName: String = "article"
  830 |
      :
 1003 | }
 1004 |
 1005 | public let article = ArticleTag()
      |            |- 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
      |            |- note: annotate 'article' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 1006 |
 1007 |
/host/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
 1006 |
 1007 |
 1008 | public struct AsideTag: Tag {
      |               `- note: consider making struct 'AsideTag' conform to the 'Sendable' protocol
 1009 |     public let elementName: String = "aside"
 1010 |
      :
 1183 | }
 1184 |
 1185 | public let aside = AsideTag()
      |            |- 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
      |            |- note: annotate 'aside' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 1186 |
 1187 |
/host/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
 1186 |
 1187 |
 1188 | public struct AudioTag: Tag {
      |               `- note: consider making struct 'AudioTag' conform to the 'Sendable' protocol
 1189 |     public let elementName: String = "audio"
 1190 |
      :
 1405 | }
 1406 |
 1407 | public let audio = AudioTag()
      |            |- 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
      |            |- note: annotate 'audio' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 1408 |
 1409 |
/host/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
 1408 |
 1409 |
 1410 | public struct BTag: Tag {
      |               `- note: consider making struct 'BTag' conform to the 'Sendable' protocol
 1411 |     public let elementName: String = "b"
 1412 |
      :
 1585 | }
 1586 |
 1587 | public let b = BTag()
      |            |- 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
      |            |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 1588 |
 1589 |
/host/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
 1588 |
 1589 |
 1590 | public struct BaseTag: Tag {
      |               `- note: consider making struct 'BaseTag' conform to the 'Sendable' protocol
 1591 |     public let elementName: String = "base"
 1592 |
      :
 1776 | }
 1777 |
 1778 | public let base = BaseTag()
      |            |- 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
      |            |- note: annotate 'base' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 1779 |
 1780 |
/host/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
 1779 |
 1780 |
 1781 | public struct BDITag: Tag {
      |               `- note: consider making struct 'BDITag' conform to the 'Sendable' protocol
 1782 |     public let elementName: String = "bdi"
 1783 |
      :
 1956 | }
 1957 |
 1958 | public let bdi = BDITag()
      |            |- 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
      |            |- note: annotate 'bdi' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 1959 |
 1960 |
/host/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
 1959 |
 1960 |
 1961 | public struct BDOTag: Tag {
      |               `- note: consider making struct 'BDOTag' conform to the 'Sendable' protocol
 1962 |     public let elementName: String = "bdo"
 1963 |
      :
 2136 | }
 2137 |
 2138 | public let bdo = BDOTag()
      |            |- 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
      |            |- note: annotate 'bdo' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 2139 |
 2140 |
/host/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
 2139 |
 2140 |
 2141 | public struct BlockquoteTag: Tag {
      |               `- note: consider making struct 'BlockquoteTag' conform to the 'Sendable' protocol
 2142 |     public let elementName: String = "blockquote"
 2143 |
      :
 2322 | }
 2323 |
 2324 | public let blockquote = BlockquoteTag()
      |            |- 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
      |            |- note: annotate 'blockquote' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 2325 |
 2326 |
/host/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
 2325 |
 2326 |
 2327 | public struct BodyTag: Tag {
      |               `- note: consider making struct 'BodyTag' conform to the 'Sendable' protocol
 2328 |     public let elementName: String = "body"
 2329 |
      :
 2502 | }
 2503 |
 2504 | public let body = BodyTag()
      |            |- 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
      |            |- note: annotate 'body' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 2505 |
 2506 |
/host/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
 2505 |
 2506 |
 2507 | public struct BRTag: Tag {
      |               `- note: consider making struct 'BRTag' conform to the 'Sendable' protocol
 2508 |     public let elementName: String = "br"
 2509 |
      :
 2681 | }
 2682 |
 2683 | public let br = BRTag()
      |            |- 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
      |            |- note: annotate 'br' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 2684 |
 2685 |
/host/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
 2684 |
 2685 |
 2686 | public struct ButtonTag: Tag {
      |               `- note: consider making struct 'ButtonTag' conform to the 'Sendable' protocol
 2687 |     public let elementName: String = "button"
 2688 |
      :
 2921 | }
 2922 |
 2923 | public let button = ButtonTag()
      |            |- 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
      |            |- note: annotate 'button' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 2924 |
 2925 |
/host/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
 2924 |
 2925 |
 2926 | public struct CanvasTag: Tag {
      |               `- note: consider making struct 'CanvasTag' conform to the 'Sendable' protocol
 2927 |     public let elementName: String = "canvas"
 2928 |
      :
 3113 | }
 3114 |
 3115 | public let canvas = CanvasTag()
      |            |- 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
      |            |- note: annotate 'canvas' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 3116 |
 3117 |
/host/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
 3116 |
 3117 |
 3118 | public struct CaptionTag: Tag {
      |               `- note: consider making struct 'CaptionTag' conform to the 'Sendable' protocol
 3119 |     public let elementName: String = "caption"
 3120 |
      :
 3293 | }
 3294 |
 3295 | public let caption = CaptionTag()
      |            |- 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
      |            |- note: annotate 'caption' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 3296 |
 3297 |
/host/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
 3296 |
 3297 |
 3298 | public struct CiteTag: Tag {
      |               `- note: consider making struct 'CiteTag' conform to the 'Sendable' protocol
 3299 |     public let elementName: String = "cite"
 3300 |
      :
 3473 | }
 3474 |
 3475 | public let cite = CiteTag()
      |            |- 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
      |            |- note: annotate 'cite' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 3476 |
 3477 |
/host/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
 3476 |
 3477 |
 3478 | public struct CodeTag: Tag {
      |               `- note: consider making struct 'CodeTag' conform to the 'Sendable' protocol
 3479 |     public let elementName: String = "code"
 3480 |
      :
 3653 | }
 3654 |
 3655 | public let code = CodeTag()
      |            |- 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
      |            |- note: annotate 'code' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 3656 |
 3657 |
/host/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
 3656 |
 3657 |
 3658 | public struct ColTag: Tag {
      |               `- note: consider making struct 'ColTag' conform to the 'Sendable' protocol
 3659 |     public let elementName: String = "col"
 3660 |
      :
 3838 | }
 3839 |
 3840 | public let col = ColTag()
      |            |- 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
      |            |- note: annotate 'col' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 3841 |
 3842 |
/host/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
 3841 |
 3842 |
 3843 | public struct ColgroupTag: Tag {
      |               `- note: consider making struct 'ColgroupTag' conform to the 'Sendable' protocol
 3844 |     public let elementName: String = "colgroup"
 3845 |
      :
 4024 | }
 4025 |
 4026 | public let colgroup = ColgroupTag()
      |            |- 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
      |            |- note: annotate 'colgroup' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 4027 |
 4028 |
/host/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
 4027 |
 4028 |
 4029 | public struct DataTag: Tag {
      |               `- note: consider making struct 'DataTag' conform to the 'Sendable' protocol
 4030 |     public let elementName: String = "data"
 4031 |
      :
 4210 | }
 4211 |
 4212 | public let data = DataTag()
      |            |- 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
      |            |- note: annotate 'data' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 4213 |
 4214 |
/host/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
 4213 |
 4214 |
 4215 | public struct DatalistTag: Tag {
      |               `- note: consider making struct 'DatalistTag' conform to the 'Sendable' protocol
 4216 |     public let elementName: String = "datalist"
 4217 |
      :
 4390 | }
 4391 |
 4392 | public let datalist = DatalistTag()
      |            |- 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
      |            |- note: annotate 'datalist' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 4393 |
 4394 |
/host/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
 4393 |
 4394 |
 4395 | public struct DDTag: Tag {
      |               `- note: consider making struct 'DDTag' conform to the 'Sendable' protocol
 4396 |     public let elementName: String = "dd"
 4397 |
      :
 4570 | }
 4571 |
 4572 | public let dd = DDTag()
      |            |- 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
      |            |- note: annotate 'dd' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 4573 |
 4574 |
/host/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
 4573 |
 4574 |
 4575 | public struct DelTag: Tag {
      |               `- note: consider making struct 'DelTag' conform to the 'Sendable' protocol
 4576 |     public let elementName: String = "del"
 4577 |
      :
 4762 | }
 4763 |
 4764 | public let del = DelTag()
      |            |- 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
      |            |- note: annotate 'del' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 4765 |
 4766 |
/host/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
 4765 |
 4766 |
 4767 | public struct DetailsTag: Tag {
      |               `- note: consider making struct 'DetailsTag' conform to the 'Sendable' protocol
 4768 |     public let elementName: String = "details"
 4769 |
      :
 4948 | }
 4949 |
 4950 | public let details = DetailsTag()
      |            |- 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
      |            |- note: annotate 'details' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 4951 |
 4952 |
/host/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
 4951 |
 4952 |
 4953 | public struct DFNTag: Tag {
      |               `- note: consider making struct 'DFNTag' conform to the 'Sendable' protocol
 4954 |     public let elementName: String = "dfn"
 4955 |
      :
 5128 | }
 5129 |
 5130 | public let dfn = DFNTag()
      |            |- 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
      |            |- note: annotate 'dfn' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5131 |
 5132 |
/host/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
 5131 |
 5132 |
 5133 | public struct DialogTag: Tag {
      |               `- note: consider making struct 'DialogTag' conform to the 'Sendable' protocol
 5134 |     public let elementName: String = "dialog"
 5135 |
      :
 5314 | }
 5315 |
 5316 | public let dialog = DialogTag()
      |            |- 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
      |            |- note: annotate 'dialog' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5317 |
 5318 |
/host/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
 5317 |
 5318 |
 5319 | public struct DivTag: Tag {
      |               `- note: consider making struct 'DivTag' conform to the 'Sendable' protocol
 5320 |     public let elementName: String = "div"
 5321 |
      :
 5494 | }
 5495 |
 5496 | public let div = DivTag()
      |            |- 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
      |            |- note: annotate 'div' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5497 |
 5498 |
/host/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
 5497 |
 5498 |
 5499 | public struct DLTag: Tag {
      |               `- note: consider making struct 'DLTag' conform to the 'Sendable' protocol
 5500 |     public let elementName: String = "dl"
 5501 |
      :
 5674 | }
 5675 |
 5676 | public let dl = DLTag()
      |            |- 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
      |            |- note: annotate 'dl' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5677 |
 5678 |
/host/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
 5677 |
 5678 |
 5679 | public struct DTTag: Tag {
      |               `- note: consider making struct 'DTTag' conform to the 'Sendable' protocol
 5680 |     public let elementName: String = "dt"
 5681 |
      :
 5854 | }
 5855 |
 5856 | public let dt = DTTag()
      |            |- 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
      |            |- note: annotate 'dt' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5857 |
 5858 |
/host/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
 5857 |
 5858 |
 5859 | public struct EmTag: Tag {
      |               `- note: consider making struct 'EmTag' conform to the 'Sendable' protocol
 5860 |     public let elementName: String = "em"
 5861 |
      :
 6034 | }
 6035 |
 6036 | public let em = EmTag()
      |            |- 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
      |            |- note: annotate 'em' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6037 |
 6038 |
/host/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
 6037 |
 6038 |
 6039 | public struct EmbedTag: Tag {
      |               `- note: consider making struct 'EmbedTag' conform to the 'Sendable' protocol
 6040 |     public let elementName: String = "embed"
 6041 |
      :
 6237 | }
 6238 |
 6239 | public let embed = EmbedTag()
      |            |- 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
      |            |- note: annotate 'embed' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6240 |
 6241 |
/host/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
 6240 |
 6241 |
 6242 | public struct FieldsetTag: Tag {
      |               `- note: consider making struct 'FieldsetTag' conform to the 'Sendable' protocol
 6243 |     public let elementName: String = "fieldset"
 6244 |
      :
 6435 | }
 6436 |
 6437 | public let fieldset = FieldsetTag()
      |            |- 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
      |            |- note: annotate 'fieldset' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6438 |
 6439 |
/host/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
 6438 |
 6439 |
 6440 | public struct FigcaptionTag: Tag {
      |               `- note: consider making struct 'FigcaptionTag' conform to the 'Sendable' protocol
 6441 |     public let elementName: String = "figcaption"
 6442 |
      :
 6615 | }
 6616 |
 6617 | public let figcaption = FigcaptionTag()
      |            |- 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
      |            |- note: annotate 'figcaption' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6618 |
 6619 |
/host/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
 6618 |
 6619 |
 6620 | public struct FigureTag: Tag {
      |               `- note: consider making struct 'FigureTag' conform to the 'Sendable' protocol
 6621 |     public let elementName: String = "figure"
 6622 |
      :
 6795 | }
 6796 |
 6797 | public let figure = FigureTag()
      |            |- 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
      |            |- note: annotate 'figure' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6798 |
 6799 |
/host/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
 6798 |
 6799 |
 6800 | public struct FooterTag: Tag {
      |               `- note: consider making struct 'FooterTag' conform to the 'Sendable' protocol
 6801 |     public let elementName: String = "footer"
 6802 |
      :
 6975 | }
 6976 |
 6977 | public let footer = FooterTag()
      |            |- 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
      |            |- note: annotate 'footer' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6978 |
 6979 |
/host/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
 6978 |
 6979 |
 6980 | public struct FormTag: Tag {
      |               `- note: consider making struct 'FormTag' conform to the 'Sendable' protocol
 6981 |     public let elementName: String = "form"
 6982 |
      :
 7203 | }
 7204 |
 7205 | public let form = FormTag()
      |            |- 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
      |            |- note: annotate 'form' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7206 |
 7207 |
/host/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
 7206 |
 7207 |
 7208 | public struct H1Tag: Tag {
      |               `- note: consider making struct 'H1Tag' conform to the 'Sendable' protocol
 7209 |     public let elementName: String = "h1"
 7210 |
      :
 7383 | }
 7384 |
 7385 | public let h1 = H1Tag()
      |            |- 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
      |            |- note: annotate 'h1' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7386 |
 7387 |
/host/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
 7386 |
 7387 |
 7388 | public struct H2Tag: Tag {
      |               `- note: consider making struct 'H2Tag' conform to the 'Sendable' protocol
 7389 |     public let elementName: String = "h2"
 7390 |
      :
 7563 | }
 7564 |
 7565 | public let h2 = H2Tag()
      |            |- 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
      |            |- note: annotate 'h2' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7566 |
 7567 |
/host/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
 7566 |
 7567 |
 7568 | public struct H3Tag: Tag {
      |               `- note: consider making struct 'H3Tag' conform to the 'Sendable' protocol
 7569 |     public let elementName: String = "h3"
 7570 |
      :
 7743 | }
 7744 |
 7745 | public let h3 = H3Tag()
      |            |- 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
      |            |- note: annotate 'h3' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7746 |
 7747 |
/host/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
 7746 |
 7747 |
 7748 | public struct H4Tag: Tag {
      |               `- note: consider making struct 'H4Tag' conform to the 'Sendable' protocol
 7749 |     public let elementName: String = "h4"
 7750 |
      :
 7923 | }
 7924 |
 7925 | public let h4 = H4Tag()
      |            |- 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
      |            |- note: annotate 'h4' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7926 |
 7927 |
/host/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
 7926 |
 7927 |
 7928 | public struct H5Tag: Tag {
      |               `- note: consider making struct 'H5Tag' conform to the 'Sendable' protocol
 7929 |     public let elementName: String = "h5"
 7930 |
      :
 8103 | }
 8104 |
 8105 | public let h5 = H5Tag()
      |            |- 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
      |            |- note: annotate 'h5' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8106 |
 8107 |
/host/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
 8106 |
 8107 |
 8108 | public struct H6Tag: Tag {
      |               `- note: consider making struct 'H6Tag' conform to the 'Sendable' protocol
 8109 |     public let elementName: String = "h6"
 8110 |
      :
 8283 | }
 8284 |
 8285 | public let h6 = H6Tag()
      |            |- 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
      |            |- note: annotate 'h6' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8286 |
 8287 |
/host/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
 8286 |
 8287 |
 8288 | public struct HeadTag: Tag {
      |               `- note: consider making struct 'HeadTag' conform to the 'Sendable' protocol
 8289 |     public let elementName: String = "head"
 8290 |
      :
 8463 | }
 8464 |
 8465 | public let head = HeadTag()
      |            |- 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
      |            |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8466 |
 8467 |
/host/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
 8466 |
 8467 |
 8468 | public struct HeaderTag: Tag {
      |               `- note: consider making struct 'HeaderTag' conform to the 'Sendable' protocol
 8469 |     public let elementName: String = "header"
 8470 |
      :
 8643 | }
 8644 |
 8645 | public let header = HeaderTag()
      |            |- 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
      |            |- note: annotate 'header' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8646 |
 8647 |
/host/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
 8646 |
 8647 |
 8648 | public struct HgroupTag: Tag {
      |               `- note: consider making struct 'HgroupTag' conform to the 'Sendable' protocol
 8649 |     public let elementName: String = "hgroup"
 8650 |
      :
 8823 | }
 8824 |
 8825 | public let hgroup = HgroupTag()
      |            |- 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
      |            |- note: annotate 'hgroup' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8826 |
 8827 |
/host/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
 8826 |
 8827 |
 8828 | public struct HRTag: Tag {
      |               `- note: consider making struct 'HRTag' conform to the 'Sendable' protocol
 8829 |     public let elementName: String = "hr"
 8830 |
      :
 9002 | }
 9003 |
 9004 | public let hr = HRTag()
      |            |- 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
      |            |- note: annotate 'hr' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9005 |
 9006 |
/host/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
 9005 |
 9006 |
 9007 | public struct HTMLTag: Tag {
      |               `- note: consider making struct 'HTMLTag' conform to the 'Sendable' protocol
 9008 |     public let elementName: String = "html"
 9009 |
      :
 9188 | }
 9189 |
 9190 | public let html = HTMLTag()
      |            |- 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
      |            |- note: annotate 'html' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9191 |
 9192 |
/host/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
 9191 |
 9192 |
 9193 | public struct ITag: Tag {
      |               `- note: consider making struct 'ITag' conform to the 'Sendable' protocol
 9194 |     public let elementName: String = "i"
 9195 |
      :
 9368 | }
 9369 |
 9370 | public let i = ITag()
      |            |- 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
      |            |- note: annotate 'i' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9371 |
 9372 |
/host/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
 9371 |
 9372 |
 9373 | public struct IFrameTag: Tag {
      |               `- note: consider making struct 'IFrameTag' conform to the 'Sendable' protocol
 9374 |     public let elementName: String = "iframe"
 9375 |
      :
 9608 | }
 9609 |
 9610 | public let iframe = IFrameTag()
      |            |- 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
      |            |- note: annotate 'iframe' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9611 |
 9612 |
/host/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
 9611 |
 9612 |
 9613 | public struct ImgTag: Tag {
      |               `- note: consider making struct 'ImgTag' conform to the 'Sendable' protocol
 9614 |     public let elementName: String = "img"
 9615 |
      :
 9859 | }
 9860 |
 9861 | public let img = ImgTag()
      |            |- 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
      |            |- note: annotate 'img' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9862 |
 9863 |
/host/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
 9862 |
 9863 |
 9864 | public struct InputTag: Tag {
      |               `- note: consider making struct 'InputTag' conform to the 'Sendable' protocol
 9865 |     public let elementName: String = "input"
 9866 |
      :
10218 | }
10219 |
10220 | public let input = InputTag()
      |            |- 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
      |            |- note: annotate 'input' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10221 |
10222 |
/host/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
10221 |
10222 |
10223 | public struct InsTag: Tag {
      |               `- note: consider making struct 'InsTag' conform to the 'Sendable' protocol
10224 |     public let elementName: String = "ins"
10225 |
      :
10410 | }
10411 |
10412 | public let ins = InsTag()
      |            |- 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
      |            |- note: annotate 'ins' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10413 |
10414 |
/host/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
10413 |
10414 |
10415 | public struct KBDTag: Tag {
      |               `- note: consider making struct 'KBDTag' conform to the 'Sendable' protocol
10416 |     public let elementName: String = "kbd"
10417 |
      :
10590 | }
10591 |
10592 | public let kbd = KBDTag()
      |            |- 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
      |            |- note: annotate 'kbd' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10593 |
10594 |
/host/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
10593 |
10594 |
10595 | public struct LabelTag: Tag {
      |               `- note: consider making struct 'LabelTag' conform to the 'Sendable' protocol
10596 |     public let elementName: String = "label"
10597 |
      :
10776 | }
10777 |
10778 | public let label = LabelTag()
      |            |- 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
      |            |- note: annotate 'label' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10779 |
10780 |
/host/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
10779 |
10780 |
10781 | public struct legendTag: Tag {
      |               `- note: consider making struct 'legendTag' conform to the 'Sendable' protocol
10782 |     public let elementName: String = "legend"
10783 |
      :
10956 | }
10957 |
10958 | public let legend = legendTag()
      |            |- 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
      |            |- note: annotate 'legend' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10959 |
10960 |
/host/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
10959 |
10960 |
10961 | public struct LITag: Tag {
      |               `- note: consider making struct 'LITag' conform to the 'Sendable' protocol
10962 |     public let elementName: String = "li"
10963 |
      :
11142 | }
11143 |
11144 | public let li = LITag()
      |            |- 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
      |            |- note: annotate 'li' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11145 |
11146 |
/host/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
11145 |
11146 |
11147 | public struct LinkTag: Tag {
      |               `- note: consider making struct 'LinkTag' conform to the 'Sendable' protocol
11148 |     public let elementName: String = "link"
11149 |
      :
11399 | }
11400 |
11401 | public let link = LinkTag()
      |            |- 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
      |            |- note: annotate 'link' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11402 |
11403 |
/host/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
11402 |
11403 |
11404 | public struct MainTag: Tag {
      |               `- note: consider making struct 'MainTag' conform to the 'Sendable' protocol
11405 |     public let elementName: String = "main"
11406 |
      :
11579 | }
11580 |
11581 | public let main = MainTag()
      |            |- 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
      |            |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11582 |
11583 |
/host/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
11582 |
11583 |
11584 | public struct MapTag: Tag {
      |               `- note: consider making struct 'MapTag' conform to the 'Sendable' protocol
11585 |     public let elementName: String = "map"
11586 |
      :
11765 | }
11766 |
11767 | public let map = MapTag()
      |            |- 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
      |            |- note: annotate 'map' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11768 |
11769 |
/host/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
11768 |
11769 |
11770 | public struct MarkTag: Tag {
      |               `- note: consider making struct 'MarkTag' conform to the 'Sendable' protocol
11771 |     public let elementName: String = "mark"
11772 |
      :
11945 | }
11946 |
11947 | public let mark = MarkTag()
      |            |- 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
      |            |- note: annotate 'mark' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11948 |
11949 |
/host/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
11948 |
11949 |
11950 | public struct MathTag: Tag {
      |               `- note: consider making struct 'MathTag' conform to the 'Sendable' protocol
11951 |     public let elementName: String = "math"
11952 |
      :
12125 | }
12126 |
12127 | public let math = MathTag()
      |            |- 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
      |            |- note: annotate 'math' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12128 |
12129 |
/host/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
12128 |
12129 |
12130 | public struct MenuTag: Tag {
      |               `- note: consider making struct 'MenuTag' conform to the 'Sendable' protocol
12131 |     public let elementName: String = "menu"
12132 |
      :
12305 | }
12306 |
12307 | public let menu = MenuTag()
      |            |- 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
      |            |- note: annotate 'menu' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12308 |
12309 |
/host/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
12308 |
12309 |
12310 | public struct MetaTag: Tag {
      |               `- note: consider making struct 'MetaTag' conform to the 'Sendable' protocol
12311 |     public let elementName: String = "meta"
12312 |
      :
12508 | }
12509 |
12510 | public let meta = MetaTag()
      |            |- 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
      |            |- note: annotate 'meta' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12511 |
12512 |
/host/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
12511 |
12512 |
12513 | public struct MeterTag: Tag {
      |               `- note: consider making struct 'MeterTag' conform to the 'Sendable' protocol
12514 |     public let elementName: String = "meter"
12515 |
      :
12724 | }
12725 |
12726 | public let meter = MeterTag()
      |            |- 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
      |            |- note: annotate 'meter' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12727 |
12728 |
/host/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
12727 |
12728 |
12729 | public struct NavTag: Tag {
      |               `- note: consider making struct 'NavTag' conform to the 'Sendable' protocol
12730 |     public let elementName: String = "nav"
12731 |
      :
12904 | }
12905 |
12906 | public let nav = NavTag()
      |            |- 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
      |            |- note: annotate 'nav' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12907 |
12908 |
/host/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
12907 |
12908 |
12909 | public struct NoscriptTag: Tag {
      |               `- note: consider making struct 'NoscriptTag' conform to the 'Sendable' protocol
12910 |     public let elementName: String = "noscript"
12911 |
      :
13084 | }
13085 |
13086 | public let noscript = NoscriptTag()
      |            |- 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
      |            |- note: annotate 'noscript' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13087 |
13088 |
/host/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
13087 |
13088 |
13089 | public struct ObjectTag: Tag {
      |               `- note: consider making struct 'ObjectTag' conform to the 'Sendable' protocol
13090 |     public let elementName: String = "object"
13091 |
      :
13306 | }
13307 |
13308 | public let object = ObjectTag()
      |            |- 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
      |            |- note: annotate 'object' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13309 |
13310 |
/host/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
13309 |
13310 |
13311 | public struct OLTag: Tag {
      |               `- note: consider making struct 'OLTag' conform to the 'Sendable' protocol
13312 |     public let elementName: String = "ol"
13313 |
      :
13504 | }
13505 |
13506 | public let ol = OLTag()
      |            |- 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
      |            |- note: annotate 'ol' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13507 |
13508 |
/host/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
13507 |
13508 |
13509 | public struct OptgroupTag: Tag {
      |               `- note: consider making struct 'OptgroupTag' conform to the 'Sendable' protocol
13510 |     public let elementName: String = "optgroup"
13511 |
      :
13696 | }
13697 |
13698 | public let optgroup = OptgroupTag()
      |            |- 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
      |            |- note: annotate 'optgroup' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13699 |
13700 |
/host/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
13699 |
13700 |
13701 | public struct OptionTag: Tag {
      |               `- note: consider making struct 'OptionTag' conform to the 'Sendable' protocol
13702 |     public let elementName: String = "option"
13703 |
      :
13900 | }
13901 |
13902 | public let option = OptionTag()
      |            |- 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
      |            |- note: annotate 'option' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13903 |
13904 |
/host/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
13903 |
13904 |
13905 | public struct OutputTag: Tag {
      |               `- note: consider making struct 'OutputTag' conform to the 'Sendable' protocol
13906 |     public let elementName: String = "output"
13907 |
      :
14098 | }
14099 |
14100 | public let output = OutputTag()
      |            |- 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
      |            |- note: annotate 'output' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14101 |
14102 |
/host/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
14101 |
14102 |
14103 | public struct PTag: Tag {
      |               `- note: consider making struct 'PTag' conform to the 'Sendable' protocol
14104 |     public let elementName: String = "p"
14105 |
      :
14278 | }
14279 |
14280 | public let p = PTag()
      |            |- 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
      |            |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14281 |
14282 |
/host/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
14281 |
14282 |
14283 | public struct ParamTag: Tag {
      |               `- note: consider making struct 'ParamTag' conform to the 'Sendable' protocol
14284 |     public let elementName: String = "param"
14285 |
      :
14469 | }
14470 |
14471 | public let param = ParamTag()
      |            |- 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
      |            |- note: annotate 'param' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14472 |
14473 |
/host/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
14472 |
14473 |
14474 | public struct PictureTag: Tag {
      |               `- note: consider making struct 'PictureTag' conform to the 'Sendable' protocol
14475 |     public let elementName: String = "picture"
14476 |
      :
14649 | }
14650 |
14651 | public let picture = PictureTag()
      |            |- 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
      |            |- note: annotate 'picture' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14652 |
14653 |
/host/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
14652 |
14653 |
14654 | public struct PreTag: Tag {
      |               `- note: consider making struct 'PreTag' conform to the 'Sendable' protocol
14655 |     public let elementName: String = "pre"
14656 |
      :
14829 | }
14830 |
14831 | public let pre = PreTag()
      |            |- 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
      |            |- note: annotate 'pre' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14832 |
14833 |
/host/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
14832 |
14833 |
14834 | public struct ProgressTag: Tag {
      |               `- note: consider making struct 'ProgressTag' conform to the 'Sendable' protocol
14835 |     public let elementName: String = "progress"
14836 |
      :
15021 | }
15022 |
15023 | public let progress = ProgressTag()
      |            |- 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
      |            |- note: annotate 'progress' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15024 |
15025 |
/host/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
15024 |
15025 |
15026 | public struct QTag: Tag {
      |               `- note: consider making struct 'QTag' conform to the 'Sendable' protocol
15027 |     public let elementName: String = "q"
15028 |
      :
15207 | }
15208 |
15209 | public let q = QTag()
      |            |- 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
      |            |- note: annotate 'q' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15210 |
15211 |
/host/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
15210 |
15211 |
15212 | public struct RPTag: Tag {
      |               `- note: consider making struct 'RPTag' conform to the 'Sendable' protocol
15213 |     public let elementName: String = "rp"
15214 |
      :
15387 | }
15388 |
15389 | public let rp = RPTag()
      |            |- 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
      |            |- note: annotate 'rp' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15390 |
15391 |
/host/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
15390 |
15391 |
15392 | public struct RTTag: Tag {
      |               `- note: consider making struct 'RTTag' conform to the 'Sendable' protocol
15393 |     public let elementName: String = "rt"
15394 |
      :
15567 | }
15568 |
15569 | public let rt = RTTag()
      |            |- 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
      |            |- note: annotate 'rt' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15570 |
15571 |
/host/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
15570 |
15571 |
15572 | public struct RubyTag: Tag {
      |               `- note: consider making struct 'RubyTag' conform to the 'Sendable' protocol
15573 |     public let elementName: String = "ruby"
15574 |
      :
15747 | }
15748 |
15749 | public let ruby = RubyTag()
      |            |- 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
      |            |- note: annotate 'ruby' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15750 |
15751 |
/host/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
15750 |
15751 |
15752 | public struct STag: Tag {
      |               `- note: consider making struct 'STag' conform to the 'Sendable' protocol
15753 |     public let elementName: String = "s"
15754 |
      :
15927 | }
15928 |
15929 | public let s = STag()
      |            |- 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
      |            |- note: annotate 's' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15930 |
15931 |
/host/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
15930 |
15931 |
15932 | public struct SampTag: Tag {
      |               `- note: consider making struct 'SampTag' conform to the 'Sendable' protocol
15933 |     public let elementName: String = "samp"
15934 |
      :
16107 | }
16108 |
16109 | public let samp = SampTag()
      |            |- 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
      |            |- note: annotate 'samp' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16110 |
16111 |
/host/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
16110 |
16111 |
16112 | public struct ScriptTag: Tag {
      |               `- note: consider making struct 'ScriptTag' conform to the 'Sendable' protocol
16113 |     public let elementName: String = "script"
16114 |
      :
16335 | }
16336 |
16337 | public let script = ScriptTag()
      |            |- 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
      |            |- note: annotate 'script' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16338 |
16339 |
/host/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
16338 |
16339 |
16340 | public struct SectionTag: Tag {
      |               `- note: consider making struct 'SectionTag' conform to the 'Sendable' protocol
16341 |     public let elementName: String = "section"
16342 |
      :
16515 | }
16516 |
16517 | public let section = SectionTag()
      |            |- 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
      |            |- note: annotate 'section' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16518 |
16519 |
/host/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
16518 |
16519 |
16520 | public struct SelectTag: Tag {
      |               `- note: consider making struct 'SelectTag' conform to the 'Sendable' protocol
16521 |     public let elementName: String = "select"
16522 |
      :
16737 | }
16738 |
16739 | public let select = SelectTag()
      |            |- 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
      |            |- note: annotate 'select' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16740 |
16741 |
/host/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
16740 |
16741 |
16742 | public struct SlotTag: Tag {
      |               `- note: consider making struct 'SlotTag' conform to the 'Sendable' protocol
16743 |     public let elementName: String = "slot"
16744 |
      :
16923 | }
16924 |
16925 | public let slot = SlotTag()
      |            |- 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
      |            |- note: annotate 'slot' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16926 |
16927 |
/host/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
16926 |
16927 |
16928 | public struct SmallTag: Tag {
      |               `- note: consider making struct 'SmallTag' conform to the 'Sendable' protocol
16929 |     public let elementName: String = "small"
16930 |
      :
17103 | }
17104 |
17105 | public let small = SmallTag()
      |            |- 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
      |            |- note: annotate 'small' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17106 |
17107 |
/host/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
17106 |
17107 |
17108 | public struct SourceTag: Tag {
      |               `- note: consider making struct 'SourceTag' conform to the 'Sendable' protocol
17109 |     public let elementName: String = "source"
17110 |
      :
17312 | }
17313 |
17314 | public let source = SourceTag()
      |            |- 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
      |            |- note: annotate 'source' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17315 |
17316 |
/host/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
17315 |
17316 |
17317 | public struct SpanTag: Tag {
      |               `- note: consider making struct 'SpanTag' conform to the 'Sendable' protocol
17318 |     public let elementName: String = "span"
17319 |
      :
17492 | }
17493 |
17494 | public let span = SpanTag()
      |            |- 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
      |            |- note: annotate 'span' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17495 |
17496 |
/host/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
17495 |
17496 |
17497 | public struct StrongTag: Tag {
      |               `- note: consider making struct 'StrongTag' conform to the 'Sendable' protocol
17498 |     public let elementName: String = "strong"
17499 |
      :
17672 | }
17673 |
17674 | public let strong = StrongTag()
      |            |- 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
      |            |- note: annotate 'strong' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17675 |
17676 |
/host/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
17675 |
17676 |
17677 | public struct StyleTag: Tag {
      |               `- note: consider making struct 'StyleTag' conform to the 'Sendable' protocol
17678 |     public let elementName: String = "style"
17679 |
      :
17858 | }
17859 |
17860 | public let style = StyleTag()
      |            |- 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
      |            |- note: annotate 'style' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17861 |
17862 |
/host/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
17861 |
17862 |
17863 | public struct SubTag: Tag {
      |               `- note: consider making struct 'SubTag' conform to the 'Sendable' protocol
17864 |     public let elementName: String = "sub"
17865 |
      :
18038 | }
18039 |
18040 | public let sub = SubTag()
      |            |- 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
      |            |- note: annotate 'sub' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18041 |
18042 |
/host/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
18041 |
18042 |
18043 | public struct SummaryTag: Tag {
      |               `- note: consider making struct 'SummaryTag' conform to the 'Sendable' protocol
18044 |     public let elementName: String = "summary"
18045 |
      :
18218 | }
18219 |
18220 | public let summary = SummaryTag()
      |            |- 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
      |            |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18221 |
18222 |
/host/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
18221 |
18222 |
18223 | public struct SupTag: Tag {
      |               `- note: consider making struct 'SupTag' conform to the 'Sendable' protocol
18224 |     public let elementName: String = "sup"
18225 |
      :
18398 | }
18399 |
18400 | public let sup = SupTag()
      |            |- 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
      |            |- note: annotate 'sup' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18401 |
18402 |
/host/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
18401 |
18402 |
18403 | public struct SVGTag: Tag {
      |               `- note: consider making struct 'SVGTag' conform to the 'Sendable' protocol
18404 |     public let elementName: String = "svg"
18405 |
      :
18578 | }
18579 |
18580 | public let svg = SVGTag()
      |            |- 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
      |            |- note: annotate 'svg' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18581 |
18582 |
/host/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
18581 |
18582 |
18583 | public struct TableTag: Tag {
      |               `- note: consider making struct 'TableTag' conform to the 'Sendable' protocol
18584 |     public let elementName: String = "table"
18585 |
      :
18758 | }
18759 |
18760 | public let table = TableTag()
      |            |- 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
      |            |- note: annotate 'table' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18761 |
18762 |
/host/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
18761 |
18762 |
18763 | public struct TBodyTag: Tag {
      |               `- note: consider making struct 'TBodyTag' conform to the 'Sendable' protocol
18764 |     public let elementName: String = "tbody"
18765 |
      :
18938 | }
18939 |
18940 | public let tbody = TBodyTag()
      |            |- 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
      |            |- note: annotate 'tbody' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18941 |
18942 |
/host/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
18941 |
18942 |
18943 | public struct TDTag: Tag {
      |               `- note: consider making struct 'TDTag' conform to the 'Sendable' protocol
18944 |     public let elementName: String = "td"
18945 |
      :
19136 | }
19137 |
19138 | public let td = TDTag()
      |            |- 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
      |            |- note: annotate 'td' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19139 |
19140 |
/host/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
19139 |
19140 |
19141 | public struct TemplateTag: Tag {
      |               `- note: consider making struct 'TemplateTag' conform to the 'Sendable' protocol
19142 |     public let elementName: String = "template"
19143 |
      :
19316 | }
19317 |
19318 | public let template = TemplateTag()
      |            |- 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
      |            |- note: annotate 'template' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19319 |
19320 |
/host/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
19319 |
19320 |
19321 | public struct TextareaTag: Tag {
      |               `- note: consider making struct 'TextareaTag' conform to the 'Sendable' protocol
19322 |     public let elementName: String = "textarea"
19323 |
      :
19574 | }
19575 |
19576 | public let textarea = TextareaTag()
      |            |- 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
      |            |- note: annotate 'textarea' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19577 |
19578 |
/host/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
19577 |
19578 |
19579 | public struct TFootTag: Tag {
      |               `- note: consider making struct 'TFootTag' conform to the 'Sendable' protocol
19580 |     public let elementName: String = "tfoot"
19581 |
      :
19754 | }
19755 |
19756 | public let tfoot = TFootTag()
      |            |- 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
      |            |- note: annotate 'tfoot' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19757 |
19758 |
/host/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
19757 |
19758 |
19759 | public struct THTag: Tag {
      |               `- note: consider making struct 'THTag' conform to the 'Sendable' protocol
19760 |     public let elementName: String = "th"
19761 |
      :
19964 | }
19965 |
19966 | public let th = THTag()
      |            |- 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
      |            |- note: annotate 'th' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19967 |
19968 |
/host/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
19967 |
19968 |
19969 | public struct THeadTag: Tag {
      |               `- note: consider making struct 'THeadTag' conform to the 'Sendable' protocol
19970 |     public let elementName: String = "thead"
19971 |
      :
20144 | }
20145 |
20146 | public let thead = THeadTag()
      |            |- 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
      |            |- note: annotate 'thead' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20147 |
20148 |
/host/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
20147 |
20148 |
20149 | public struct TimeTag: Tag {
      |               `- note: consider making struct 'TimeTag' conform to the 'Sendable' protocol
20150 |     public let elementName: String = "time"
20151 |
      :
20330 | }
20331 |
20332 | public let time = TimeTag()
      |            |- 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
      |            |- note: annotate 'time' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20333 |
20334 |
/host/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
20333 |
20334 |
20335 | public struct TitleTag: Tag {
      |               `- note: consider making struct 'TitleTag' conform to the 'Sendable' protocol
20336 |     public let elementName: String = "title"
20337 |
      :
20510 | }
20511 |
20512 | public let title = TitleTag()
      |            |- 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
      |            |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20513 |
20514 |
/host/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
20513 |
20514 |
20515 | public struct TRTag: Tag {
      |               `- note: consider making struct 'TRTag' conform to the 'Sendable' protocol
20516 |     public let elementName: String = "tr"
20517 |
      :
20690 | }
20691 |
20692 | public let tr = TRTag()
      |            |- 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
      |            |- note: annotate 'tr' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20693 |
20694 |
/host/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
20693 |
20694 |
20695 | public struct TrackTag: Tag {
      |               `- note: consider making struct 'TrackTag' conform to the 'Sendable' protocol
20696 |     public let elementName: String = "track"
20697 |
      :
20899 | }
20900 |
20901 | public let track = TrackTag()
      |            |- 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
      |            |- note: annotate 'track' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20902 |
20903 |
/host/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
20902 |
20903 |
20904 | public struct UTag: Tag {
      |               `- note: consider making struct 'UTag' conform to the 'Sendable' protocol
20905 |     public let elementName: String = "u"
20906 |
      :
21079 | }
21080 |
21081 | public let u = UTag()
      |            |- 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
      |            |- note: annotate 'u' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21082 |
21083 |
/host/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
21082 |
21083 |
21084 | public struct ULTag: Tag {
      |               `- note: consider making struct 'ULTag' conform to the 'Sendable' protocol
21085 |     public let elementName: String = "ul"
21086 |
      :
21259 | }
21260 |
21261 | public let ul = ULTag()
      |            |- 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
      |            |- note: annotate 'ul' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21262 |
21263 |
/host/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
21262 |
21263 |
21264 | public struct VarTag: Tag {
      |               `- note: consider making struct 'VarTag' conform to the 'Sendable' protocol
21265 |     public let elementName: String = "var"
21266 |
      :
21439 | }
21440 |
21441 | public let `var` = VarTag()
      |            |- 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
      |            |- note: annotate 'var' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21442 |
21443 |
/host/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
21442 |
21443 |
21444 | public struct VideoTag: Tag {
      |               `- note: consider making struct 'VideoTag' conform to the 'Sendable' protocol
21445 |     public let elementName: String = "video"
21446 |
      :
21685 | }
21686 |
21687 | public let video = VideoTag()
      |            |- 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
      |            |- note: annotate 'video' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21688 |
21689 |
/host/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
21688 |
21689 |
21690 | public struct WBRTag: Tag {
      |               `- note: consider making struct 'WBRTag' conform to the 'Sendable' protocol
21691 |     public let elementName: String = "wbr"
21692 |
      :
21864 | }
21865 |
21866 | public let wbr = WBRTag()
      |            |- 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
      |            |- note: annotate 'wbr' with '@MainActor' if property should only be accessed from the main actor
      |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21867 |
Build complete! (27.41s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "HTML",
  "name" : "HTML",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "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"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.