Build Information
Successful build of HTMLKit, reference 3.0.0-alpha.11 (840aec
), with Swift 6.0 for Linux on 28 Feb 2025 15:35:56 UTC.
Swift 6 data race errors: 15
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
[1402/1503] Compiling BitCollections BitSet+SetAlgebra basics.swift
[1403/1503] Compiling BitCollections BitSet+SetAlgebra conformance.swift
[1404/1503] Compiling BitCollections BitSet+SetAlgebra formIntersection.swift
[1405/1503] Compiling BitCollections BitSet+SetAlgebra formSymmetricDifference.swift
[1406/1503] Compiling BitCollections BitSet+SetAlgebra formUnion.swift
[1407/1503] Compiling BitCollections BitSet+SetAlgebra intersection.swift
[1408/1503] Compiling BitCollections BitSet+SetAlgebra isDisjoint.swift
[1409/1503] Compiling BitCollections BitSet+SetAlgebra isEqualSet.swift
[1410/1503] Compiling BitCollections BitSet+SetAlgebra isStrictSubset.swift
[1411/1503] Compiling BitCollections BitSet+SetAlgebra isStrictSuperset.swift
[1412/1503] Compiling BitCollections BitSet+SetAlgebra isSubset.swift
[1413/1503] Compiling BitCollections BitSet+SetAlgebra isSuperset.swift
[1414/1503] Compiling BitCollections BitSet+SetAlgebra subtract.swift
[1415/1503] Compiling BitCollections BitSet+SetAlgebra subtracting.swift
[1416/1503] Compiling BitCollections BitSet+SetAlgebra symmetricDifference.swift
[1417/1503] Compiling BitCollections BitSet+SetAlgebra union.swift
[1418/1503] Compiling BitCollections BitSet+Sorted Collection APIs.swift
[1419/1503] Compiling BitCollections BitSet.Counted.swift
[1422/1503] Compiling Algorithms Rotate.swift
[1423/1503] Compiling Algorithms Split.swift
[1424/1503] Compiling Algorithms Stride.swift
[1425/1503] Compiling Algorithms Suffix.swift
[1426/1506] Compiling CryptoBoringWrapper RandomBytes.swift
[1427/1506] Emitting module BitCollections
[1428/1506] Compiling Algorithms Compacted.swift
[1429/1506] Compiling Algorithms Cycle.swift
[1430/1506] Compiling Algorithms EitherSequence.swift
[1431/1506] Compiling Algorithms FirstNonNil.swift
[1432/1506] Compiling BitCollections BitSet.Index.swift
[1433/1506] Compiling BitCollections BitSet._UnsafeHandle.swift
[1434/1506] Compiling BitCollections BitSet.swift
[1435/1506] Compiling BitCollections Range+Utilities.swift
[1436/1506] Compiling BitCollections Slice+Utilities.swift
[1437/1506] Compiling BitCollections UInt+Tricks.swift
[1438/1506] Compiling BitCollections _Word.swift
[1439/1506] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[1440/1506] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[1441/1506] Compiling CryptoBoringWrapper EllipticCurve.swift
[1442/1506] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[1444/1506] Compiling Algorithms Trim.swift
[1445/1506] Compiling Algorithms Unique.swift
[1446/1506] Compiling Algorithms Windows.swift
[1447/1506] Compiling BitCollections BitArray+Copy.swift
[1448/1506] Compiling BitCollections BitArray+CustomReflectable.swift
[1449/1506] Compiling BitCollections BitArray+Descriptions.swift
[1450/1506] Compiling BitCollections BitArray+Equatable.swift
[1454/1506] Compiling Algorithms Combinations.swift
[1467/1506] Emitting module CryptoBoringWrapper
[1468/1506] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[1478/1507] Wrapping AST for BitCollections for debugging
[1480/1507] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[1486/1510] Emitting module Collections
[1487/1510] Compiling Collections Collections.swift
[1492/1511] Wrapping AST for Collections for debugging
[1494/1638] Compiling HTMLKit VectorAttributes.swift
[1495/1638] Compiling HTMLKit BasicElements.swift
[1496/1638] Compiling HTMLKit BodyElements.swift
[1497/1638] Compiling HTMLKit DefinitionElements.swift
[1498/1638] Compiling HTMLKit FigureElements.swift
[1499/1638] Compiling HTMLKit HtmlElements.swift
[1500/1638] Compiling HTMLKit InputElements.swift
[1501/1638] Compiling HTMLKit Environment.swift
[1502/1638] Compiling HTMLKit EnvironmentKeys.swift
[1503/1638] Compiling HTMLKit EnvironmentModifier.swift
[1504/1638] Compiling HTMLKit EnvironmentObject.swift
[1505/1638] Compiling HTMLKit EnvironmentString.swift
[1506/1638] Compiling HTMLKit EnvironmentValue.swift
[1507/1638] Compiling HTMLKit Negation.swift
[1508/1638] Compiling HTMLKit Nullable.swift
[1509/1638] Compiling HTMLKit Layouts.swift
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
[1510/1638] Compiling HTMLKit Node.swift
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
[1511/1638] Compiling HTMLKit Nodes.swift
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
[1512/1638] Compiling HTMLKit Content.swift
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
[1513/1638] Compiling HTMLKit Features.swift
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
[1514/1638] Compiling HTMLKit Markdown+Character.swift
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
[1515/1638] Compiling HTMLKit MarkdownLexer.swift
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
[1516/1638] Emitting module Atomics
[1518/1646] Compiling HTMLKit Relation.swift
[1519/1646] Compiling HTMLKit Sequence.swift
[1520/1646] Compiling HTMLKit Statement.swift
[1521/1646] Compiling HTMLKit Comparable+HTMLKit.swift
[1522/1646] Compiling HTMLKit Datatypes+Content.swift
[1523/1646] Compiling HTMLKit Optional+HTMLKit.swift
[1524/1646] Compiling HTMLKit InterpolationArgument.swift
[1525/1646] Compiling HTMLKit Locale.swift
[1526/1646] Compiling HTMLKit Localizable.swift
[1527/1646] Compiling HTMLKit Localization.swift
[1528/1646] Compiling HTMLKit LocalizedString.swift
[1529/1646] Compiling HTMLKit LocalizedStringKey.swift
[1530/1646] Compiling HTMLKit TranslationTable.swift
[1531/1646] Compiling HTMLKit Attribute.swift
[1532/1646] Compiling HTMLKit Element.swift
[1533/1646] Compiling HTMLKit Elements.swift
[1534/1705] Emitting module Crypto
[1535/1714] Emitting module Algorithms
[1537/1715] Compiling NIOCore GlobalSingletons.swift
[1538/1715] Compiling NIOCore IO.swift
[1539/1715] Compiling NIOCore IOData.swift
[1540/1715] Compiling NIOCore IPProtocol.swift
[1541/1715] Compiling NIOCore IntegerBitPacking.swift
[1542/1715] Compiling NIOCore IntegerTypes.swift
[1543/1715] Compiling NIOCore Interfaces.swift
[1544/1715] Compiling NIOCore Linux.swift
[1545/1715] Compiling HTMLKit MarkdownNode.swift
[1546/1715] Compiling HTMLKit MarkdownParser.swift
[1547/1715] Compiling HTMLKit Renderer.swift
[1548/1715] Compiling HTMLKit Security.swift
[1549/1715] Compiling Crypto AESWrap_boring.swift
[1550/1715] Compiling Crypto Ed25519_boring.swift
[1551/1715] Compiling Crypto NISTCurvesKeys_boring.swift
[1552/1715] Compiling Crypto X25519Keys_boring.swift
[1553/1715] Compiling Crypto Curve25519.swift
[1554/1715] Compiling Crypto Ed25519Keys.swift
[1555/1715] Compiling Crypto NISTCurvesKeys.swift
[1556/1715] Compiling Crypto X25519Keys.swift
[1557/1715] Compiling NIOCore EventLoop+Deprecated.swift
[1558/1715] Compiling NIOCore EventLoop+SerialExecutor.swift
[1559/1715] Compiling NIOCore MarkedCircularBuffer.swift
[1560/1715] Compiling NIOCore MulticastChannel.swift
[1561/1715] Compiling NIOCore NIOAny.swift
[1562/1715] Compiling NIOCore NIOCloseOnErrorHandler.swift
[1563/1715] Compiling NIOCore NIOLoopBound.swift
[1564/1715] Compiling NIOCore NIOScheduledCallback.swift
[1565/1715] Compiling NIOCore NIOSendable.swift
[1566/1715] Compiling NIOCore RecvByteBufferAllocator.swift
[1567/1715] Compiling NIOCore EventLoopFuture.swift
[1568/1715] Compiling NIOCore FileDescriptor.swift
[1569/1715] Compiling NIOCore FileHandle.swift
[1570/1715] Compiling NIOCore FileRegion.swift
[1571/1715] Compiling NIOCore ChannelPipeline.swift
[1572/1715] Compiling NIOCore CircularBuffer.swift
[1573/1715] Compiling NIOCore Codec.swift
[1574/1715] Compiling NIOCore ConvenienceOptionSupport.swift
[1575/1715] Compiling NIOCore DeadChannel.swift
[1576/1715] Compiling NIOCore DispatchQueue+WithFuture.swift
[1577/1715] Compiling NIOCore ByteBuffer-views.swift
[1578/1715] Compiling NIOCore Channel.swift
[1579/1715] Compiling NIOCore ChannelHandler.swift
[1580/1715] Compiling NIOCore ChannelHandlers.swift
[1581/1715] Compiling NIOCore ChannelInvoker.swift
[1582/1715] Compiling NIOCore ChannelOption.swift
[1583/1715] Compiling NIOCore EventLoop.swift
[1584/1715] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[1585/1715] Compiling NIOCore EventLoopFuture+Deprecated.swift
[1586/1715] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
[1594/1715] Compiling NIOCore BSDSocketAPI.swift
[1595/1715] Compiling NIOCore ByteBuffer-aux.swift
[1596/1715] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[1597/1715] Compiling NIOCore ByteBuffer-conversions.swift
[1598/1715] Compiling NIOCore ByteBuffer-core.swift
[1599/1715] Compiling NIOCore ByteBuffer-hex.swift
[1600/1715] Compiling NIOCore ByteBuffer-int.swift
[1601/1715] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[1602/1715] Compiling NIOCore ByteBuffer-multi-int.swift
[1603/1715] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[1604/1715] Compiling NIOCore AddressedEnvelope.swift
[1605/1715] Compiling NIOCore AsyncAwaitSupport.swift
[1606/1715] Compiling NIOCore AsyncChannel.swift
[1607/1715] Compiling NIOCore AsyncChannelHandler.swift
[1608/1715] Compiling NIOCore AsyncChannelInboundStream.swift
[1609/1715] Compiling NIOCore AsyncChannelOutboundWriter.swift
[1610/1715] Compiling NIOCore NIOAsyncSequenceProducer.swift
[1611/1715] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[1612/1715] Compiling NIOCore NIOAsyncWriter.swift
[1613/1715] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[1622/1723] Compiling Crypto Signature.swift
[1623/1723] Compiling Crypto CryptoKitErrors_boring.swift
[1624/1723] Compiling Crypto RNG_boring.swift
[1625/1723] Compiling Crypto SafeCompare_boring.swift
[1626/1723] Compiling Crypto Zeroization_boring.swift
[1627/1723] Compiling Crypto PrettyBytes.swift
[1628/1723] Compiling Crypto SafeCompare.swift
[1629/1723] Compiling Crypto SecureBytes.swift
[1630/1723] Compiling Crypto Zeroization.swift
[1648/1724] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[1649/1724] Compiling NIOCore SocketAddresses.swift
[1650/1724] Compiling NIOCore SocketOptionProvider.swift
[1651/1724] Compiling NIOCore SystemCallHelpers.swift
[1652/1724] Compiling NIOCore TimeAmount+Duration.swift
[1653/1724] Compiling NIOCore TypeAssistedChannelHandler.swift
[1654/1724] Compiling NIOCore UniversalBootstrapSupport.swift
[1655/1724] Compiling NIOCore Utilities.swift
[1698/1724] Emitting module NIOCore
[1708/1776] Emitting module NIOEmbedded
[1709/1776] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[1710/1776] Compiling NIOEmbedded Embedded.swift
[1711/1776] Compiling NIOEmbedded AsyncTestingChannel.swift
[1713/1777] Emitting module NIOPosix
[1714/1783] Compiling NIOPosix ServerSocket.swift
[1715/1783] Compiling NIOPosix Socket.swift
[1716/1783] Compiling NIOPosix SocketChannel.swift
[1717/1783] Compiling NIOPosix SocketProtocols.swift
[1718/1783] Compiling NIOPosix System.swift
[1719/1783] Compiling NIOPosix Thread.swift
[1720/1783] Compiling NIOPosix PooledRecvBufferAllocator.swift
[1721/1783] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[1722/1783] Compiling NIOPosix PosixSingletons.swift
[1723/1783] Compiling NIOPosix RawSocketBootstrap.swift
[1724/1783] Compiling NIOPosix Resolver.swift
[1725/1783] Compiling NIOPosix Selectable.swift
[1726/1783] Compiling NIOPosix SelectableChannel.swift
[1727/1783] Compiling NIOPosix SelectableEventLoop.swift
[1728/1783] Compiling NIOPosix SelectorEpoll.swift
[1729/1783] Compiling NIOPosix SelectorGeneric.swift
[1730/1783] Compiling NIOPosix SelectorKqueue.swift
[1731/1783] Compiling NIOPosix SelectorUring.swift
[1732/1783] Emitting module HTMLKit
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:6:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
1 | /// An option set of features.
2 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
3 |
4 | public var rawValue: Int
5 |
6 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'markdown' 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
7 |
8 | public init(rawValue: Int) {
[1733/1783] Compiling NIOPosix ThreadPosix.swift
[1734/1783] Compiling NIOPosix ThreadWindows.swift
[1735/1783] Compiling NIOPosix UnsafeTransfer.swift
[1736/1783] Compiling NIOPosix Utilities.swift
[1737/1783] Compiling NIOPosix VsockAddress.swift
[1738/1783] Compiling NIOPosix VsockChannelEvents.swift
[1739/1783] Compiling NIOPosix BSDSocketAPICommon.swift
[1740/1783] Compiling NIOPosix BSDSocketAPIPosix.swift
[1741/1783] Compiling NIOPosix BSDSocketAPIWindows.swift
[1742/1783] Compiling NIOPosix BaseSocket.swift
[1743/1783] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[1744/1783] Compiling NIOPosix BaseSocketChannel.swift
[1745/1783] Compiling NIOPosix BaseStreamSocketChannel.swift
[1746/1783] Compiling NIOPosix Bootstrap.swift
[1747/1783] Compiling NIOPosix ControlMessage.swift
[1748/1783] Compiling NIOPosix DatagramVectorReadManager.swift
[1749/1783] Compiling NIOPosix Errors+Any.swift
[1750/1783] Compiling NIOPosix FileDescriptor.swift
[1751/1783] Compiling NIOPosix GetaddrinfoResolver.swift
[1752/1783] Compiling NIOPosix HappyEyeballs.swift
[1753/1783] Compiling NIOPosix IO.swift
[1754/1783] Compiling NIOPosix IntegerBitPacking.swift
[1755/1783] Compiling NIOPosix IntegerTypes.swift
[1756/1783] Compiling NIOPosix Linux.swift
[1757/1783] Compiling NIOPosix LinuxCPUSet.swift
[1758/1783] Compiling NIOPosix LinuxUring.swift
[1759/1783] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[1760/1783] Compiling NIOPosix NIOThreadPool.swift
[1761/1783] Compiling NIOPosix NonBlockingFileIO.swift
[1762/1783] Compiling NIOPosix PendingDatagramWritesManager.swift
[1763/1783] Compiling NIOPosix PendingWritesManager.swift
[1764/1783] Compiling NIOPosix PipeChannel.swift
[1765/1783] Compiling NIOPosix PipePair.swift
[1766/1783] Compiling NIOPosix Pool.swift
[1768/1843] Compiling NIO Exports.swift
[1769/1843] Emitting module NIO
[1771/1844] Compiling _NIOFileSystem FileChunks.swift
[1772/1844] Compiling _NIOFileSystem FileHandle.swift
[1773/1844] Compiling _NIOFileSystem FileHandleProtocol.swift
[1774/1844] Compiling _NIOFileSystem FileSystemProtocol.swift
[1775/1844] Compiling _NIOFileSystem FileType.swift
[1776/1844] Compiling _NIOFileSystem IOStrategy.swift
[1777/1885] Compiling NIOTLS TLSEvents.swift
[1778/1885] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[1779/1885] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[1780/1885] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[1781/1885] Compiling _NIOFileSystem FileInfo.swift
[1782/1885] Compiling _NIOFileSystem FileSystem.swift
[1783/1885] Compiling _NIOFileSystem BufferedOrAnyStream.swift
[1784/1885] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[1785/1885] Compiling NIOHTTP1 HTTPTypes.swift
[1786/1885] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[1787/1885] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[1788/1885] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[1789/1885] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[1790/1885] Emitting module NIOTLS
[1791/1885] Compiling NIOSOCKS SOCKSResponse.swift
[1792/1886] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[1793/1886] Compiling NIOSOCKS ClientStateMachine.swift
[1794/1886] Emitting module NIOSOCKS
[1795/1886] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[1796/1886] Compiling NIOSOCKS AuthenticationMethod.swift
[1797/1886] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[1798/1886] Compiling NIOSOCKS SOCKSClientHandler.swift
[1799/1886] Compiling NIOSOCKS SOCKSServerHandshakeHandler.swift
[1800/1886] Compiling NIOSOCKS Messages.swift
[1801/1886] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[1804/1886] Compiling NIOSOCKS ServerStateMachine.swift
[1805/1887] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[1806/1887] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[1807/1887] Compiling NIOTLS SNIHandler.swift
[1810/1888] Compiling AsyncKit Optional+StrictMap.swift
[1811/1888] Compiling AsyncKit Exports.swift
[1812/1888] Compiling _NIOFileSystem ParallelDirCopy.swift
[1813/1888] Compiling _NIOFileSystem ParallelRemoval.swift
[1814/1888] Compiling _NIOFileSystem String+UnsafeUnititializedCapacity.swift
[1815/1888] Compiling _NIOFileSystem CInterop.swift
[1816/1888] Compiling _NIOFileSystem Errno.swift
[1817/1888] Compiling _NIOFileSystem FileDescriptor+Syscalls.swift
[1818/1888] Compiling _NIOFileSystem Mocking.swift
[1819/1888] Compiling _NIOFileSystem Syscall.swift
[1820/1888] Compiling _NIOFileSystem Syscalls.swift
[1821/1892] Emitting module NIOFoundationCompat
[1822/1892] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[1823/1893] Emitting module _NIOFileSystem
[1829/1893] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[1830/1893] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[1833/1895] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[1834/1924] Compiling NIOSSL NIOSSLHandler.swift
[1835/1924] Compiling NIOSSL AndroidCABundle.swift
[1836/1928] Compiling NIOSSL SSLConnection.swift
[1837/1928] Compiling NIOSSL SSLContext.swift
[1838/1928] Compiling NIOSSL NIOSSLServerHandler.swift
[1839/1928] Compiling NIOSSL ObjectIdentifier.swift
[1840/1928] Compiling NIOSSL PosixPort.swift
[1841/1946] Emitting module NIOTransportServices
[1842/1948] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[1843/1948] Compiling NIOTransportServices NIOTSListenerBootstrap.swift
[1844/1948] Compiling NIOTransportServices NIOTSListenerChannel.swift
[1845/1948] Compiling NIOTransportServices NIOTSBootstraps.swift
[1846/1948] Compiling NIOTransportServices NIOTSChannelOptions.swift
[1847/1948] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[1848/1948] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[1849/1948] Compiling NIOTransportServices NIOTSErrors.swift
[1850/1948] Compiling NIOTransportServices NIOTSEventLoop.swift
[1851/1948] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[1852/1948] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[1853/1948] Compiling NIOTransportServices StateManagedChannel.swift
[1854/1948] Compiling NIOTransportServices StateManagedListenerChannel.swift
[1855/1948] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[1856/1948] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[1857/1948] Compiling NIOTransportServices NIOTSSingletons.swift
[1858/1948] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
[1862/1948] Compiling NIOSSL SSLPrivateKey.swift
[1863/1948] Compiling NIOSSL NIOSSLSecureBytes.swift
[1864/1948] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[1870/1948] Compiling NIOTransportServices AcceptHandler.swift
[1871/1948] Compiling NIOTransportServices NIOTSDatagramBootstrap.swift
[1872/1948] Compiling NIOTransportServices NIOTSDatagramChannel.swift
[1873/1948] Compiling NIOTransportServices NIOTSDatagramListener.swift
[1874/1948] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
[1880/1949] Emitting module NIOHTTP1
[1884/1995] Compiling NIOWebSocket WebSocketErrorCodes.swift
[1885/1996] Compiling _NIOFileSystem SystemFileHandle.swift
[1886/1996] Compiling _NIOFileSystem Utilities.swift
[1887/1996] Compiling _NIOFileSystem OpenOptions.swift
[1888/1996] Compiling _NIOFileSystem String+FileSystem.swift
[1889/1996] Compiling NIOWebSocket WebSocketOpcode.swift
[1890/1996] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[1892/1996] Compiling NIOSSL RNG.swift
[1893/1996] Compiling NIOSSL SafeCompare.swift
[1894/1996] Compiling NIOSSL Zeroization.swift
[1899/1999] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[1900/1999] Compiling NIOHTTPCompression HTTPCompression.swift
[1901/1999] Emitting module NIOHTTPCompression
[1902/1999] Compiling NIOExtras LineBasedFrameDecoder.swift
[1903/1999] Compiling NIOExtras MarkedCircularBuffer+PopFirstCheckMarked.swift
[1904/2001] Compiling NIOExtras NIOExtrasError.swift
[1905/2001] Compiling NIOExtras NIOLengthFieldBitLength.swift
[1910/2001] Compiling NIOHTTPCompression HTTPDecompression.swift
[1911/2001] Compiling NIOHPACK IndexedHeaderTable.swift
[1912/2001] Compiling NIOHPACK IntegerCoding.swift
[1913/2002] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[1914/2002] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[1915/2002] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[1916/2002] Compiling NIOExtras NIORequestIdentifiable.swift
[1917/2002] Compiling NIOExtras PCAPRingBuffer.swift
[1918/2002] Compiling NIOExtras QuiescingHelper.swift
[1919/2002] Compiling NIOExtras RequestResponseHandler.swift
[1920/2002] Compiling NIOHPACK HPACKEncoder.swift
[1921/2002] Compiling NIOHPACK HPACKErrors.swift
[1922/2002] Compiling NIOHPACK StaticHeaderTable.swift
[1923/2002] Compiling NIOHPACK HuffmanTables.swift
[1924/2002] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[1925/2002] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[1926/2002] Emitting module NIOWebSocket
[1927/2002] Compiling NIOHPACK DynamicHeaderTable.swift
[1928/2002] Compiling NIOHPACK HPACKDecoder.swift
[1929/2003] Compiling NIOHPACK HuffmanCoding.swift
[1930/2003] Compiling NIOHPACK HPACKHeader.swift
[1931/2003] Compiling NIOHPACK HeaderTables.swift
[1932/2003] Compiling NIOExtras LengthFieldBasedFrameDecoder.swift
[1933/2003] Compiling NIOExtras LengthFieldPrepender.swift
[1940/2003] Compiling NIOExtras RequestResponseWithIDHandler.swift
[1941/2003] Compiling NIOExtras WritePCAPHandler.swift
[1949/2003] Compiling NIOWebSocket WebSocketFrame.swift
[1950/2005] Emitting module NIOSSL
[1961/2005] Emitting module NIOHPACK
[1962/2005] Emitting module NIOExtras
[1963/2009] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
[1965/2009] Compiling MultipartKit FormDataDecoder.Decoder.swift
[1966/2009] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
[1970/2030] Emitting module _NIOFileSystemFoundationCompat
[1971/2030] Emitting module NIOFileSystem
[1972/2030] Compiling NIOFileSystem Exports.swift
[1973/2030] Compiling MultipartKit FormDataEncoder.swift
[1974/2030] Compiling MultipartKit Storage.swift
[1975/2033] Compiling _NIOFileSystemFoundationCompat Data+FileSystem.swift
[1976/2033] Compiling _NIOFileSystemFoundationCompat Date+FileInfo.swift
[1977/2082] Compiling NIOHTTP2 SendingHeadersState.swift
[1978/2082] Compiling NIOHTTP2 SendingPushPromiseState.swift
[1979/2082] Compiling NIOHTTP2 SendingRstStreamState.swift
[1980/2087] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[1981/2087] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[1983/2092] Compiling NIOHTTP2 ConnectionStreamsState.swift
[1984/2092] Compiling NIOHTTP2 MayReceiveFrames.swift
[1985/2092] Compiling NIOHTTP2 ReceivingDataState.swift
[1986/2093] Emitting module MultipartKit
[1991/2093] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[1992/2093] Compiling NIOHTTP2 HTTP2SettingsState.swift
[1993/2093] Compiling NIOHTTP2 ConnectionStateMachine.swift
[1994/2093] Compiling NIOHTTP2 MaySendFrames.swift
[1995/2093] Compiling NIOHTTP2 SendingDataState.swift
[1996/2093] Compiling NIOHTTP2 SendingGoawayState.swift
[1997/2093] Compiling NIOHTTP2 HasFlowControlWindows.swift
[1998/2093] Compiling NIOHTTP2 HasLocalSettings.swift
[1999/2093] Compiling NIOHTTP2 Error+Any.swift
[2000/2093] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[2001/2093] Compiling NIOHTTP2 ControlFrameBuffer.swift
[2002/2093] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[2003/2093] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[2004/2094] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[2005/2094] Compiling NIOHTTP2 ReceivingHeadersState.swift
[2022/2111] Compiling WebSocketKit Exports.swift
[2023/2111] Emitting module AsyncKit
[2024/2111] Compiling WebSocketKit WebSocket+Connect.swift
[2025/2111] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[2026/2111] Compiling WebSocketKit WebSocketHandler.swift
[2027/2111] Compiling WebSocketKit WebSocket+Concurrency.swift
[2028/2111] Emitting module WebSocketKit
[2029/2111] Compiling WebSocketKit WebSocket.swift
[2030/2111] Compiling WebSocketKit WebSocketClient.swift
[2032/2112] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[2033/2112] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[2034/2112] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[2035/2112] Compiling NIOHTTP2 HTTP2StreamID.swift
[2036/2112] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[2037/2112] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[2038/2112] Compiling NIOHTTP2 HTTP2UserEvents.swift
[2039/2112] Compiling NIOHTTP2 InboundEventBuffer.swift
[2040/2112] Compiling NIOHTTP2 InboundWindowManager.swift
[2041/2112] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[2042/2112] Compiling NIOHTTP2 StreamChannelFlowController.swift
[2043/2112] Compiling NIOHTTP2 StreamChannelList.swift
[2044/2112] Compiling NIOHTTP2 StreamMap.swift
[2045/2112] Compiling NIOHTTP2 StreamStateMachine.swift
[2046/2112] Compiling NIOHTTP2 UnsafeTransfer.swift
[2047/2112] Compiling NIOHTTP2 WatermarkedFlowController.swift
[2048/2112] Emitting module NIOHTTP2
[2058/2112] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[2059/2112] Compiling NIOHTTP2 HTTP2Frame.swift
[2060/2112] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[2061/2112] Compiling NIOHTTP2 HTTP2FrameParser.swift
[2062/2112] Compiling NIOHTTP2 HTTP2PingData.swift
[2063/2112] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[2064/2112] Compiling NIOHTTP2 HTTP2Settings.swift
[2065/2112] Compiling NIOHTTP2 HTTP2Stream.swift
[2066/2112] Compiling NIOHTTP2 StateMachineResult.swift
[2067/2112] Compiling NIOHTTP2 ContentLengthVerifier.swift
[2068/2112] Compiling NIOHTTP2 DOSHeuristics.swift
[2072/2112] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[2073/2112] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[2077/2112] Compiling NIOHTTP2 HasRemoteSettings.swift
[2078/2112] Compiling NIOHTTP2 LocallyQuiescingState.swift
[2079/2112] Compiling NIOHTTP2 QuiescingState.swift
[2080/2112] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[2081/2112] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[2082/2112] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[2083/2112] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[2084/2112] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[2085/2112] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[2086/2112] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[2087/2112] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[2088/2112] Compiling NIOHTTP2 HTTP2Error.swift
[2089/2112] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[2091/2172] Emitting module AsyncHTTPClient
[2092/2180] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[2093/2180] Compiling AsyncHTTPClient ConnectionTarget.swift
[2094/2180] Compiling AsyncHTTPClient DeconstructedURL.swift
[2095/2180] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[2096/2180] Compiling AsyncHTTPClient FoundationExtensions.swift
[2097/2180] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[2098/2180] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[2099/2180] Compiling AsyncHTTPClient HTTPClient+StructuredConcurrency.swift
[2100/2180] Compiling AsyncHTTPClient AnyAsyncSequence.swift
[2101/2180] Compiling AsyncHTTPClient AnyAsyncSequenceProucerDelete.swift
[2102/2180] Compiling AsyncHTTPClient AsyncLazySequence.swift
[2103/2180] Compiling AsyncHTTPClient HTTPClient+execute.swift
[2104/2180] Compiling AsyncHTTPClient HTTPClient+shutdown.swift
[2105/2180] Compiling AsyncHTTPClient HTTPClientRequest+Prepared.swift
[2106/2180] Compiling AsyncHTTPClient HTTPClientRequest+auth.swift
[2107/2180] Compiling AsyncHTTPClient HTTPClientRequest.swift
[2108/2180] Compiling AsyncHTTPClient HTTPClientResponse.swift
[2109/2180] Compiling AsyncHTTPClient RequestBag.swift
[2110/2180] Compiling AsyncHTTPClient RequestValidation.swift
[2111/2180] Compiling AsyncHTTPClient SSLContextCache.swift
[2112/2180] Compiling AsyncHTTPClient Scheme.swift
[2113/2180] Compiling AsyncHTTPClient Singleton.swift
[2114/2180] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[2115/2180] Compiling AsyncHTTPClient StructuredConcurrencyHelpers.swift
[2116/2180] Compiling AsyncHTTPClient Utils.swift
[2117/2180] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[2118/2180] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[2119/2180] Compiling AsyncHTTPClient Transaction.swift
[2120/2180] Compiling AsyncHTTPClient Base64.swift
[2121/2180] Compiling AsyncHTTPClient BasicAuth.swift
[2122/2180] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[2123/2180] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[2124/2180] Compiling AsyncHTTPClient ConnectionPool.swift
[2125/2180] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[2126/2180] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[2127/2180] Compiling AsyncHTTPClient RequestOptions.swift
[2128/2180] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[2129/2180] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[2130/2180] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[2131/2180] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[2132/2180] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[2133/2180] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[2134/2180] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[2135/2180] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[2136/2180] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[2137/2180] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[2138/2180] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[2139/2180] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[2140/2180] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[2141/2180] Compiling AsyncHTTPClient RequestBodyLength.swift
[2142/2180] Compiling AsyncHTTPClient HTTPClient.swift
[2143/2180] Compiling AsyncHTTPClient HTTPHandler.swift
[2144/2180] Compiling AsyncHTTPClient LRUCache.swift
[2145/2180] Compiling AsyncHTTPClient NWErrorHandler.swift
[2146/2180] Compiling AsyncHTTPClient NWWaitingHandler.swift
[2147/2180] Compiling AsyncHTTPClient TLSConfiguration.swift
[2148/2180] Compiling AsyncHTTPClient RedirectState.swift
[2149/2180] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[2150/2180] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[2151/2180] Compiling AsyncHTTPClient TLSEventsHandler.swift
[2152/2180] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[2153/2180] Compiling AsyncHTTPClient HTTP1Connection.swift
[2154/2180] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[2155/2180] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[2156/2180] Compiling AsyncHTTPClient HTTP2Connection.swift
[2157/2180] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[2166/2351] Compiling Vapor HTTPServerResponseEncoder.swift
[2167/2351] Compiling Vapor HTTPServerUpgradeHandler.swift
[2168/2351] Compiling Vapor Logger+Report.swift
[2169/2351] Compiling Vapor LoggingSystem+Environment.swift
[2170/2351] Compiling Vapor Application+Middleware.swift
[2171/2351] Compiling Vapor CORSMiddleware.swift
[2172/2351] Compiling Vapor ErrorMiddleware.swift
[2173/2351] Compiling Vapor FileMiddleware.swift
[2174/2351] Compiling Vapor Middleware.swift
[2175/2351] Compiling Vapor MiddlewareConfiguration.swift
[2176/2351] Compiling Vapor ResponseCompressionMiddleware.swift
[2177/2351] Compiling Vapor RouteLoggingMiddleware.swift
[2178/2351] Compiling Vapor TracingMiddleware.swift
[2179/2351] Compiling Vapor File+Multipart.swift
[2180/2351] Compiling Vapor FormDataDecoder+Content.swift
[2181/2351] Compiling Vapor FormDataEncoder+Content.swift
[2182/2351] Compiling Vapor Application+Password.swift
[2183/2351] Compiling Vapor Application+Passwords.swift
[2184/2351] Compiling Vapor AsyncPasswordHasher.swift
[2185/2351] Compiling Vapor BcryptHasher.swift
[2186/2351] Compiling Vapor PasswordHasher.swift
[2187/2351] Compiling Vapor PlaintextHasher.swift
[2188/2351] Compiling Vapor Request+Password.swift
[2189/2351] Compiling Vapor Redirect.swift
[2190/2375] Compiling Vapor Request+Body.swift
[2191/2375] Compiling Vapor Request+BodyStream.swift
[2192/2375] Compiling Vapor Request.swift
[2193/2375] Compiling Vapor Application+Responder.swift
[2194/2375] Compiling Vapor DefaultResponder.swift
[2195/2375] Compiling Vapor Response+Body.swift
[2196/2375] Compiling Vapor Response.swift
[2197/2375] Compiling Vapor ResponseCodable.swift
[2198/2375] Compiling Vapor Application+Routes.swift
[2199/2375] Compiling Vapor Parameters+Require.swift
[2200/2375] Compiling Vapor Request+WebSocket.swift
[2201/2375] Compiling Vapor Route.swift
[2202/2375] Compiling Vapor RouteCollection.swift
[2203/2375] Compiling Vapor Routes.swift
[2204/2375] Compiling Vapor RoutesBuilder+Group.swift
[2205/2375] Compiling Vapor RoutesBuilder+Method.swift
[2206/2375] Compiling Vapor RoutesBuilder+Middleware.swift
[2207/2375] Compiling Vapor RoutesBuilder+WebSocket.swift
[2208/2375] Compiling Vapor RoutesBuilder.swift
[2209/2375] Compiling Vapor OTP.swift
[2210/2375] Compiling Vapor Application+Servers.swift
[2211/2375] Compiling Vapor Server.swift
[2212/2375] Compiling Vapor App+Service.swift
[2213/2375] Compiling Vapor Req+Service.swift
[2214/2375] Compiling Vapor Core.swift
[2215/2375] Compiling Vapor Running.swift
[2216/2375] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[2217/2375] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[2218/2375] Compiling Vapor DotEnvFile+load.swift
[2219/2375] Compiling Vapor Routes+caseInsenstive.swift
[2220/2375] Compiling Vapor Validatable+validate.swift
[2221/2375] Compiling Vapor Environment+Process.swift
[2222/2375] Compiling Vapor Environment+Secret.swift
[2223/2375] Compiling Vapor Environment.swift
[2224/2375] Compiling Vapor Abort.swift
[2225/2375] Compiling Vapor AbortError.swift
[2226/2375] Compiling Vapor DebuggableError.swift
[2227/2375] Compiling Vapor Demangler.swift
[2228/2375] Compiling Vapor ErrorSource.swift
[2229/2375] Compiling Vapor StackTrace.swift
[2230/2375] Compiling Vapor Exports.swift
[2231/2375] Compiling Vapor Application+HTTP.swift
[2232/2375] Compiling Vapor BasicResponder.swift
[2233/2375] Compiling Vapor BodyStream.swift
[2234/2375] Compiling Vapor Application+HTTP+Client.swift
[2235/2375] Compiling Vapor EventLoopHTTPClient.swift
[2236/2375] Compiling Vapor EndpointCache.swift
[2237/2375] Compiling Vapor HTTPMethod+String.swift
[2238/2375] Compiling Vapor AsyncBasicResponder.swift
[2239/2375] Compiling Vapor AsyncMiddleware.swift
[2240/2375] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
[2241/2375] Compiling Vapor AsyncSessionDriver.swift
[2242/2375] Compiling Vapor Authentication+Concurrency.swift
[2243/2375] Compiling Vapor Cache+Concurrency.swift
[2244/2375] Compiling Vapor Client+Concurrency.swift
[2245/2375] Compiling Vapor RequestBody+Concurrency.swift
[2246/2375] Compiling Vapor Responder+Concurrency.swift
[2247/2375] Compiling Vapor ResponseCodable+Concurrency.swift
[2248/2375] Compiling Vapor RoutesBuilder+Concurrency.swift
[2249/2375] Compiling Vapor ViewRenderer+Concurrency.swift
[2250/2375] Compiling Vapor WebSocket+Concurrency.swift
[2251/2375] Compiling Vapor ContainerGetPathExecutor.swift
[2252/2375] Compiling Vapor Content.swift
[2253/2375] Compiling Vapor ContentCoders.swift
[2254/2375] Compiling Vapor ContentConfiguration.swift
[2255/2375] Compiling Vapor ContentContainer.swift
[2256/2375] Compiling Vapor JSONCoder+Custom.swift
[2257/2375] Compiling Vapor JSONCoders+Content.swift
[2258/2375] Compiling Vapor PlaintextDecoder.swift
[2259/2375] Compiling Vapor PlaintextEncoder.swift
[2260/2375] Compiling Vapor URLQueryCoders.swift
[2261/2375] Compiling Vapor URLQueryContainer.swift
[2262/2375] Compiling Vapor Application.swift
[2263/2375] Compiling Vapor AuthenticationCache.swift
[2264/2375] Compiling Vapor Authenticator.swift
[2265/2375] Compiling Vapor BasicAuthorization.swift
[2266/2375] Compiling Vapor BearerAuthorization.swift
[2267/2375] Compiling Vapor GuardMiddleware.swift
[2268/2375] Compiling Vapor RedirectMiddleware.swift
[2269/2375] Compiling Vapor SessionAuthenticatable.swift
[2270/2375] Compiling Vapor Bcrypt.swift
[2271/2375] Compiling Vapor Application+Cache.swift
[2272/2375] Compiling Vapor Cache.swift
[2273/2375] Compiling Vapor CacheExpirationTime.swift
[2274/2375] Compiling Vapor MemoryCache.swift
[2275/2375] Compiling Vapor Request+Cache.swift
[2276/2375] Compiling Vapor Application+Clients.swift
[2277/2375] Compiling Vapor Client.swift
[2278/2375] Compiling Vapor ClientRequest.swift
[2279/2375] Compiling Vapor ClientResponse.swift
[2280/2375] Compiling Vapor Request+Client.swift
[2281/2375] Compiling Vapor BootCommand.swift
[2282/2375] Compiling Vapor CommandContext+Application.swift
[2283/2375] Compiling Vapor RoutesCommand.swift
[2284/2375] Compiling Vapor ServeCommand.swift
[2285/2375] Compiling Vapor AnyResponse+Concurrency.swift
[2286/2399] Compiling Vapor HTTPStatus.swift
[2287/2399] Compiling Vapor HTTPCookies.swift
[2288/2399] Compiling Vapor HTTPHeaderCacheControl.swift
[2289/2399] Compiling Vapor HTTPHeaderExpires.swift
[2290/2399] Compiling Vapor HTTPHeaderLastModified.swift
[2291/2399] Compiling Vapor HTTPHeaders+Cache.swift
[2292/2399] Compiling Vapor HTTPHeaders+Connection.swift
[2293/2399] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[2294/2400] Wrapping AST for HTMLKit for debugging
[2296/2400] Compiling Vapor Validator.swift
[2297/2400] Compiling Vapor ValidatorResult.swift
[2298/2400] Compiling Vapor And.swift
[2299/2400] Compiling Vapor Case.swift
[2300/2400] Compiling Vapor CharacterSet.swift
[2301/2400] Compiling Vapor Count.swift
[2302/2400] Compiling Vapor Custom.swift
[2303/2400] Compiling Vapor Email.swift
[2304/2400] Compiling Vapor Empty.swift
[2305/2400] Compiling Vapor In.swift
[2306/2400] Compiling Vapor Nil.swift
[2307/2400] Compiling Vapor NilIgnoring.swift
[2308/2400] Compiling Vapor Not.swift
[2309/2400] Compiling Vapor Or.swift
[2310/2400] Compiling Vapor Pattern.swift
[2311/2400] Compiling Vapor Range.swift
[2312/2400] Compiling Vapor URL.swift
[2313/2400] Compiling Vapor Valid.swift
[2314/2400] Compiling Vapor Application+Views.swift
[2315/2400] Compiling Vapor PlaintextRenderer.swift
[2316/2400] Compiling Vapor Request+View.swift
[2317/2400] Compiling Vapor View.swift
[2318/2400] Compiling Vapor ViewRenderer.swift
[2319/2400] Compiling Vapor _Deprecations.swift
[2320/2448] Emitting module Vapor
[2321/2448] Compiling Vapor Service.swift
[2322/2448] Compiling Vapor Application+Sessions.swift
[2323/2448] Compiling Vapor MemorySessions.swift
[2324/2448] Compiling Vapor Request+Session.swift
[2325/2448] Compiling Vapor Session.swift
[2326/2448] Compiling Vapor SessionCache.swift
[2327/2448] Compiling Vapor SessionData.swift
[2328/2448] Compiling Vapor SessionDriver.swift
[2329/2448] Compiling Vapor SessionsConfiguration.swift
[2330/2448] Compiling Vapor SessionsMiddleware.swift
[2331/2448] Compiling Vapor URLEncodedFormData.swift
[2332/2448] Compiling Vapor URLEncodedFormDecoder.swift
[2333/2448] Compiling Vapor URLEncodedFormEncoder.swift
[2334/2448] Compiling Vapor URLEncodedFormError.swift
[2335/2448] Compiling Vapor URLEncodedFormParser.swift
[2336/2448] Compiling Vapor URLEncodedFormSerializer.swift
[2337/2448] Compiling Vapor URLQueryFragmentConvertible.swift
[2338/2448] Compiling Vapor AnyResponse.swift
[2339/2448] Compiling Vapor Array+Random.swift
[2340/2448] Compiling Vapor Base32.swift
[2341/2448] Compiling Vapor Base64.swift
[2342/2448] Compiling Vapor BaseN.swift
[2343/2448] Compiling Vapor BasicCodingKey.swift
[2344/2448] Compiling Vapor ByteCount.swift
[2345/2448] Compiling Vapor Bytes+Hex.swift
[2346/2448] Compiling Vapor Bytes+SecureCompare.swift
[2347/2448] Compiling Vapor Collection+Safe.swift
[2348/2448] Compiling Vapor DataProtocol+Copy.swift
[2349/2448] Compiling Vapor DecoderUnwrapper.swift
[2350/2448] Compiling Vapor DirectoryConfiguration.swift
[2351/2448] Compiling Vapor DotEnv.swift
[2352/2448] Compiling Vapor Extendable.swift
[2353/2448] Compiling Vapor File.swift
[2354/2448] Compiling Vapor FileIO.swift
[2355/2448] Compiling Vapor LifecycleHandler.swift
[2356/2448] Compiling Vapor OptionalType.swift
[2357/2448] Compiling Vapor RFC1123.swift
[2358/2448] Compiling Vapor SocketAddress+Hostname.swift
[2359/2448] Compiling Vapor Storage.swift
[2360/2448] Compiling Vapor String+IsIPAddress.swift
[2361/2448] Compiling Vapor Thread.swift
[2362/2448] Compiling Vapor URI.swift
[2363/2448] Compiling Vapor RangeResult.swift
[2364/2448] Compiling Vapor Validatable.swift
[2365/2448] Compiling Vapor Validation.swift
[2366/2448] Compiling Vapor ValidationKey.swift
[2367/2448] Compiling Vapor Validations.swift
[2368/2448] Compiling Vapor ValidationsError.swift
[2369/2448] Compiling HTMLKitComponents Grouping.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2370/2448] Compiling HTMLKitComponents Image.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2371/2448] Compiling HTMLKitComponents Link.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2372/2448] Compiling HTMLKitComponents List.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2373/2448] Compiling HTMLKitComponents Modal.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2374/2448] Compiling HTMLKitComponents Navigation.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2375/2454] Compiling HTMLKitComponents Chart.swift
[2376/2454] Compiling HTMLKitComponents Disclosure.swift
[2377/2454] Compiling HTMLKitComponents Divider.swift
[2378/2454] Compiling HTMLKitComponents Dropdown.swift
[2379/2454] Compiling HTMLKitComponents Form.swift
[2380/2454] Compiling HTMLKitComponents Grid.swift
[2387/2454] Compiling HTMLKitComponents Video.swift
[2388/2454] Compiling HTMLKitComponents DragEvent.swift
[2389/2454] Compiling HTMLKitComponents FormEvent.swift
[2390/2454] Compiling HTMLKitComponents MouseEvent.swift
[2391/2454] Compiling HTMLKitComponents PressEvent.swift
[2392/2454] Compiling HTMLKitComponents Components+Image.swift
[2393/2454] Compiling HTMLKitComponents Components+String.swift
[2394/2454] Compiling HTMLKitComponents ButtonModifier.swift
[2395/2454] Compiling HTMLKitComponents GraphicsModifier.swift
[2396/2454] Compiling HTMLKitComponents ImageModifier.swift
[2397/2454] Compiling HTMLKitComponents InputModifier.swift
[2398/2454] Compiling HTMLKitComponents TextModifier.swift
[2405/2455] Compiling HTMLKitComponents ViewModifier.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
| |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'top' 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
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
| |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bottom' 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
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
| |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'leading' 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
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
| |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'trailing' 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
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
| |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'horizontal' 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
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
| |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'vertical' 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
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
[2406/2455] Compiling HTMLKitComponents Options.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
| |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'top' 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
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
| |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bottom' 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
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
| |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'leading' 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
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
| |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'trailing' 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
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
| |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'horizontal' 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
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
| |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'vertical' 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
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
[2407/2455] Compiling HTMLKitComponents Action.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
| |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'top' 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
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
| |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bottom' 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
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
| |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'leading' 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
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
| |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'trailing' 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
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
| |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'horizontal' 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
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
| |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'vertical' 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
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
[2408/2455] Compiling HTMLKitComponents Configurations.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
| |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'top' 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
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
| |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bottom' 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
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
| |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'leading' 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
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
| |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'trailing' 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
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
| |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'horizontal' 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
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
| |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'vertical' 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
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
[2409/2455] Compiling HTMLKitComponents DynamicType.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
| |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'top' 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
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
| |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bottom' 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
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
| |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'leading' 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
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
| |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'trailing' 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
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
| |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'horizontal' 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
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
| |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'vertical' 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
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
[2410/2455] Compiling HTMLKitComponents Actionable.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
| |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'top' 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
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
| |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bottom' 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
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
| |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'leading' 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
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
| |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'trailing' 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
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
| |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'horizontal' 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
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
| |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'vertical' 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
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2417/2455] Compiling HTMLKitComponents SubmitAction.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2418/2455] Compiling HTMLKitComponents ViewAction.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2419/2455] Compiling HTMLKitComponents ActionBuilder.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2420/2455] Compiling HTMLKitComponents Alert.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2421/2455] Compiling HTMLKitComponents Button.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2422/2455] Compiling HTMLKitComponents Card.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2423/2455] Compiling HTMLKitComponents Carousel.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2424/2455] Compiling HTMLKitComponents Scroll.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2425/2455] Compiling HTMLKitComponents Snippet.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2426/2455] Compiling HTMLKitComponents Stack.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2427/2455] Compiling HTMLKitComponents Symbol.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2428/2455] Compiling HTMLKitComponents Tabs.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2429/2455] Compiling HTMLKitComponents Text.swift
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2431/2459] Emitting module HTMLKitComponents
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
| |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'top' 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
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
9 |
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
| |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bottom' 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
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:12:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
10 | public static let top = EdgeSet(rawValue: 1 << 0)
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
| |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'leading' 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
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:13:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
| |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'trailing' 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
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:14:23: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
| |- warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'horizontal' 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
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:15:23: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
| |- warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'vertical' 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
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
[2432/2459] Compiling HTMLKitComponents Identifiable.swift
[2433/2459] Compiling HTMLKitComponents Modifiable.swift
[2434/2459] Compiling HTMLKitComponents Selectable.swift
[2435/2459] Compiling HTMLKitComponents Tokens.swift
[2436/2459] Compiling HTMLKitComponents Validator.swift
[2437/2459] Compiling HTMLKitComponents resource_bundle_accessor.swift
[2438/2459] Compiling HTMLKitVapor ViewRenderer.swift
[2439/2459] Compiling HTMLKitVapor Configuration.swift
[2440/2459] Emitting module HTMLKitVapor
/host/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:63:25: warning: type 'Application.HtmlKit.ConfigurationKey.Value' (aka 'Configuration') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
61 | }
62 |
63 | internal struct ConfigurationKey: StorageKey {
| `- warning: type 'Application.HtmlKit.ConfigurationKey.Value' (aka 'Configuration') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
64 |
65 | public typealias Value = Configuration
/host/spi-builder-workspace/Sources/HTMLKitVapor/Configuration.swift:4:20: note: class 'Configuration' does not conform to the 'Sendable' protocol
2 |
3 | /// Holds the renderer configuration
4 | public final class Configuration {
| `- note: class 'Configuration' does not conform to the 'Sendable' protocol
5 |
6 | /// Holds the localization configuration
/host/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:122:1: warning: extension declares a conformance of imported type 'Errors' to imported protocol 'AbortError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
120 | }
121 |
122 | extension HTMLKit.Environment.Errors: AbortError {
| |- warning: extension declares a conformance of imported type 'Errors' to imported protocol 'AbortError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
123 |
124 | @_implements(AbortError, reason)
/host/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:130:1: warning: extension declares a conformance of imported type 'Errors' to imported protocols 'DebuggableError', 'CustomStringConvertible', 'CustomDebugStringConvertible', 'LocalizedError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
128 | }
129 |
130 | extension HTMLKit.Environment.Errors: DebuggableError {
| |- warning: extension declares a conformance of imported type 'Errors' to imported protocols 'DebuggableError', 'CustomStringConvertible', 'CustomDebugStringConvertible', 'LocalizedError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
131 |
132 | @_implements(DebuggableError, reason)
/host/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:136:1: warning: extension declares a conformance of imported type 'Errors' to imported protocol 'AbortError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
134 | }
135 |
136 | extension HTMLKit.Localization.Errors: AbortError {
| |- warning: extension declares a conformance of imported type 'Errors' to imported protocol 'AbortError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
137 |
138 | @_implements(AbortError, reason)
/host/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:144:1: warning: extension declares a conformance of imported type 'Errors' to imported protocols 'DebuggableError', 'CustomStringConvertible', 'CustomDebugStringConvertible', 'LocalizedError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
142 | }
143 |
144 | extension HTMLKit.Localization.Errors: DebuggableError {
| |- warning: extension declares a conformance of imported type 'Errors' to imported protocols 'DebuggableError', 'CustomStringConvertible', 'CustomDebugStringConvertible', 'LocalizedError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
145 |
146 | @_implements(DebuggableError, reason)
[2441/2459] Compiling HTMLKitVapor Vapor+HTMLKit.swift
/host/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:63:25: warning: type 'Application.HtmlKit.ConfigurationKey.Value' (aka 'Configuration') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
61 | }
62 |
63 | internal struct ConfigurationKey: StorageKey {
| `- warning: type 'Application.HtmlKit.ConfigurationKey.Value' (aka 'Configuration') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
64 |
65 | public typealias Value = Configuration
/host/spi-builder-workspace/Sources/HTMLKitVapor/Configuration.swift:4:20: note: class 'Configuration' does not conform to the 'Sendable' protocol
2 |
3 | /// Holds the renderer configuration
4 | public final class Configuration {
| `- note: class 'Configuration' does not conform to the 'Sendable' protocol
5 |
6 | /// Holds the localization configuration
/host/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:122:1: warning: extension declares a conformance of imported type 'Errors' to imported protocol 'AbortError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
120 | }
121 |
122 | extension HTMLKit.Environment.Errors: AbortError {
| |- warning: extension declares a conformance of imported type 'Errors' to imported protocol 'AbortError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
123 |
124 | @_implements(AbortError, reason)
/host/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:130:1: warning: extension declares a conformance of imported type 'Errors' to imported protocols 'DebuggableError', 'CustomStringConvertible', 'CustomDebugStringConvertible', 'LocalizedError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
128 | }
129 |
130 | extension HTMLKit.Environment.Errors: DebuggableError {
| |- warning: extension declares a conformance of imported type 'Errors' to imported protocols 'DebuggableError', 'CustomStringConvertible', 'CustomDebugStringConvertible', 'LocalizedError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
131 |
132 | @_implements(DebuggableError, reason)
/host/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:136:1: warning: extension declares a conformance of imported type 'Errors' to imported protocol 'AbortError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
134 | }
135 |
136 | extension HTMLKit.Localization.Errors: AbortError {
| |- warning: extension declares a conformance of imported type 'Errors' to imported protocol 'AbortError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
137 |
138 | @_implements(AbortError, reason)
/host/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:144:1: warning: extension declares a conformance of imported type 'Errors' to imported protocols 'DebuggableError', 'CustomStringConvertible', 'CustomDebugStringConvertible', 'LocalizedError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
142 | }
143 |
144 | extension HTMLKit.Localization.Errors: DebuggableError {
| |- warning: extension declares a conformance of imported type 'Errors' to imported protocols 'DebuggableError', 'CustomStringConvertible', 'CustomDebugStringConvertible', 'LocalizedError'; this will not behave correctly if the owners of 'HTMLKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
145 |
146 | @_implements(DebuggableError, reason)
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
/host/spi-builder-workspace/Sources/HTMLKitComponents/Options.swift:17:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
4 | */
5 |
6 | public struct EdgeSet: OptionSet {
| `- note: consider making struct 'EdgeSet' conform to the 'Sendable' protocol
7 |
8 | public var rawValue: Int
:
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
| |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'EdgeSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'all' 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
18 |
19 | public init(rawValue: Int) {
[2449/2461] Wrapping AST for HTMLKitComponents for debugging
[2451/2463] Compiling DeployCommand DeployCommand.swift
/host/spi-builder-workspace/Sources/Commands/Components/DeployCommand.swift:55:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
53 |
54 | if !manager.fileExists(atPath: target + filename) {
55 | manager.createFile(atPath: target + filename, contents: template.data(using: .utf8))
| `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
56 | }
57 |
/host/spi-builder-workspace/Sources/Commands/Components/DeployCommand.swift:105:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
103 |
104 | if !manager.fileExists(atPath: target + filename) {
105 | manager.createFile(atPath: target + filename, contents: template.data(using: .utf8))
| `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
106 | }
107 |
[2452/2463] Emitting module DeployCommand
[2453/2464] Wrapping AST for DeployCommand for debugging
[2454/2464] Write Objects.LinkFileList
[2455/2464] Linking DeployCommand
[2457/2464] Emitting module HTMLKitConverter
/host/spi-builder-workspace/Sources/HTMLKitConverter/Converter.swift:15:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Converter' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | @available(macOS 11.0, *)
8 | public class Converter {
| `- note: class 'Converter' does not conform to the 'Sendable' protocol
9 |
10 | public enum ConverterError: Error {
:
13 | }
14 |
15 | public static let `default` = Converter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Converter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' 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
16 |
17 | private init() {}
/host/spi-builder-workspace/Sources/HTMLKitConverter/Parser.swift:35:25: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Parser' may have shared mutable state; this is an error in the Swift 6 language mode
6 | #endif
7 |
8 | internal class Parser {
| `- note: class 'Parser' does not conform to the 'Sendable' protocol
9 |
10 | internal enum ParserError: Error {
:
33 | }
34 |
35 | internal static let shared = Parser()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Parser' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' 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
36 |
37 | private init() {}
[2458/2464] Compiling HTMLKitConverter Converter.swift
/host/spi-builder-workspace/Sources/HTMLKitConverter/Converter.swift:15:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Converter' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | @available(macOS 11.0, *)
8 | public class Converter {
| `- note: class 'Converter' does not conform to the 'Sendable' protocol
9 |
10 | public enum ConverterError: Error {
:
13 | }
14 |
15 | public static let `default` = Converter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Converter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' 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
16 |
17 | private init() {}
/host/spi-builder-workspace/Sources/HTMLKitConverter/Parser.swift:35:25: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Parser' may have shared mutable state; this is an error in the Swift 6 language mode
6 | #endif
7 |
8 | internal class Parser {
| `- note: class 'Parser' does not conform to the 'Sendable' protocol
9 |
10 | internal enum ParserError: Error {
:
33 | }
34 |
35 | internal static let shared = Parser()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Parser' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' 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
36 |
37 | private init() {}
[2459/2464] Compiling HTMLKitConverter InitRepresentable.swift
[2460/2464] Compiling HTMLKitConverter Parser.swift
/host/spi-builder-workspace/Sources/HTMLKitConverter/Parser.swift:35:25: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Parser' may have shared mutable state; this is an error in the Swift 6 language mode
6 | #endif
7 |
8 | internal class Parser {
| `- note: class 'Parser' does not conform to the 'Sendable' protocol
9 |
10 | internal enum ParserError: Error {
:
33 | }
34 |
35 | internal static let shared = Parser()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Parser' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' 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
36 |
37 | private init() {}
[2461/2465] Wrapping AST for HTMLKitConverter for debugging
[2463/2467] Compiling ConvertCommand ConvertCommand.swift
[2464/2467] Emitting module ConvertCommand
[2465/2468] Wrapping AST for ConvertCommand for debugging
[2466/2468] Write Objects.LinkFileList
[2467/2468] Linking ConvertCommand
Build complete! (210.28s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections.git"
},
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "vapor",
"requirement" : {
"range" : [
{
"lower_bound" : "4.65.2",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/vapor/vapor.git"
}
],
"manifest_display_name" : "HTMLKit",
"name" : "HTMLKit",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "HTMLKit",
"targets" : [
"HTMLKit",
"HTMLKitComponents",
"HTMLKitVapor"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "ComponentsPlugin",
"targets" : [
"ComponentsPlugin"
],
"type" : {
"plugin" : null
}
},
{
"name" : "ConverterPlugin",
"targets" : [
"ConverterPlugin"
],
"type" : {
"plugin" : null
}
},
{
"name" : "DeployCommand",
"targets" : [
"DeployCommand"
],
"type" : {
"executable" : null
}
},
{
"name" : "ConvertCommand",
"targets" : [
"ConvertCommand"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "UtilitiesTests",
"module_type" : "SwiftTarget",
"name" : "UtilitiesTests",
"path" : "Tests/UtilitiesTests",
"sources" : [
"Minification/JavascriptTests.swift",
"Minification/StylesheetTests.swift"
],
"target_dependencies" : [
"Minifier"
],
"type" : "test"
},
{
"c99name" : "Minifier",
"module_type" : "SwiftTarget",
"name" : "Minifier",
"path" : "Sources/Utilities",
"product_memberships" : [
"ComponentsPlugin",
"DeployCommand"
],
"sources" : [
"Minifier/Extensions/Minifier+Character.swift",
"Minifier/Minifier.swift",
"Minifier/Tokenization/Javascript/Javascript.swift",
"Minifier/Tokenization/Stylesheet/Stylesheet.swift",
"Minifier/Tokenization/Token.swift"
],
"type" : "library"
},
{
"c99name" : "HTMLKitVaporTests",
"module_type" : "SwiftTarget",
"name" : "HTMLKitVaporTests",
"path" : "Tests/HTMLKitVaporTests",
"product_dependencies" : [
"XCTVapor"
],
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/HTMLKitVaporTests/Localization",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"ProviderTests.swift",
"Utilities/AbortResponse.swift"
],
"target_dependencies" : [
"HTMLKitVapor",
"HTMLKit"
],
"type" : "test"
},
{
"c99name" : "HTMLKitVapor",
"module_type" : "SwiftTarget",
"name" : "HTMLKitVapor",
"path" : "Sources/HTMLKitVapor",
"product_dependencies" : [
"Vapor"
],
"product_memberships" : [
"HTMLKit"
],
"sources" : [
"Configuration.swift",
"Extensions/Vapor+HTMLKit.swift",
"ViewRenderer.swift"
],
"target_dependencies" : [
"HTMLKit"
],
"type" : "library"
},
{
"c99name" : "HTMLKitTests",
"module_type" : "SwiftTarget",
"name" : "HTMLKitTests",
"path" : "Tests/HTMLKitTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/HTMLKitTests/Localization",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"AttributesTests.swift",
"ContextTests.swift",
"ElementTests.swift",
"EnvironmentTests.swift",
"LocalizationTests.swift",
"Performance/Samples.swift",
"PerformanceTests.swift",
"RenderingTests.swift",
"SecurityTests.swift",
"StatementTests.swift",
"TemplatingTests.swift"
],
"target_dependencies" : [
"HTMLKit"
],
"type" : "test"
},
{
"c99name" : "HTMLKitConverterTests",
"module_type" : "SwiftTarget",
"name" : "HTMLKitConverterTests",
"path" : "Tests/HTMLKitConverterTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/HTMLKitConverterTests/Conversion/articles/article.html",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/HTMLKitConverterTests/Conversion/component.html",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/HTMLKitConverterTests/Conversion/index.html",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"ConversionTests.swift"
],
"target_dependencies" : [
"HTMLKitConverter"
],
"type" : "test"
},
{
"c99name" : "HTMLKitConverter",
"module_type" : "SwiftTarget",
"name" : "HTMLKitConverter",
"path" : "Sources/HTMLKitConverter",
"product_memberships" : [
"ConverterPlugin",
"ConvertCommand"
],
"sources" : [
"Converter.swift",
"InitRepresentable.swift",
"Parser.swift"
],
"target_dependencies" : [
"HTMLKit"
],
"type" : "library"
},
{
"c99name" : "HTMLKitComponentsTests",
"module_type" : "SwiftTarget",
"name" : "HTMLKitComponentsTests",
"path" : "Tests/HTMLKitComponentsTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/HTMLKitComponentsTests/Localization",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"ComponentTests.swift",
"InteractionTests.swift",
"LocalizationTests.swift",
"ModifierTests.swift",
"SecurityTests.swift"
],
"target_dependencies" : [
"HTMLKitComponents",
"HTMLKit"
],
"type" : "test"
},
{
"c99name" : "HTMLKitComponents",
"module_type" : "SwiftTarget",
"name" : "HTMLKitComponents",
"path" : "Sources/HTMLKitComponents",
"product_memberships" : [
"HTMLKit",
"ComponentsPlugin",
"DeployCommand"
],
"resources" : [
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/buttons/button.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/checkfield.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/datepicker.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/filedialog.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/picker.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/radioselect.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/searchfield.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/securefield.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/selectfield.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/slider.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/texteditor.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/textfield.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/forms/textpad.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/globals.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/helpers/grouping.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/layout/grid.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/layout/list.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/layout/stack.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/typography/link.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/typography/symbol.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/typography/text.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/alert.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/card.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/carousel.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/chart.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/disclosure.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/divider.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/dropdown.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/form.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/image.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/modal.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/navigation.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/progress.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/scroll.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/snippet.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/tabs.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/css/views/video.css",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/buttons/dropdown.js",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/forms/progress.js",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/forms/selectfield.js",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/forms/textpad.js",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/alert.js",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/carousel.js",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/chart.js",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/datepicker.js",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/disclosure.js",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/navigation.js",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/tabs.js",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/components/views/video.js",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/js/interactions/all.js",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/bell.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/bookmark.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/calendar.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/chart.pie.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/chevron.down.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/chevron.left.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/chevron.right.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/chevron.up.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/clock.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/cloud.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/ellipsis.horizontal.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/ellipsis.vertical.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/envelope.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/eye.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/file.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/filter.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/flask.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/folder.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/house.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/key.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/lifepreserver.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/lightbulb.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/location.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/lock.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/pencil.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/person.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/photo.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/refresh.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/scope.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/sidebar.left.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/sidebar.right.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/square.split.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/target.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/text.aligncenter.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/text.alignjustify.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/text.alignleft.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/text.alignright.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/trash.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/tresor.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/window.maximize.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Sources/HTMLKitComponents/Resources/symbols/window.minimize.svg",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"Actions/SubmitAction.swift",
"Actions/ViewAction.swift",
"Builders/ActionBuilder.swift",
"Components/Alert.swift",
"Components/Button.swift",
"Components/Card.swift",
"Components/Carousel.swift",
"Components/Chart.swift",
"Components/Disclosure.swift",
"Components/Divider.swift",
"Components/Dropdown.swift",
"Components/Form.swift",
"Components/Grid.swift",
"Components/Grouping.swift",
"Components/Image.swift",
"Components/Link.swift",
"Components/List.swift",
"Components/Modal.swift",
"Components/Navigation.swift",
"Components/Scroll.swift",
"Components/Snippet.swift",
"Components/Stack.swift",
"Components/Symbol.swift",
"Components/Tabs.swift",
"Components/Text.swift",
"Components/Video.swift",
"Events/DragEvent.swift",
"Events/FormEvent.swift",
"Events/MouseEvent.swift",
"Events/PressEvent.swift",
"Extensions/Components+Image.swift",
"Extensions/Components+String.swift",
"Modifiers/ButtonModifier.swift",
"Modifiers/GraphicsModifier.swift",
"Modifiers/ImageModifier.swift",
"Modifiers/InputModifier.swift",
"Modifiers/TextModifier.swift",
"Modifiers/ViewModifier.swift",
"Options.swift",
"Primitives/Action.swift",
"Primitives/Configurations.swift",
"Primitives/DynamicType.swift",
"Properties/Actionable.swift",
"Properties/Identifiable.swift",
"Properties/Modifiable.swift",
"Properties/Selectable.swift",
"Tokens.swift",
"Validator.swift"
],
"target_dependencies" : [
"HTMLKit"
],
"type" : "library"
},
{
"c99name" : "HTMLKit",
"module_type" : "SwiftTarget",
"name" : "HTMLKit",
"path" : "Sources/HTMLKit",
"product_dependencies" : [
"Collections",
"Logging"
],
"product_memberships" : [
"HTMLKit",
"ComponentsPlugin",
"ConverterPlugin",
"DeployCommand",
"ConvertCommand"
],
"sources" : [
"Abstraction/Attributes/AriaAttributes.swift",
"Abstraction/Attributes/BasicAttributes.swift",
"Abstraction/Attributes/EventAttributes.swift",
"Abstraction/Attributes/VectorAttributes.swift",
"Abstraction/Elements/BasicElements.swift",
"Abstraction/Elements/BodyElements.swift",
"Abstraction/Elements/DefinitionElements.swift",
"Abstraction/Elements/FigureElements.swift",
"Abstraction/Elements/FormElements.swift",
"Abstraction/Elements/HeadElements.swift",
"Abstraction/Elements/HtmlElements.swift",
"Abstraction/Elements/InputElements.swift",
"Abstraction/Elements/ListElements.swift",
"Abstraction/Elements/MapElements.swift",
"Abstraction/Elements/MediaElements.swift",
"Abstraction/Elements/ObjectElements.swift",
"Abstraction/Elements/RubyElements.swift",
"Abstraction/Elements/TableElements.swift",
"Abstraction/Elements/VectorElements.swift",
"Abstraction/Tokens/EventTokens.swift",
"Abstraction/Tokens/ValueTokens.swift",
"Framework/Builders/ContentBuilder.swift",
"Framework/Environment/Condition.swift",
"Framework/Environment/Conditional.swift",
"Framework/Environment/Environment.swift",
"Framework/Environment/EnvironmentKeys.swift",
"Framework/Environment/EnvironmentModifier.swift",
"Framework/Environment/EnvironmentObject.swift",
"Framework/Environment/EnvironmentString.swift",
"Framework/Environment/EnvironmentValue.swift",
"Framework/Environment/Negation.swift",
"Framework/Environment/Nullable.swift",
"Framework/Environment/Relation.swift",
"Framework/Environment/Sequence.swift",
"Framework/Environment/Statement.swift",
"Framework/Extensions/Comparable+HTMLKit.swift",
"Framework/Extensions/Datatypes+Content.swift",
"Framework/Extensions/Optional+HTMLKit.swift",
"Framework/Localization/InterpolationArgument.swift",
"Framework/Localization/Locale.swift",
"Framework/Localization/Localizable.swift",
"Framework/Localization/Localization.swift",
"Framework/Localization/LocalizedString.swift",
"Framework/Localization/LocalizedStringKey.swift",
"Framework/Localization/TranslationTable.swift",
"Framework/Primitives/Attributes/Attribute.swift",
"Framework/Primitives/Elements/Element.swift",
"Framework/Primitives/Elements/Elements.swift",
"Framework/Primitives/Layouts/Layouts.swift",
"Framework/Primitives/Nodes/Node.swift",
"Framework/Primitives/Nodes/Nodes.swift",
"Framework/Primitives/Shared/Content.swift",
"Framework/Rendering/Features.swift",
"Framework/Rendering/Markdown/Extensions/Markdown+Character.swift",
"Framework/Rendering/Markdown/Lexer/MarkdownLexer.swift",
"Framework/Rendering/Markdown/Lexer/MarkdownToken.swift",
"Framework/Rendering/Markdown/Markdown.swift",
"Framework/Rendering/Markdown/MarkdownString.swift",
"Framework/Rendering/Markdown/Parser/MarkdownNode.swift",
"Framework/Rendering/Markdown/Parser/MarkdownParser.swift",
"Framework/Rendering/Renderer.swift",
"Framework/Security/Security.swift"
],
"type" : "library"
},
{
"c99name" : "DeployCommand",
"module_type" : "SwiftTarget",
"name" : "DeployCommand",
"path" : "Sources/Commands/Components",
"product_memberships" : [
"ComponentsPlugin",
"DeployCommand"
],
"sources" : [
"DeployCommand.swift"
],
"target_dependencies" : [
"HTMLKitComponents",
"Minifier"
],
"type" : "executable"
},
{
"c99name" : "ConverterPlugin",
"module_type" : "PluginTarget",
"name" : "ConverterPlugin",
"path" : "Plugins/ConverterPlugin",
"plugin_capability" : {
"intent" : {
"description" : "Converts HTML markup into Swift syntax.",
"type" : "custom",
"verb" : "convert"
},
"permissions" : [
{
"network_scope" : {
"none" : {
}
},
"reason" : "The command needs the permission to create the file.",
"type" : "writeToPackageDirectory"
}
],
"type" : "command"
},
"product_memberships" : [
"ConverterPlugin"
],
"sources" : [
"Plugin.swift"
],
"target_dependencies" : [
"ConvertCommand"
],
"type" : "plugin"
},
{
"c99name" : "ConvertCommand",
"module_type" : "SwiftTarget",
"name" : "ConvertCommand",
"path" : "Sources/Commands/Converter",
"product_memberships" : [
"ConverterPlugin",
"ConvertCommand"
],
"sources" : [
"ConvertCommand.swift"
],
"target_dependencies" : [
"HTMLKitConverter"
],
"type" : "executable"
},
{
"c99name" : "ComponentsPlugin",
"module_type" : "PluginTarget",
"name" : "ComponentsPlugin",
"path" : "Plugins/ComponentsPlugin",
"plugin_capability" : {
"intent" : {
"description" : "Deploys the CSS and JS files for the HTMLKit components.",
"type" : "custom",
"verb" : "deploy"
},
"permissions" : [
{
"network_scope" : {
"none" : {
}
},
"reason" : "The command needs the permission to create the files.",
"type" : "writeToPackageDirectory"
}
],
"type" : "command"
},
"product_memberships" : [
"ComponentsPlugin"
],
"sources" : [
"Plugin.swift"
],
"target_dependencies" : [
"DeployCommand"
],
"type" : "plugin"
}
],
"tools_version" : "5.8"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:081dcf4fb829aea9d08447f4790431afbdfbcc335bfeed728ca69c6f181ae2aa
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.