Build Information
Successful build of HTMLKit, reference 3.0.0-alpha.12 (66312d
), with Swift 6.1 for Android on 2 Jun 2025 21:48:58 UTC.
Swift 6 data race errors: 31
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
Build Log
| |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public init(rawValue: Int) {
[1432/1904] Compiling HTMLKitComponents Actionable.swift
/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: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/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: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/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: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/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: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/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: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/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: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/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: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public init(rawValue: Int) {
[1433/1910] Compiling HTMLKitComponents SubmitAction.swift
[1434/1910] Compiling HTMLKitComponents ViewAction.swift
[1435/1910] Compiling HTMLKitComponents ActionBuilder.swift
[1436/1910] Compiling HTMLKitComponents Alert.swift
[1437/1910] Compiling HTMLKitComponents Button.swift
[1438/1910] Compiling HTMLKitComponents Card.swift
[1439/1910] Compiling HTMLKitComponents Carousel.swift
[1439/1910] Compiling e_rc4.cc
[1440/1910] Compiling e_rc2.cc
[1441/1910] Compiling e_null.cc
[1442/1910] Compiling e_chacha20poly1305.cc
[1443/1910] Compiling e_des.cc
[1444/1910] Compiling e_aesgcmsiv.cc
[1445/1910] Compiling chacha.cc
[1446/1910] Compiling e_aesctrhmac.cc
[1448/1910] Compiling HTMLKitComponents Identifiable.swift
[1449/1910] Compiling HTMLKitComponents Modifiable.swift
[1450/1910] Compiling HTMLKitComponents Selectable.swift
[1451/1910] Compiling HTMLKitComponents Tokens.swift
[1452/1910] Compiling HTMLKitComponents Validator.swift
[1453/1910] Compiling HTMLKitComponents resource_bundle_accessor.swift
[1453/1910] Compiling unicode.cc
[1454/1910] Compiling derive_key.cc
[1455/1910] Compiling ber.cc
[1457/1910] Compiling HTMLKitComponents Grouping.swift
[1458/1910] Compiling HTMLKitComponents Image.swift
[1459/1910] Compiling HTMLKitComponents Link.swift
[1460/1910] Compiling HTMLKitComponents List.swift
[1461/1910] Compiling HTMLKitComponents Modal.swift
[1462/1910] Compiling HTMLKitComponents Navigation.swift
[1463/1910] Compiling HTMLKitComponents Scroll.swift
[1464/1910] Compiling HTMLKitComponents Snippet.swift
[1465/1910] Compiling HTMLKitComponents Stack.swift
[1466/1910] Compiling HTMLKitComponents Symbol.swift
[1467/1910] Compiling HTMLKitComponents Tabs.swift
[1468/1910] Compiling HTMLKitComponents Text.swift
[1469/1910] Emitting module HTMLKitComponents
/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: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/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: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/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: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/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: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/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: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/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: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/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: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public init(rawValue: Int) {
[1469/1910] Compiling buf.cc
[1470/1910] Compiling cbs.cc
[1471/1910] Compiling cbb.cc
[1472/1910] Compiling asn1_compat.cc
[1473/1910] Compiling convert.cc
[1474/1910] Compiling blake2.cc
[1475/1910] Compiling printf.cc
[1476/1910] Compiling bn_asn1.cc
[1477/1910] Compiling socket_helper.cc
[1478/1910] Compiling socket.cc
[1479/1910] Compiling file.cc
[1480/1910] Compiling pair.cc
[1482/1910] Compiling HTMLKitComponents Chart.swift
[1483/1910] Compiling HTMLKitComponents Disclosure.swift
[1484/1910] Compiling HTMLKitComponents Divider.swift
[1485/1910] Compiling HTMLKitComponents Dropdown.swift
[1486/1910] Compiling HTMLKitComponents Form.swift
[1487/1910] Compiling HTMLKitComponents Grid.swift
[1487/1911] Compiling hexdump.cc
[1489/1911] Compiling fd.cc
[1490/1911] Compiling errno.cc
[1491/1911] Compiling bio_mem.cc
[1492/1911] Compiling base64.cc
[1493/1913] Compiling connect.cc
[1494/1913] Wrapping AST for HTMLKitComponents for debugging
[1495/1913] Compiling tasn_typ.cc
[1496/1913] Compiling bio.cc
[1498/1913] Emitting module DeployCommand
[1499/1913] 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 |
[1500/1914] Compiling tasn_utl.cc
[1501/1914] Compiling tasn_enc.cc
[1502/1914] Wrapping AST for DeployCommand for debugging
[1503/1914] Compiling tasn_fre.cc
[1504/1914] Write Objects.LinkFileList
[1505/1914] Compiling tasn_dec.cc
[1506/1914] Compiling posix_time.cc
[1507/1914] Compiling tasn_new.cc
[1508/1914] Compiling f_string.cc
[1509/1914] Compiling f_int.cc
[1510/1914] Compiling asn1_par.cc
[1511/1914] Compiling asn_pack.cc
[1512/1914] Compiling a_type.cc
[1513/1914] Compiling asn1_lib.cc
[1514/1914] Linking DeployCommand-tool
[1515/1914] Compiling a_time.cc
[1516/1914] Compiling a_strnid.cc
[1517/1914] Compiling a_utctm.cc
[1518/1914] Compiling a_octet.cc
[1519/1914] Compiling a_mbstr.cc
[1520/1914] Compiling a_strex.cc
[1521/1914] Compiling a_i2d_fp.cc
[1522/1914] Compiling a_gentm.cc
[1523/1914] Compiling a_object.cc
[1524/1914] Compiling a_int.cc
[1525/1914] Compiling a_dup.cc
[1526/1914] Compiling fiat_p256_adx_sqr.S
[1527/1914] Compiling a_d2i_fp.cc
[1528/1914] Compiling fiat_p256_adx_mul.S
[1529/1914] Compiling fiat_curve25519_adx_square.S
[1530/1914] Compiling CCryptoBoringSSLShims shims.c
[1531/1914] Compiling fiat_curve25519_adx_mul.S
[1532/1914] Compiling md5-x86_64-linux.S
[1533/1914] Compiling a_bitstr.cc
[1534/1914] Compiling md5-x86_64-apple.S
[1535/1914] Compiling md5-586-linux.S
[1536/1914] Compiling md5-586-apple.S
[1537/1914] Compiling chacha20_poly1305_x86_64-linux.S
[1538/1914] Compiling a_bool.cc
[1539/1914] Compiling chacha20_poly1305_x86_64-apple.S
[1540/1914] Compiling chacha20_poly1305_armv8-win.S
[1541/1914] Compiling chacha-x86_64-linux.S
[1542/1914] Compiling chacha20_poly1305_armv8-apple.S
[1543/1914] Compiling chacha20_poly1305_armv8-linux.S
[1544/1914] Compiling chacha-x86-linux.S
[1545/1914] Compiling chacha-x86_64-apple.S
[1546/1914] Compiling chacha-x86-apple.S
[1547/1914] Compiling chacha-armv8-win.S
[1548/1914] Compiling chacha-armv4-linux.S
[1549/1914] Compiling chacha-armv8-apple.S
[1550/1914] Compiling aes128gcmsiv-x86_64-linux.S
[1551/1914] Compiling chacha-armv8-linux.S
[1552/1914] Compiling x86_64-mont5-linux.S
[1553/1914] Compiling aes128gcmsiv-x86_64-apple.S
[1554/1914] Compiling x86_64-mont5-apple.S
[1555/1914] Compiling x86_64-mont-apple.S
[1556/1914] Compiling x86_64-mont-linux.S
[1557/1914] Compiling x86-mont-linux.S
[1558/1914] Compiling x86-mont-apple.S
[1559/1914] Compiling vpaes-x86_64-apple.S
[1560/1914] Compiling vpaes-x86-linux.S
[1561/1914] Compiling vpaes-x86_64-linux.S
[1562/1914] Compiling vpaes-x86-apple.S
[1563/1914] Compiling vpaes-armv8-win.S
[1564/1914] Compiling vpaes-armv8-apple.S
[1565/1914] Compiling vpaes-armv7-linux.S
[1566/1914] Compiling err_data.cc
[1567/1914] Compiling vpaes-armv8-linux.S
[1568/1914] Compiling sha512-x86_64-linux.S
[1569/1914] Compiling sha512-armv8-win.S
[1570/1914] Compiling sha512-x86_64-apple.S
[1571/1914] Compiling sha512-armv8-apple.S
[1572/1914] Compiling sha512-armv4-linux.S
[1573/1914] Compiling sha512-586-linux.S
[1574/1914] Compiling sha512-586-apple.S
[1575/1914] Compiling sha512-armv8-linux.S
[1576/1914] Compiling sha256-x86_64-linux.S
[1577/1914] Compiling sha256-x86_64-apple.S
[1578/1914] Compiling sha256-armv8-win.S
[1579/1914] Compiling sha256-armv8-linux.S
[1580/1914] Compiling sha256-armv8-apple.S
[1581/1914] Compiling sha256-586-apple.S
[1582/1914] Compiling sha256-armv4-linux.S
[1583/1914] Compiling sha256-586-linux.S
[1584/1914] Compiling sha1-armv8-win.S
[1585/1914] Compiling sha1-x86_64-linux.S
[1586/1914] Compiling sha1-x86_64-apple.S
[1587/1914] Compiling sha1-armv8-apple.S
[1588/1914] Compiling sha1-armv8-linux.S
[1589/1914] Compiling sha1-armv4-large-linux.S
[1590/1914] Compiling sha1-586-linux.S
[1591/1914] Compiling sha1-586-apple.S
[1592/1914] Compiling rsaz-avx2-linux.S
[1593/1914] Compiling rsaz-avx2-apple.S
[1594/1914] Compiling rdrand-x86_64-linux.S
[1595/1914] Compiling rdrand-x86_64-apple.S
[1596/1914] Compiling p256_beeu-x86_64-asm-linux.S
[1597/1914] Compiling p256_beeu-armv8-asm-win.S
[1598/1914] Compiling p256_beeu-x86_64-asm-apple.S
[1599/1914] Compiling p256_beeu-armv8-asm-apple.S
[1600/1914] Compiling p256_beeu-armv8-asm-linux.S
[1601/1914] Compiling p256-armv8-asm-win.S
[1602/1914] Compiling p256-x86_64-asm-linux.S
[1603/1914] Compiling p256-armv8-asm-apple.S
[1604/1914] Compiling p256-x86_64-asm-apple.S
[1605/1914] Compiling p256-armv8-asm-linux.S
[1607/1914] 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: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | private init() {}
[1608/1914] Compiling HTMLKitConverter InitRepresentable.swift
[1608/1914] Compiling ghashv8-armv8-win.S
[1609/1914] Compiling ghashv8-armv7-linux.S
[1610/1915] Compiling ghashv8-armv8-linux.S
[1611/1915] Compiling ghashv8-armv8-apple.S
[1612/1915] Compiling ghash-x86_64-linux.S
[1613/1915] Compiling ghash-x86_64-apple.S
[1614/1915] Compiling ghash-x86-linux.S
[1615/1915] Compiling ghash-x86-apple.S
[1616/1915] Compiling ghash-ssse3-x86_64-apple.S
[1617/1915] Compiling ghash-ssse3-x86_64-linux.S
[1618/1915] Compiling ghash-ssse3-x86-linux.S
[1619/1915] Compiling ghash-ssse3-x86-apple.S
[1621/1915] Compiling ghash-neon-armv8-win.S
[1622/1915] Compiling ghash-neon-armv8-apple.S
[1623/1915] Compiling ghash-armv4-linux.S
[1624/1915] Compiling ghash-neon-armv8-linux.S
[1625/1915] Compiling co-586-linux.S
[1626/1915] Compiling co-586-apple.S
[1627/1915] Compiling bsaes-armv7-linux.S
[1628/1915] Compiling bn-armv8-linux.S
[1629/1915] Compiling bn-armv8-win.S
[1630/1915] Compiling bn-armv8-apple.S
[1631/1915] Compiling bn-586-linux.S
[1632/1915] Compiling bn-586-apple.S
[1633/1915] Compiling armv8-mont-win.S
[1634/1915] Compiling armv8-mont-linux.S
[1635/1915] Compiling armv8-mont-apple.S
[1636/1915] Compiling armv4-mont-linux.S
[1637/1915] Compiling aesv8-gcm-armv8-win.S
[1638/1915] Compiling aesv8-gcm-armv8-apple.S
[1639/1915] Compiling aesv8-armv8-win.S
[1640/1915] Compiling aesv8-gcm-armv8-linux.S
[1641/1915] Wrapping AST for HTMLKitConverter for debugging
[1642/1915] Compiling aesv8-armv8-linux.S
[1643/1916] Compiling aesni-x86_64-linux.S
[1644/1916] Compiling aesv8-armv8-apple.S
[1645/1917] Compiling aesni-x86_64-apple.S
[1646/1917] Compiling aesv8-armv7-linux.S
[1647/1917] Compiling aesni-x86-apple.S
[1648/1917] Compiling aesni-gcm-x86_64-linux.S
[1649/1917] Compiling aesni-x86-linux.S
[1650/1917] Compiling aesni-gcm-x86_64-apple.S
[1651/1917] Compiling aes-gcm-avx10-x86_64-linux.S
[1652/1917] Compiling aes-gcm-avx10-x86_64-apple.S
[1653/1917] Compiling c-nioatomics.c
[1655/1917] Emitting module ConvertCommand
[1656/1917] Compiling ConvertCommand ConvertCommand.swift
[1657/1918] Compiling x_x509a.cc
[1658/1918] Compiling x_spki.cc
[1659/1918] Compiling x_sig.cc
[1660/1918] Compiling x_val.cc
[1661/1918] Compiling x_req.cc
[1662/1918] Compiling x_x509.cc
[1663/1918] Wrapping AST for ConvertCommand for debugging
[1664/1918] Compiling c-atomics.c
[1665/1918] Write Objects.LinkFileList
[1666/1924] Compiling x_pubkey.cc
[1667/1924] Compiling x_name.cc
[1668/1924] Compiling x_exten.cc
[1669/1924] Compiling x_attrib.cc
[1671/1924] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[1671/1924] Compiling x_crl.cc
[1672/1924] Compiling x_algor.cc
[1674/1924] Compiling NIOConcurrencyHelpers NIOLock.swift
[1674/1924] Compiling x_all.cc
[1676/1924] Compiling NIOConcurrencyHelpers lock.swift
[1677/1924] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[1678/1924] Compiling NIOConcurrencyHelpers atomics.swift
[1679/1924] Emitting module NIOConcurrencyHelpers
[1679/1925] Compiling x509name.cc
[1681/1925] Compiling x509rset.cc
[1682/1925] Compiling x509spki.cc
[1683/1925] Linking ConvertCommand-tool
[1684/1951] Compiling x509cset.cc
[1685/1951] Compiling x509_vfy.cc
[1686/1951] Compiling x509_vpm.cc
[1687/1951] Compiling x509_v3.cc
[1689/1951] Compiling ConsoleKitTerminal Console+Wait.swift
[1690/1951] Compiling ConsoleKitTerminal ConsoleColor.swift
[1691/1951] Compiling ConsoleKitTerminal ConsoleStyle.swift
[1692/1954] Compiling ConsoleKitTerminal ActivityBar.swift
[1693/1954] Compiling ConsoleKitTerminal ActivityIndicator.swift
[1694/1954] Compiling ConsoleKitTerminal ActivityIndicatorRenderer.swift
[1695/1954] Compiling ConsoleKitTerminal ActivityIndicatorState.swift
[1696/1954] Compiling ConsoleKitTerminal Console+Confirm.swift
[1697/1954] Compiling ConsoleKitTerminal Console+Input.swift
[1698/1954] Compiling ConsoleKitTerminal Console+Center.swift
[1699/1954] Compiling ConsoleKitTerminal Console+Output.swift
[1700/1954] Emitting module ConsoleKitTerminal
[1700/1954] Compiling x509_txt.cc
[1702/1954] Compiling ConsoleKitTerminal Console+Ephemeral.swift
[1703/1954] Compiling ConsoleKitTerminal ConsoleClear.swift
[1704/1954] Compiling ConsoleKitTerminal Console+Ask.swift
[1705/1954] Compiling ConsoleKitTerminal Console+Choose.swift
[1706/1954] Compiling ConsoleKitTerminal CustomActivity.swift
[1707/1954] Compiling ConsoleKitTerminal LoadingBar.swift
[1708/1954] Compiling ConsoleKitTerminal ProgressBar.swift
[1709/1954] Compiling ConsoleKitTerminal Console+Clear.swift
[1710/1954] Compiling ConsoleKitTerminal ConsoleText.swift
[1711/1954] Compiling ConsoleKitTerminal ConsoleTextFragment.swift
[1712/1954] Compiling ConsoleKitTerminal ANSI.swift
[1713/1954] Compiling ConsoleKitTerminal Console.swift
[1714/1954] Compiling ConsoleKitTerminal Terminal.swift
[1715/1954] Compiling ConsoleKitTerminal readpassphrase_linux.swift
[1715/1954] Compiling x509_trs.cc
[1716/1954] Compiling x509_lu.cc
[1717/1954] Compiling x509_obj.cc
[1718/1954] Compiling x509_set.cc
[1719/1954] Compiling x509_ext.cc
[1720/1954] Compiling x509_req.cc
[1722/1954] Compiling ConsoleKitTerminal AnySendableHashable.swift
[1723/1954] Compiling ConsoleKitTerminal ConsoleLogger.swift
[1724/1954] Compiling ConsoleKitTerminal LoggerFragment.swift
[1725/1955] Compiling x509_def.cc
[1726/1955] Compiling x509_d2.cc
[1727/1977] Compiling v3_skey.cc
[1728/1977] Compiling x509.cc
[1729/1977] Compiling x509_cmp.cc
[1730/1977] Compiling v3_utl.cc
[1731/1977] Compiling x509_att.cc
[1732/1977] Compiling v3_purp.cc
[1734/1977] Emitting module ConsoleKitCommands
[1735/1977] Compiling ConsoleKitCommands Command.swift
[1736/1977] Compiling ConsoleKitCommands CommandContext.swift
[1737/1977] Compiling ConsoleKitCommands CommandError.swift
[1738/1977] Compiling ConsoleKitCommands CommandSignature.swift
[1739/1977] Compiling ConsoleKitCommands Flag.swift
[1740/1977] Compiling ConsoleKitCommands Option.swift
[1740/1979] Compiling v3_prn.cc
[1742/1979] Compiling ConsoleKitCommands AsyncCommands.swift
[1743/1979] Compiling ConsoleKitCommands GenerateAsyncAutocompleteCommand.swift
[1744/1979] Compiling ConsoleKitCommands AnyCommand.swift
[1745/1979] Compiling ConsoleKitCommands AnyAsyncCommand.swift
[1746/1979] Compiling ConsoleKitCommands AsyncCommand.swift
[1747/1979] Compiling ConsoleKitCommands AsyncCommandGroup.swift
[1748/1979] Compiling ConsoleKitCommands GenerateAutocompleteCommand.swift
[1749/1979] Compiling ConsoleKitCommands MergedAsyncCommandGroup.swift
[1750/1979] Compiling ConsoleKitCommands Argument.swift
[1751/1979] Compiling ConsoleKitCommands String+LevenshteinDistance.swift
[1752/1979] Compiling ConsoleKitCommands Utilities.swift
[1752/1979] Compiling v3_pcons.cc
[1753/1979] Compiling v3_ocsp.cc
[1754/1979] Compiling v3_ncons.cc
[1755/1979] Compiling v3_pmaps.cc
[1756/1979] Compiling v3_lib.cc
[1757/1979] Compiling v3_int.cc
[1758/1979] Compiling v3_info.cc
[1759/1979] Compiling v3_ia5.cc
[1760/1979] Compiling v3_genn.cc
[1762/1979] Compiling ConsoleKitCommands CommandGroup.swift
[1763/1979] Compiling ConsoleKitCommands CommandInput.swift
[1764/1979] Compiling ConsoleKitCommands Commands.swift
[1765/1979] Compiling ConsoleKitCommands Console+Run.swift
[1766/1979] Compiling ConsoleKitCommands ConsoleError.swift
[1767/1979] Compiling ConsoleKitCommands Completion.swift
[1767/1979] Compiling v3_extku.cc
[1768/1979] Compiling v3_crld.cc
[1769/1980] Compiling v3_enum.cc
[1771/1980] Compiling v3_cpols.cc
[1772/1980] Compiling v3_conf.cc
[1774/1982] Emitting module ConsoleKit
[1775/1982] Compiling ConsoleKit Exports.swift
[1775/1983] Compiling v3_bcons.cc
[1776/1983] Compiling v3_bitst.cc
[1777/1983] Compiling v3_alt.cc
[1777/1983] Compiling v3_akeya.cc
[1780/1983] Compiling v3_akey.cc
[1781/1983] Compiling t_x509a.cc
[1782/1983] Compiling t_x509.cc
[1783/1983] Compiling i2d_pr.cc
[1784/1983] Compiling t_crl.cc
[1785/1983] Compiling t_req.cc
[1786/1983] Compiling policy.cc
[1787/1983] Compiling rsa_pss.cc
[1788/1983] Compiling name_print.cc
[1789/1983] Compiling by_file.cc
[1790/1983] Compiling by_dir.cc
[1791/1983] Compiling asn1_gen.cc
[1792/1983] Compiling voprf.cc
[1793/1983] Compiling a_verify.cc
[1794/1983] Compiling algorithm.cc
[1795/1983] Compiling a_sign.cc
[1796/1983] Compiling a_digest.cc
[1797/1983] Compiling trust_token.cc
[1798/1983] Compiling pmbtoken.cc
[1799/1983] Compiling thread_win.cc
[1800/1983] Compiling thread.cc
[1801/1983] Compiling thread_none.cc
[1801/1983] Compiling thread_pthread.cc
[1803/1983] Compiling wots.cc
[1804/1983] Compiling stack.cc
[1805/1983] Compiling thash.cc
[1806/1983] Compiling sha512.cc
[1807/1983] Compiling slhdsa.cc
[1808/1983] Compiling siphash.cc
[1809/1983] Compiling merkle.cc
[1810/1983] Compiling sha256.cc
[1811/1983] Compiling fors.cc
[1812/1983] Compiling sha1.cc
[1813/1983] Compiling rsa_print.cc
[1814/1983] Compiling rsa_extra.cc
[1815/1983] Compiling rc4.cc
[1816/1983] Compiling refcount.cc
[1817/1983] Compiling windows.cc
[1818/1983] Compiling rsa_crypt.cc
[1819/1983] Compiling trusty.cc
[1820/1983] Compiling urandom.cc
[1821/1983] Compiling rsa_asn1.cc
[1822/1983] Compiling rand_extra.cc
[1823/1983] Compiling ios.cc
[1824/1983] Compiling deterministic.cc
[1825/1983] Compiling passive.cc
[1826/1983] Compiling getentropy.cc
[1827/1983] Compiling fork_detect.cc
[1828/1983] Compiling forkunsafe.cc
[1829/1983] Compiling pool.cc
[1830/1983] Compiling poly1305_vec.cc
[1831/1983] Compiling poly1305_arm_asm.S
[1832/1983] Compiling poly1305_arm.cc
[1833/1983] Compiling poly1305.cc
[1834/1983] Compiling pkcs7.cc
[1835/1983] Compiling p5_pbev2.cc
[1836/1983] Compiling pkcs8.cc
[1837/1983] Compiling pkcs7_x509.cc
[1838/1983] Compiling pem_xaux.cc
[1839/1983] Compiling pkcs8_x509.cc
[1840/1983] Compiling pem_x509.cc
[1841/1983] Compiling pem_pk8.cc
[1842/1983] Compiling pem_pkey.cc
[1843/1983] Compiling obj_xref.cc
[1844/1983] Compiling pem_oth.cc
[1845/1983] Compiling pem_lib.cc
[1846/1983] Compiling pem_info.cc
[1847/1983] Compiling pem_all.cc
[1848/1983] Compiling mldsa.cc
[1849/1983] Compiling mem.cc
[1850/1983] Compiling mlkem.cc
[1851/1983] Compiling poly_rq_mul.S
[1852/1983] Compiling obj.cc
[1853/1983] Compiling fips_shared_support.cc
[1854/1983] Compiling lhash.cc
[1855/1983] Compiling md4.cc
[1856/1983] Compiling md5.cc
[1857/1983] Compiling kyber.cc
[1858/1983] Compiling sign.cc
[1859/1983] Compiling ex_data.cc
[1860/1983] Compiling hpke.cc
[1861/1983] Compiling hrss.cc
[1862/1983] Compiling scrypt.cc
[1863/1983] Compiling print.cc
[1864/1983] Compiling pbkdf.cc
[1865/1983] Compiling p_x25519.cc
[1866/1983] Compiling p_x25519_asn1.cc
[1867/1983] Compiling p_rsa_asn1.cc
[1868/1983] Compiling p_ed25519.cc
[1869/1983] Compiling p_rsa.cc
[1870/1983] Compiling p_hkdf.cc
[1871/1983] Compiling p_ed25519_asn1.cc
[1872/1983] Compiling p_ec_asn1.cc
[1873/1983] Compiling p_ec.cc
[1874/1983] Compiling p_dsa_asn1.cc
[1875/1983] Compiling p_dh.cc
[1876/1983] Compiling p_dh_asn1.cc
[1877/1983] Compiling evp_ctx.cc
[1878/1983] Compiling evp_asn1.cc
[1879/1983] Compiling evp.cc
[1880/1983] Compiling err.cc
[1881/1983] Compiling engine.cc
[1882/1983] Compiling ecdh_extra.cc
[1883/1983] Compiling hash_to_curve.cc
[1884/1983] Compiling ec_derive.cc
[1885/1983] Compiling ecdsa_asn1.cc
[1886/1983] Compiling ec_asn1.cc
[1887/1983] Compiling dsa.cc
[1888/1983] Compiling dsa_asn1.cc
[1889/1983] Compiling params.cc
[1890/1983] Compiling digest_extra.cc
[1891/1983] Compiling bcm.cc
[1892/1983] Compiling x25519-asm-arm.S
[1893/1983] Compiling des.cc
[1894/1983] Compiling dh_asn1.cc
[1895/1983] Compiling curve25519_64_adx.cc
[1896/1983] Compiling cpu_intel.cc
[1897/1983] Compiling cpu_arm_linux.cc
[1898/1983] Compiling crypto.cc
[1899/1983] Compiling cpu_arm_freebsd.cc
[1900/1983] Compiling spake25519.cc
[1901/1983] Compiling cpu_aarch64_win.cc
[1902/1983] Compiling curve25519.cc
[1903/1983] Compiling cpu_aarch64_openbsd.cc
[1904/1983] Compiling cpu_aarch64_fuchsia.cc
[1905/1983] Compiling cpu_aarch64_sysreg.cc
[1906/1983] Compiling cpu_aarch64_apple.cc
[1907/1983] Compiling cpu_aarch64_linux.cc
[1908/1983] Compiling conf.cc
[1909/1983] Compiling tls_cbc.cc
[1910/1983] Compiling e_tls.cc
[1911/1983] Compiling e_rc4.cc
[1912/1983] Compiling e_rc2.cc
[1913/1983] Compiling e_des.cc
[1914/1983] Compiling e_chacha20poly1305.cc
[1915/1983] Compiling e_aesgcmsiv.cc
[1916/1983] Compiling e_null.cc
[1917/1983] Compiling e_aesctrhmac.cc
[1918/1983] Compiling derive_key.cc
[1919/1983] Compiling cipher_extra.cc
[1920/1983] Compiling chacha.cc
[1921/1983] Compiling ber.cc
[1922/1983] Compiling unicode.cc
[1923/1983] Compiling buf.cc
[1924/1983] Compiling cbb.cc
[1925/1983] Compiling cbs.cc
[1926/1983] Compiling asn1_compat.cc
[1927/1983] Compiling convert.cc
[1928/1983] Compiling printf.cc
[1929/1983] Compiling blake2.cc
[1930/1983] Compiling hexdump.cc
[1931/1983] Compiling bn_asn1.cc
[1932/1983] Compiling pair.cc
[1933/1983] Compiling file.cc
[1934/1983] Compiling fd.cc
[1935/1983] Compiling errno.cc
[1936/1983] Compiling bio.cc
[1937/1983] Compiling base64.cc
[1938/1983] Compiling bio_mem.cc
[1939/1983] Compiling tasn_typ.cc
[1940/1983] Compiling tasn_fre.cc
[1941/1983] Compiling tasn_utl.cc
[1942/1983] Compiling tasn_enc.cc
[1943/1983] Compiling tasn_new.cc
[1944/1983] Compiling posix_time.cc
[1945/1983] Compiling f_string.cc
[1946/1983] Compiling f_int.cc
[1947/1983] Compiling tasn_dec.cc
[1948/1983] Compiling asn1_par.cc
[1949/1983] Compiling asn_pack.cc
[1950/1983] Compiling asn1_lib.cc
[1951/1983] Compiling a_utctm.cc
[1952/1983] Compiling a_time.cc
[1953/1983] Compiling a_type.cc
[1954/1983] Compiling a_octet.cc
[1955/1983] Compiling a_strex.cc
[1956/1983] Compiling a_strnid.cc
[1957/1983] Compiling a_object.cc
[1958/1983] Compiling a_mbstr.cc
[1959/1983] Compiling CAsyncHTTPClient CAsyncHTTPClient.c
[1960/1983] Write sources
[1961/1983] Compiling a_i2d_fp.cc
[1962/1983] Write sources
[1963/1983] Compiling a_gentm.cc
[1963/1983] Write sources
[1967/2023] Compiling a_d2i_fp.cc
[1968/2073] Compiling a_dup.cc
[1969/2080] Compiling a_int.cc
[1970/2080] Compiling a_bool.cc
[1972/2080] Compiling Algorithms RandomSample.swift
[1973/2080] Compiling Algorithms Reductions.swift
[1974/2080] Compiling Algorithms Rotate.swift
[1975/2080] Compiling Algorithms AdjacentPairs.swift
[1975/2082] Compiling a_bitstr.cc
[1977/2082] Compiling Algorithms Permutations.swift
[1978/2082] Compiling Algorithms Product.swift
[1981/2082] Compiling Atomics IntegerOperations.swift
[1982/2082] Compiling Atomics Unmanaged extensions.swift
[1983/2082] Compiling Algorithms Combinations.swift
[1984/2082] Compiling Algorithms Split.swift
[1985/2082] Compiling Algorithms Stride.swift
[1986/2097] Compiling Algorithms Intersperse.swift
[1987/2097] Compiling Algorithms Compacted.swift
[1988/2097] Compiling Algorithms Cycle.swift
[1989/2097] Compiling Algorithms Keyed.swift
[1990/2097] Compiling Algorithms MinMax.swift
[1991/2097] Compiling Algorithms Partition.swift
[1992/2097] Emitting module BitCollections
[1993/2097] Compiling BitCollections BitSet+Initializers.swift
[1994/2097] Compiling BitCollections BitSet+Invariants.swift
[1995/2097] Compiling BitCollections BitSet+Random.swift
[1996/2097] Compiling BitCollections BitSet+SetAlgebra basics.swift
[1997/2097] Compiling BitCollections BitSet+SetAlgebra conformance.swift
[1998/2097] Compiling BitCollections BitSet+SetAlgebra formIntersection.swift
[1999/2097] Compiling BitCollections BitSet+SetAlgebra formSymmetricDifference.swift
[2000/2097] Compiling BitCollections BitSet+SetAlgebra formUnion.swift
[2001/2097] Compiling BitCollections BitSet+SetAlgebra intersection.swift
[2002/2097] Compiling BitCollections BitSet+SetAlgebra isDisjoint.swift
[2003/2097] Compiling BitCollections BitSet+SetAlgebra isEqualSet.swift
[2004/2097] Compiling BitCollections BitSet+SetAlgebra isStrictSubset.swift
[2005/2097] Compiling BitCollections BitSet+SetAlgebra isStrictSuperset.swift
[2006/2097] Compiling BitCollections BitSet+SetAlgebra isSubset.swift
[2007/2097] Compiling BitCollections BitSet+SetAlgebra isSuperset.swift
[2008/2097] Compiling BitCollections BitSet+SetAlgebra subtract.swift
[2009/2097] Compiling BitCollections BitSet+SetAlgebra subtracting.swift
[2010/2097] Compiling BitCollections BitSet+SetAlgebra symmetricDifference.swift
[2011/2097] Compiling BitCollections BitSet+SetAlgebra union.swift
[2012/2097] Compiling BitCollections BitSet+Sorted Collection APIs.swift
[2013/2097] Compiling BitCollections BitSet.Counted.swift
[2016/2097] Compiling Algorithms FlattenCollection.swift
[2017/2097] Compiling Algorithms Grouped.swift
[2018/2097] Compiling Algorithms Indexed.swift
[2022/2097] Compiling Algorithms EitherSequence.swift
[2023/2097] Compiling Algorithms FirstNonNil.swift
[2024/2097] Compiling Algorithms Suffix.swift
[2025/2097] Compiling BitCollections BitArray+RangeReplaceableCollection.swift
[2026/2097] Compiling BitCollections BitArray+Shifts.swift
[2027/2097] Compiling BitCollections BitArray+Testing.swift
[2028/2097] Compiling BitCollections BitArray._UnsafeHandle.swift
[2029/2097] Compiling BitCollections BitArray.swift
[2030/2097] Compiling BitCollections BitSet+BidirectionalCollection.swift
[2031/2097] Compiling BitCollections BitSet+Codable.swift
[2038/2100] Compiling Algorithms Joined.swift
[2046/2100] Compiling BitCollections BitSet.Index.swift
[2047/2100] Compiling BitCollections BitSet._UnsafeHandle.swift
[2048/2100] Compiling BitCollections BitSet.swift
[2049/2100] Compiling BitCollections Range+Utilities.swift
[2050/2100] Compiling BitCollections Slice+Utilities.swift
[2051/2100] Compiling BitCollections UInt+Tricks.swift
[2052/2100] Compiling BitCollections _Word.swift
[2053/2101] Compiling CryptoBoringWrapper RandomBytes.swift
[2069/2101] Compiling CryptoBoringWrapper EllipticCurve.swift
[2070/2101] Emitting module CryptoBoringWrapper
[2071/2101] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[2071/2101] Wrapping AST for BitCollections for debugging
[2073/2101] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[2074/2103] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[2075/2103] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[2076/2103] Compiling Collections Collections.swift
[2077/2103] Compiling Algorithms Trim.swift
[2078/2103] Compiling Algorithms Unique.swift
[2079/2103] Compiling Algorithms Windows.swift
[2080/2103] Emitting module Collections
[2082/2104] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[2086/2105] Wrapping AST for Collections for debugging
[2095/2125] Emitting module Atomics
[2097/2233] Emitting module Algorithms
[2099/2294] Compiling NIOCore NIOAsyncWriter.swift
[2100/2294] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[2101/2294] Compiling NIOCore BSDSocketAPI.swift
[2102/2294] Compiling NIOCore ByteBuffer-aux.swift
[2103/2294] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[2104/2294] Compiling NIOCore ByteBuffer-conversions.swift
[2105/2294] Compiling NIOCore ByteBuffer-core.swift
[2106/2294] Compiling NIOCore ByteBuffer-hex.swift
[2107/2301] Compiling NIOCore ByteBuffer-views.swift
[2108/2301] Compiling NIOCore Channel.swift
[2109/2301] Compiling NIOCore ChannelHandler.swift
[2110/2301] Compiling NIOCore ChannelHandlers.swift
[2111/2301] Compiling NIOCore ChannelInvoker.swift
[2112/2301] Compiling NIOCore ChannelOption.swift
[2113/2301] Compiling NIOCore ChannelPipeline.swift
[2114/2301] Compiling NIOCore CircularBuffer.swift
[2115/2301] Compiling NIOCore Codec.swift
[2116/2301] Compiling NIOCore ConvenienceOptionSupport.swift
[2117/2310] Compiling HTMLKit MarkdownParser.swift
[2118/2310] Compiling HTMLKit Renderer.swift
[2119/2310] Compiling Crypto MACFunctions.swift
[2120/2310] Compiling Crypto MessageAuthenticationCode.swift
[2121/2310] Compiling Crypto AES.swift
[2122/2310] Compiling Crypto ECDSASignature_boring.swift
[2123/2310] Compiling Crypto ECDSA_boring.swift
[2124/2310] Compiling Crypto EdDSA_boring.swift
[2125/2310] Compiling Crypto ECDSA.swift
[2126/2310] Compiling Crypto Ed25519.swift
[2127/2310] Compiling NIOCore MulticastChannel.swift
[2128/2310] Compiling NIOCore NIOAny.swift
[2129/2310] Compiling NIOCore NIOCloseOnErrorHandler.swift
[2130/2310] Compiling NIOCore NIOLoopBound.swift
[2131/2310] Compiling HTMLKit MarkdownLexer.swift
[2132/2310] Compiling HTMLKit MarkdownToken.swift
[2133/2310] Compiling HTMLKit Markdown.swift
[2134/2310] Compiling HTMLKit MarkdownString.swift
[2135/2310] Emitting module Crypto
[2140/2318] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[2141/2318] Compiling NIOCore SocketAddresses.swift
[2142/2318] Compiling NIOCore SocketOptionProvider.swift
[2143/2318] Compiling NIOCore MarkedCircularBuffer.swift
[2153/2318] Compiling NIOCore FileHandle.swift
[2154/2318] Compiling NIOCore FileRegion.swift
[2155/2318] Compiling NIOCore GlobalSingletons.swift
[2156/2318] Compiling NIOCore IO.swift
[2157/2318] Compiling NIOCore IOData.swift
[2158/2318] Compiling NIOCore IPProtocol.swift
[2159/2318] Compiling NIOCore IntegerBitPacking.swift
[2160/2318] Compiling NIOCore IntegerTypes.swift
[2161/2318] Compiling NIOCore Interfaces.swift
[2162/2318] Compiling NIOCore Linux.swift
[2171/2318] Compiling NIOCore DeadChannel.swift
[2172/2318] Compiling NIOCore DispatchQueue+WithFuture.swift
[2173/2318] Compiling NIOCore EventLoop+Deprecated.swift
[2174/2318] Compiling NIOCore EventLoop+SerialExecutor.swift
[2175/2318] Compiling NIOCore EventLoop.swift
[2176/2318] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[2177/2318] Compiling NIOCore EventLoopFuture+Deprecated.swift
[2178/2318] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[2179/2318] Compiling NIOCore EventLoopFuture.swift
[2180/2318] Compiling NIOCore FileDescriptor.swift
[2189/2318] Compiling NIOCore AddressedEnvelope.swift
[2190/2318] Compiling NIOCore AsyncAwaitSupport.swift
[2191/2318] Compiling NIOCore AsyncChannel.swift
[2192/2318] Compiling NIOCore AsyncChannelHandler.swift
[2193/2318] Compiling NIOCore AsyncChannelInboundStream.swift
[2194/2318] Compiling NIOCore AsyncChannelOutboundWriter.swift
[2195/2318] Compiling NIOCore NIOAsyncSequenceProducer.swift
[2196/2318] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[2205/2318] Compiling NIOCore ByteBuffer-int.swift
[2206/2318] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[2207/2318] Compiling NIOCore ByteBuffer-multi-int.swift
[2208/2318] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[2209/2318] Compiling Crypto Signature.swift
[2210/2318] Compiling Crypto CryptoKitErrors_boring.swift
[2211/2318] Compiling Crypto RNG_boring.swift
[2212/2318] Compiling Crypto SafeCompare_boring.swift
[2213/2318] Compiling Crypto Zeroization_boring.swift
[2214/2318] Compiling Crypto PrettyBytes.swift
[2215/2318] Compiling Crypto SafeCompare.swift
[2216/2318] Compiling Crypto SecureBytes.swift
[2217/2318] Compiling Crypto Zeroization.swift
[2230/2319] Compiling NIOCore SystemCallHelpers.swift
[2231/2319] Compiling NIOCore TimeAmount+Duration.swift
[2232/2319] Compiling NIOCore TypeAssistedChannelHandler.swift
[2233/2319] Compiling NIOCore UniversalBootstrapSupport.swift
[2234/2319] Compiling NIOCore Utilities.swift
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
7 |
8 | /// A flag that indicates whether the renderer should use markdown
9 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | /// A flag that indicates whether the renderer should encode input
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
:
10 |
11 | /// A flag that indicates whether the renderer should encode input
12 | public static let escaping = Features(rawValue: 1 << 1)
| |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | /// Initializes the feature set
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
7 |
8 | /// A flag that indicates whether the renderer should use markdown
9 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | /// A flag that indicates whether the renderer should encode input
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
:
10 |
11 | /// A flag that indicates whether the renderer should encode input
12 | public static let escaping = Features(rawValue: 1 << 1)
| |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | /// Initializes the feature set
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
7 |
8 | /// A flag that indicates whether the renderer should use markdown
9 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | /// A flag that indicates whether the renderer should encode input
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
:
10 |
11 | /// A flag that indicates whether the renderer should encode input
12 | public static let escaping = Features(rawValue: 1 << 1)
| |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | /// Initializes the feature set
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
7 |
8 | /// A flag that indicates whether the renderer should use markdown
9 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | /// A flag that indicates whether the renderer should encode input
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
:
10 |
11 | /// A flag that indicates whether the renderer should encode input
12 | public static let escaping = Features(rawValue: 1 << 1)
| |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | /// Initializes the feature set
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
7 |
8 | /// A flag that indicates whether the renderer should use markdown
9 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | /// A flag that indicates whether the renderer should encode input
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
:
10 |
11 | /// A flag that indicates whether the renderer should encode input
12 | public static let escaping = Features(rawValue: 1 << 1)
| |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | /// Initializes the feature set
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
7 |
8 | /// A flag that indicates whether the renderer should use markdown
9 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | /// A flag that indicates whether the renderer should encode input
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
:
10 |
11 | /// A flag that indicates whether the renderer should encode input
12 | public static let escaping = Features(rawValue: 1 << 1)
| |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | /// Initializes the feature set
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
7 |
8 | /// A flag that indicates whether the renderer should use markdown
9 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | /// A flag that indicates whether the renderer should encode input
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
:
10 |
11 | /// A flag that indicates whether the renderer should encode input
12 | public static let escaping = Features(rawValue: 1 << 1)
| |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | /// Initializes the feature set
[2266/2319] Emitting module HTMLKit
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:9:23: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
7 |
8 | /// A flag that indicates whether the renderer should use markdown
9 | public static let markdown = Features(rawValue: 1 << 0)
| |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'markdown' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | /// A flag that indicates whether the renderer should encode input
/host/spi-builder-workspace/Sources/HTMLKit/Framework/Rendering/Features.swift:12:23: warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
2 | ///
3 | /// The feature set provides the flexibility to enable experimental features if desired.
4 | public struct Features: Swift.OptionSet {
| `- note: consider making struct 'Features' conform to the 'Sendable' protocol
5 |
6 | public var rawValue: Int
:
10 |
11 | /// A flag that indicates whether the renderer should encode input
12 | public static let escaping = Features(rawValue: 1 << 1)
| |- warning: static property 'escaping' is not concurrency-safe because non-'Sendable' type 'Features' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'escaping' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | /// Initializes the feature set
[2267/2319] Emitting module NIOCore
[2296/2370] Compiling NIOPosix Errors+Any.swift
[2297/2370] Compiling NIOPosix FileDescriptor.swift
[2298/2370] Compiling NIOPosix GetaddrinfoResolver.swift
[2299/2370] Compiling NIOPosix HappyEyeballs.swift
[2300/2370] Compiling NIOPosix Pool.swift
[2301/2370] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[2302/2370] Compiling NIOPosix PosixSingletons.swift
[2303/2370] Compiling NIOPosix RawSocketBootstrap.swift
[2304/2370] Compiling NIOEmbedded AsyncTestingChannel.swift
[2305/2370] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[2306/2370] Emitting module NIOEmbedded
[2307/2370] Compiling NIOEmbedded Embedded.swift
[2309/2371] Compiling NIOPosix SelectableChannel.swift
[2310/2371] Compiling NIOPosix SelectableEventLoop.swift
[2311/2371] Compiling NIOPosix SelectorEpoll.swift
[2312/2371] Compiling NIOPosix SelectorGeneric.swift
[2313/2371] Compiling NIOPosix SelectorKqueue.swift
[2314/2371] Compiling NIOPosix SelectorUring.swift
[2319/2371] Compiling NIOPosix Resolver.swift
[2320/2371] Compiling NIOPosix Selectable.swift
[2321/2377] Emitting module NIOPosix
[2322/2377] Compiling NIOPosix ServerSocket.swift
[2323/2377] Compiling NIOPosix Socket.swift
[2324/2377] Compiling NIOPosix SocketChannel.swift
[2325/2377] Compiling NIOPosix SocketProtocols.swift
[2326/2377] Compiling NIOPosix System.swift
[2327/2377] Compiling NIOPosix Thread.swift
[2328/2377] Compiling NIOPosix ThreadPosix.swift
[2329/2377] Compiling NIOPosix ThreadWindows.swift
[2330/2377] Compiling NIOPosix UnsafeTransfer.swift
[2331/2377] Compiling NIOPosix Utilities.swift
[2332/2377] Compiling NIOPosix VsockAddress.swift
[2333/2377] Compiling NIOPosix VsockChannelEvents.swift
[2334/2377] Compiling NIOPosix IO.swift
[2335/2377] Compiling NIOPosix IntegerBitPacking.swift
[2336/2377] Compiling NIOPosix IntegerTypes.swift
[2337/2377] Compiling NIOPosix Linux.swift
[2338/2377] Compiling NIOPosix LinuxCPUSet.swift
[2339/2377] Compiling NIOPosix LinuxUring.swift
[2340/2377] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[2341/2377] Compiling NIOPosix NIOThreadPool.swift
[2342/2377] Compiling NIOPosix NonBlockingFileIO.swift
[2343/2377] Compiling NIOPosix PendingDatagramWritesManager.swift
[2344/2377] Compiling NIOPosix PendingWritesManager.swift
[2345/2377] Compiling NIOPosix PipeChannel.swift
[2346/2377] Compiling NIOPosix PipePair.swift
[2347/2377] Compiling NIOPosix BSDSocketAPICommon.swift
[2348/2377] Compiling NIOPosix BSDSocketAPIPosix.swift
[2349/2377] Compiling NIOPosix BSDSocketAPIWindows.swift
[2350/2377] Compiling NIOPosix BaseSocket.swift
[2351/2377] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[2352/2377] Compiling NIOPosix BaseSocketChannel.swift
[2353/2377] Compiling NIOPosix BaseStreamSocketChannel.swift
[2354/2377] Compiling NIOPosix Bootstrap.swift
[2355/2377] Compiling NIOPosix ControlMessage.swift
[2356/2377] Compiling NIOPosix DatagramVectorReadManager.swift
[2362/2437] Compiling NIO Exports.swift
[2363/2437] Emitting module NIO
[2364/2437] Compiling AsyncKit EventLoop+Flatten.swift
[2365/2437] Compiling AsyncKit EventLoop+Future.swift
[2366/2437] Compiling AsyncKit EventLoopGroup+Concurrency.swift
[2367/2440] Compiling AsyncKit Future+Miscellaneous.swift
[2368/2440] Compiling AsyncKit Future+Nonempty.swift
[2369/2440] Compiling AsyncKit Future+Optional.swift
[2371/2440] Compiling AsyncKit Future+Transform.swift
[2372/2440] Compiling AsyncKit Future+Try.swift
[2373/2440] Compiling AsyncKit FutureOperators.swift
[2374/2440] Emitting module _NIOFileSystem
[2375/2449] Compiling AsyncKit ConnectionPoolError.swift
[2376/2449] Compiling AsyncKit ConnectionPoolItem.swift
[2377/2449] Compiling AsyncKit ConnectionPoolSource.swift
[2380/2483] Compiling NIOTLS TLSEvents.swift
[2381/2483] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[2382/2483] Compiling NIOSOCKS SOCKSClientHandler.swift
[2383/2483] Compiling NIOSOCKS SOCKSServerHandshakeHandler.swift
[2384/2483] Compiling NIOSOCKS AuthenticationMethod.swift
[2385/2483] Compiling NIOSOCKS Messages.swift
[2386/2483] Compiling NIOSOCKS SOCKSRequest.swift
[2387/2483] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[2388/2483] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[2389/2483] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[2390/2483] Compiling NIOSOCKS ClientGreeting.swift
[2391/2483] Compiling NIOSOCKS Errors.swift
[2392/2485] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[2393/2485] Compiling NIOSOCKS ClientStateMachine.swift
[2394/2485] Compiling NIOSOCKS SOCKSResponse.swift
[2395/2485] Emitting module NIOTLS
[2396/2486] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[2397/2486] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[2400/2486] Compiling AsyncKit Optional+StrictMap.swift
[2401/2486] Compiling AsyncKit Exports.swift
[2402/2486] Emitting module NIOSOCKS
[2405/2486] Compiling _NIOFileSystem BufferedOrAnyStream.swift
[2406/2486] Compiling _NIOFileSystem BufferedStream.swift
[2407/2486] Compiling _NIOFileSystem Cancellation.swift
[2408/2486] Compiling _NIOFileSystem TokenBucket.swift
[2409/2486] Compiling _NIOFileSystem UnsafeTransfer.swift
[2410/2486] Compiling NIOSOCKS ServerStateMachine.swift
[2411/2486] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[2412/2486] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[2415/2486] Compiling NIOHTTP1 HTTPTypes.swift
[2416/2486] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[2417/2486] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[2418/2486] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[2419/2486] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[2420/2486] Compiling _NIOFileSystem ParallelDirCopy.swift
[2421/2486] Compiling _NIOFileSystem ParallelRemoval.swift
[2422/2486] Compiling _NIOFileSystem String+UnsafeUnititializedCapacity.swift
[2423/2486] Compiling _NIOFileSystem CInterop.swift
[2424/2486] Compiling _NIOFileSystem Errno.swift
[2429/2486] Compiling _NIOFileSystem Exports.swift
[2430/2486] Emitting module NIOHTTP1
[2431/2486] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[2432/2486] Compiling NIOTLS SNIHandler.swift
[2433/2487] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[2434/2487] Emitting module NIOFoundationCompat
[2436/2488] Compiling NIOSOCKS Helpers.swift
[2444/2540] Compiling _NIOFileSystem SystemFileHandle.swift
[2445/2540] Compiling _NIOFileSystem Utilities.swift
[2446/2540] Compiling _NIOFileSystem OpenOptions.swift
[2447/2540] Compiling _NIOFileSystem String+FileSystem.swift
[2448/2540] Compiling NIOSSL NIOSSLHandler.swift
[2449/2540] Compiling NIOSSL SSLContext.swift
[2450/2540] Compiling NIOSSL SSLErrors.swift
[2451/2540] Compiling NIOSSL SSLInit.swift
[2452/2540] Compiling NIOSSL SSLPKCS12Bundle.swift
[2453/2540] Compiling NIOSSL SSLPrivateKey.swift
[2456/2540] Compiling NIOSSL SSLPublicKey.swift
[2457/2542] Compiling NIOSSL SecurityFrameworkCertificateVerification.swift
[2458/2542] Compiling NIOSSL String+unsafeUninitializedCapacity.swift
[2459/2542] Compiling NIOSSL SubjectAlternativeName.swift
[2460/2542] Compiling NIOSSL IdentityVerification.swift
[2461/2542] Compiling NIOSSL NIOSSLServerHandler.swift
[2462/2542] Compiling NIOSSL ObjectIdentifier.swift
[2463/2542] Compiling NIOSSL PosixPort.swift
[2464/2542] Compiling NIOSSL SSLCallbacks.swift
[2465/2542] Compiling NIOSSL LinuxCABundle.swift
[2466/2542] Compiling NIOSSL NIOSSLClientHandler.swift
[2467/2542] Compiling NIOSSL NIOSSLHandler+Configuration.swift
[2469/2542] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[2470/2542] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[2471/2542] Compiling NIOSSL AndroidCABundle.swift
[2472/2542] Compiling NIOSSL ByteBufferBIO.swift
[2473/2542] Compiling NIOSSL CustomPrivateKey.swift
[2474/2542] Emitting module NIOTransportServices
[2486/2544] Emitting module AsyncKit
[2498/2549] Emitting module NIOSSL
[2506/2549] Compiling NIOSSL SafeCompare.swift
[2515/2549] Compiling NIOSSL SSLCertificate.swift
[2516/2549] Compiling NIOSSL SSLCertificateExtensions.swift
[2517/2549] Compiling NIOSSL SSLCertificateName.swift
[2518/2549] Compiling NIOSSL SSLConnection.swift
[2523/2614] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[2524/2614] Compiling NIOHPACK HuffmanTables.swift
[2525/2614] Compiling NIOHPACK IndexedHeaderTable.swift
[2526/2615] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[2527/2615] Compiling NIOWebSocket WebSocketOpcode.swift
[2528/2615] Compiling NIOHPACK IntegerCoding.swift
[2529/2616] Compiling MultipartKit BasicCodingKey.swift
[2530/2616] Compiling MultipartKit MultipartError.swift
[2531/2616] Compiling MultipartKit FormDataEncoder.swift
[2532/2616] Compiling MultipartKit Storage.swift
[2533/2618] Compiling NIOHPACK StaticHeaderTable.swift
[2534/2618] Emitting module NIOHTTPCompression
[2535/2618] Compiling NIOHTTPCompression HTTPCompression.swift
[2536/2618] Compiling NIOHTTPCompression HTTPDecompression.swift
[2537/2618] Compiling MultipartKit MultipartPart.swift
[2538/2618] Compiling NIOExtras UnsafeTransfer.swift
[2539/2618] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[2540/2618] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[2541/2620] Emitting module MultipartKit
[2542/2620] Emitting module NIOWebSocket
[2543/2620] Compiling NIOHPACK HuffmanCoding.swift
[2544/2620] Emitting module NIOHPACK
[2545/2620] Compiling MultipartKit FormDataEncoder.UnkeyedContainer.swift
[2546/2620] Compiling MultipartKit MultipartFormData.swift
[2547/2620] Compiling MultipartKit FormDataEncoder.KeyedContainer.swift
[2548/2620] Compiling MultipartKit FormDataEncoder.SingleValueContainer.swift
[2549/2620] Compiling MultipartKit MultipartParser.swift
[2551/2620] Compiling MultipartKit Exports.swift
[2552/2620] Compiling MultipartKit FormDataDecoder.Decoder.swift
[2553/2620] Compiling NIOWebSocket WebSocketErrorCodes.swift
[2554/2620] Compiling NIOWebSocket WebSocketFrame.swift
[2559/2620] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[2560/2620] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[2561/2620] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[2562/2622] Compiling NIOSSL Zeroization.swift
[2563/2622] Compiling NIOSSL TLSConfiguration.swift
[2564/2622] Compiling NIOSSL UniversalBootstrapSupport.swift
[2565/2622] Compiling NIOSSL UnsafeKeyAndChainTarget.swift
[2566/2623] Compiling MultipartKit FormDataDecoder.UnkeyedContainer.swift
[2567/2623] Compiling MultipartKit FormDataDecoder.swift
[2568/2623] Compiling MultipartKit FormDataEncoder.Encoder.swift
[2569/2623] Emitting module NIOExtras
[2577/2623] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
[2578/2623] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
[2598/2624] Compiling MultipartKit MultipartSerializer.swift
[2599/2624] Compiling MultipartKit Utilities.swift
[2601/2688] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[2602/2688] Compiling NIOHTTP2 HasFlowControlWindows.swift
[2604/2689] Compiling NIOFileSystem Exports.swift
[2605/2689] Emitting module NIOFileSystem
[2606/2690] Compiling _NIOFileSystemFoundationCompat Date+FileInfo.swift
[2607/2690] Compiling _NIOFileSystemFoundationCompat Data+FileSystem.swift
[2608/2690] Emitting module _NIOFileSystemFoundationCompat
[2611/2699] Compiling WebSocketKit WebSocket.swift
[2614/2699] Compiling NIOHTTP2 HasLocalSettings.swift
[2615/2699] Compiling NIOHTTP2 HasRemoteSettings.swift
[2616/2699] Compiling NIOHTTP2 LocallyQuiescingState.swift
[2617/2699] Compiling NIOHTTP2 QuiescingState.swift
[2618/2699] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[2619/2699] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[2620/2704] Compiling WebSocketKit WebSocket+Connect.swift
[2621/2707] Compiling NIOHTTP2 MaySendFrames.swift
[2622/2707] Compiling NIOHTTP2 SendingDataState.swift
[2623/2707] Compiling NIOHTTP2 SendingGoawayState.swift
[2624/2707] Compiling NIOHTTP2 SendingHeadersState.swift
[2625/2707] Compiling NIOHTTP2 SendingPushPromiseState.swift
[2626/2707] Compiling NIOHTTP2 SendingRstStreamState.swift
[2627/2707] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[2628/2707] Compiling NIOHTTP2 HTTP2SettingsState.swift
[2629/2707] Emitting module WebSocketKit
[2630/2707] Compiling WebSocketKit Exports.swift
[2631/2707] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[2632/2707] Compiling WebSocketKit WebSocketHandler.swift
[2633/2707] Compiling WebSocketKit WebSocketClient.swift
[2634/2707] Compiling WebSocketKit WebSocket+Concurrency.swift
[2636/2708] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[2637/2708] Compiling NIOHTTP2 ReceivingHeadersState.swift
[2638/2708] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[2639/2708] Compiling NIOHTTP2 ConnectionStreamsState.swift
[2640/2708] Compiling NIOHTTP2 MayReceiveFrames.swift
[2641/2708] Compiling NIOHTTP2 ReceivingDataState.swift
[2643/2709] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[2644/2709] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[2645/2709] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[2646/2709] Compiling NIOHTTP2 HTTP2StreamID.swift
[2647/2709] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[2648/2709] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[2649/2709] Compiling NIOHTTP2 HTTP2UserEvents.swift
[2650/2709] Compiling NIOHTTP2 InboundEventBuffer.swift
[2651/2709] Compiling NIOHTTP2 InboundWindowManager.swift
[2652/2709] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[2653/2709] Compiling NIOHTTP2 StreamChannelFlowController.swift
[2654/2709] Compiling NIOHTTP2 StreamChannelList.swift
[2655/2709] Compiling NIOHTTP2 StreamMap.swift
[2656/2709] Compiling NIOHTTP2 StreamStateMachine.swift
[2657/2709] Compiling NIOHTTP2 UnsafeTransfer.swift
[2658/2709] Compiling NIOHTTP2 WatermarkedFlowController.swift
[2659/2709] Emitting module NIOHTTP2
[2660/2709] Compiling NIOHTTP2 ConnectionStateMachine.swift
[2667/2709] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[2668/2709] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[2669/2709] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[2670/2709] Compiling NIOHTTP2 HTTP2Frame.swift
[2671/2709] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[2672/2709] Compiling NIOHTTP2 HTTP2FrameParser.swift
[2673/2709] Compiling NIOHTTP2 HTTP2PingData.swift
[2674/2709] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[2675/2709] Compiling NIOHTTP2 HTTP2Settings.swift
[2676/2709] Compiling NIOHTTP2 HTTP2Stream.swift
[2677/2709] Compiling NIOHTTP2 StateMachineResult.swift
[2678/2709] Compiling NIOHTTP2 ContentLengthVerifier.swift
[2679/2709] Compiling NIOHTTP2 DOSHeuristics.swift
[2680/2709] Compiling NIOHTTP2 Error+Any.swift
[2681/2709] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[2682/2709] Compiling NIOHTTP2 ControlFrameBuffer.swift
[2683/2709] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[2684/2709] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[2685/2709] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[2686/2709] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[2687/2709] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[2688/2709] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[2689/2709] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[2690/2709] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[2691/2709] Compiling NIOHTTP2 HTTP2Error.swift
[2692/2709] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[2694/2770] Emitting module AsyncHTTPClient
[2695/2778] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[2696/2778] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[2697/2778] Compiling AsyncHTTPClient Transaction.swift
[2698/2778] Compiling AsyncHTTPClient Base64.swift
[2699/2778] Compiling AsyncHTTPClient BasicAuth.swift
[2700/2778] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[2701/2778] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[2702/2778] Compiling AsyncHTTPClient ConnectionPool.swift
[2703/2778] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[2704/2778] Compiling AsyncHTTPClient AnyAsyncSequence.swift
[2705/2778] Compiling AsyncHTTPClient AnyAsyncSequenceProucerDelete.swift
[2706/2778] Compiling AsyncHTTPClient AsyncLazySequence.swift
[2707/2778] Compiling AsyncHTTPClient HTTPClient+execute.swift
[2708/2778] Compiling AsyncHTTPClient HTTPClient+shutdown.swift
[2709/2778] Compiling AsyncHTTPClient HTTPClientRequest+Prepared.swift
[2710/2778] Compiling AsyncHTTPClient HTTPClientRequest+auth.swift
[2711/2778] Compiling AsyncHTTPClient HTTPClientRequest.swift
[2712/2778] Compiling AsyncHTTPClient HTTPClientResponse.swift
[2713/2778] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[2714/2778] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[2715/2778] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[2716/2778] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[2717/2778] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[2718/2778] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[2719/2778] Compiling AsyncHTTPClient RequestBodyLength.swift
[2720/2778] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[2721/2778] Compiling AsyncHTTPClient ConnectionTarget.swift
[2722/2778] Compiling AsyncHTTPClient DeconstructedURL.swift
[2723/2778] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[2724/2778] Compiling AsyncHTTPClient FoundationExtensions.swift
[2725/2778] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[2726/2778] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[2727/2778] Compiling AsyncHTTPClient HTTPClient+StructuredConcurrency.swift
[2728/2778] Compiling AsyncHTTPClient HTTPClient.swift
[2729/2778] Compiling AsyncHTTPClient RequestOptions.swift
[2730/2778] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[2731/2778] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[2732/2778] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[2733/2778] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[2734/2778] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[2735/2778] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[2736/2778] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[2737/2778] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[2738/2778] Compiling AsyncHTTPClient TLSEventsHandler.swift
[2739/2778] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[2740/2778] Compiling AsyncHTTPClient HTTP1Connection.swift
[2741/2778] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[2742/2778] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[2743/2778] Compiling AsyncHTTPClient HTTP2Connection.swift
[2744/2778] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[2745/2778] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[2746/2778] Compiling AsyncHTTPClient HTTPHandler.swift
[2747/2778] Compiling AsyncHTTPClient LRUCache.swift
[2748/2778] Compiling AsyncHTTPClient NIOLoopBound+Execute.swift
[2749/2778] Compiling AsyncHTTPClient NWErrorHandler.swift
[2750/2778] Compiling AsyncHTTPClient NWWaitingHandler.swift
[2751/2778] Compiling AsyncHTTPClient TLSConfiguration.swift
[2752/2778] Compiling AsyncHTTPClient RedirectState.swift
[2753/2778] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[2754/2778] Compiling AsyncHTTPClient RequestBag.swift
[2755/2778] Compiling AsyncHTTPClient RequestValidation.swift
[2756/2778] Compiling AsyncHTTPClient SSLContextCache.swift
[2757/2778] Compiling AsyncHTTPClient Scheme.swift
[2758/2778] Compiling AsyncHTTPClient Singleton.swift
[2759/2778] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[2760/2778] Compiling AsyncHTTPClient StructuredConcurrencyHelpers.swift
[2761/2778] Compiling AsyncHTTPClient Utils.swift
[2763/2948] Compiling Vapor Core.swift
[2764/2948] Compiling Vapor Running.swift
[2765/2948] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[2766/2948] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[2767/2948] Compiling Vapor DotEnvFile+load.swift
[2768/2948] Compiling Vapor Routes+caseInsenstive.swift
[2769/2948] Compiling Vapor Validatable+validate.swift
[2770/2948] Compiling Vapor Environment+Process.swift
[2771/2997] Wrapping AST for HTMLKit for debugging
[2773/2997] Compiling HTMLKitComponents Components+String.swift
[2774/2997] Compiling HTMLKitComponents ButtonModifier.swift
[2775/2997] Compiling HTMLKitComponents GraphicsModifier.swift
[2776/2997] Compiling HTMLKitComponents ImageModifier.swift
[2777/2997] Compiling HTMLKitComponents InputModifier.swift
[2778/2997] Compiling HTMLKitComponents TextModifier.swift
[2779/3003] Compiling HTMLKitComponents Video.swift
[2780/3003] Compiling HTMLKitComponents DragEvent.swift
[2781/3003] Compiling HTMLKitComponents FormEvent.swift
[2782/3003] Compiling HTMLKitComponents MouseEvent.swift
[2783/3003] Compiling HTMLKitComponents PressEvent.swift
[2784/3003] Compiling HTMLKitComponents Components+Image.swift
[2785/3003] 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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | private init() {}
/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: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | private init() {}
[2786/3003] 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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | private init() {}
[2787/3003] Compiling HTMLKitComponents ViewModifier.swift
/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: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/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: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/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: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/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: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/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: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/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: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/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: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public init(rawValue: Int) {
[2788/3003] Compiling HTMLKitComponents Options.swift
/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: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/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: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/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: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/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: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/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: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/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: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/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: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public init(rawValue: Int) {
[2789/3003] Compiling HTMLKitComponents Action.swift
/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: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/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: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/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: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/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: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/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: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/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: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/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: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public init(rawValue: Int) {
[2790/3003] Compiling HTMLKitComponents Configurations.swift
/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: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/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: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/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: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/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: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/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: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/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: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/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: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public init(rawValue: Int) {
[2791/3003] Compiling HTMLKitComponents DynamicType.swift
/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: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/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: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/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: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/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: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/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: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/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: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/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: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public init(rawValue: Int) {
[2792/3003] Compiling HTMLKitComponents Actionable.swift
/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: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/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: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/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: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/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: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/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: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/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: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/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: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public init(rawValue: Int) {
[2793/3003] Compiling HTMLKitComponents Chart.swift
[2794/3003] Compiling HTMLKitComponents Disclosure.swift
[2795/3003] Compiling HTMLKitComponents Divider.swift
[2796/3003] Compiling HTMLKitComponents Dropdown.swift
[2797/3003] Compiling HTMLKitComponents Form.swift
[2798/3003] Compiling HTMLKitComponents Grid.swift
[2799/3003] Compiling HTMLKitComponents Grouping.swift
[2800/3003] Compiling HTMLKitComponents Image.swift
[2801/3003] Compiling HTMLKitComponents Link.swift
[2802/3003] Compiling HTMLKitComponents List.swift
[2803/3003] Compiling HTMLKitComponents Modal.swift
[2804/3003] Compiling HTMLKitComponents Navigation.swift
[2805/3003] Compiling HTMLKitComponents Scroll.swift
[2806/3003] Compiling HTMLKitComponents Snippet.swift
[2807/3003] Compiling HTMLKitComponents Stack.swift
[2808/3003] Compiling HTMLKitComponents Symbol.swift
[2809/3003] Compiling HTMLKitComponents Tabs.swift
[2810/3003] Compiling HTMLKitComponents Text.swift
[2811/3003] Compiling HTMLKitComponents SubmitAction.swift
[2812/3003] Compiling HTMLKitComponents ViewAction.swift
[2813/3003] Compiling HTMLKitComponents ActionBuilder.swift
[2814/3003] Compiling HTMLKitComponents Alert.swift
[2815/3003] Compiling HTMLKitComponents Button.swift
[2816/3003] Compiling HTMLKitComponents Card.swift
[2817/3003] Compiling HTMLKitComponents Carousel.swift
[2836/3003] Compiling HTMLKitComponents Identifiable.swift
[2837/3003] Compiling HTMLKitComponents Modifiable.swift
[2838/3003] Compiling HTMLKitComponents Selectable.swift
[2839/3003] Compiling HTMLKitComponents Tokens.swift
[2840/3003] Compiling HTMLKitComponents Validator.swift
[2841/3051] Emitting module HTMLKitComponents
/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: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let bottom = EdgeSet(rawValue: 1 << 1)
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
/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: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let leading = EdgeSet(rawValue: 1 << 2)
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
/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: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let trailing = EdgeSet(rawValue: 1 << 3)
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
/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: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let horizontal = EdgeSet(rawValue: 1 << 4)
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
/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: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let vertical = EdgeSet(rawValue: 1 << 5)
16 |
/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: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | public static let all: EdgeSet = [.top, .bottom, .leading, .trailing]
/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: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public init(rawValue: Int) {
[2847/3051] Compiling HTMLKitComponents resource_bundle_accessor.swift
[2849/3051] Compiling Vapor Request+BodyStream.swift
[2850/3051] Compiling Vapor Request.swift
[2851/3051] Compiling Vapor Application+Responder.swift
[2852/3051] Compiling Vapor DefaultResponder.swift
[2853/3051] Compiling Vapor Response+Body.swift
[2854/3051] Compiling Vapor Response.swift
[2855/3051] Compiling Vapor ResponseCodable.swift
[2856/3051] Compiling Vapor Application+Routes.swift
[2857/3051] Compiling Vapor Parameters+Require.swift
[2858/3051] Compiling Vapor Request+WebSocket.swift
[2859/3051] Compiling Vapor Route.swift
[2860/3051] Compiling Vapor RouteCollection.swift
[2861/3051] Compiling Vapor Routes.swift
[2862/3051] Compiling Vapor RoutesBuilder+Group.swift
[2863/3051] Compiling Vapor RoutesBuilder+Method.swift
[2864/3051] Compiling Vapor RoutesBuilder+Middleware.swift
[2865/3051] Compiling Vapor RoutesBuilder+WebSocket.swift
[2866/3051] Compiling Vapor RoutesBuilder.swift
[2867/3051] Compiling Vapor OTP.swift
[2868/3051] Compiling Vapor Application+Servers.swift
[2869/3051] Compiling Vapor Server.swift
[2870/3051] Compiling Vapor App+Service.swift
[2871/3051] Compiling Vapor Req+Service.swift
[2898/3052] Compiling Vapor Validator.swift
[2899/3052] Compiling Vapor ValidatorResult.swift
[2900/3052] Compiling Vapor And.swift
[2901/3052] Compiling Vapor Case.swift
[2902/3052] Compiling Vapor CharacterSet.swift
[2903/3052] Compiling Vapor Count.swift
[2904/3052] Compiling Vapor Custom.swift
[2905/3052] Compiling Vapor Email.swift
[2906/3052] Compiling Vapor Empty.swift
[2907/3052] Compiling Vapor In.swift
[2908/3052] Compiling Vapor Nil.swift
[2909/3052] Compiling Vapor NilIgnoring.swift
[2910/3052] Compiling Vapor Not.swift
[2911/3052] Compiling Vapor Or.swift
[2912/3052] Compiling Vapor Pattern.swift
[2913/3052] Compiling Vapor Range.swift
[2914/3052] Compiling Vapor URL.swift
[2915/3052] Compiling Vapor Valid.swift
[2916/3052] Compiling Vapor Application+Views.swift
[2917/3052] Compiling Vapor PlaintextRenderer.swift
[2918/3052] Compiling Vapor Request+View.swift
[2919/3052] Compiling Vapor View.swift
[2920/3052] Compiling Vapor ViewRenderer.swift
[2921/3052] Compiling Vapor _Deprecations.swift
[2921/3052] Wrapping AST for HTMLKitComponents for debugging
[2923/3054] Emitting module DeployCommand
[2924/3054] 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 |
[2925/3055] Wrapping AST for DeployCommand for debugging
[2926/3055] Write Objects.LinkFileList
[2928/3055] Compiling Vapor Application.swift
[2929/3055] Compiling Vapor AuthenticationCache.swift
[2930/3055] Compiling Vapor Authenticator.swift
[2931/3055] Compiling Vapor BasicAuthorization.swift
[2932/3055] Compiling Vapor BearerAuthorization.swift
[2933/3055] Compiling Vapor GuardMiddleware.swift
[2934/3055] Compiling Vapor RedirectMiddleware.swift
[2935/3055] Compiling Vapor SessionAuthenticatable.swift
[2936/3055] Compiling Vapor Bcrypt.swift
[2937/3055] Compiling Vapor Application+Cache.swift
[2938/3055] Compiling Vapor Cache.swift
[2939/3055] Compiling Vapor CacheExpirationTime.swift
[2940/3055] Compiling Vapor MemoryCache.swift
[2941/3055] Compiling Vapor Request+Cache.swift
[2942/3055] Compiling Vapor Application+Clients.swift
[2943/3055] Compiling Vapor Client.swift
[2944/3055] Compiling Vapor ClientRequest.swift
[2945/3055] Compiling Vapor ClientResponse.swift
[2946/3055] Compiling Vapor Request+Client.swift
[2947/3055] Compiling Vapor BootCommand.swift
[2948/3055] Compiling Vapor CommandContext+Application.swift
[2949/3055] Compiling Vapor RoutesCommand.swift
[2950/3055] Compiling Vapor ServeCommand.swift
[2951/3055] Compiling Vapor AnyResponse+Concurrency.swift
[2952/3055] Compiling Vapor HTTPServerResponseEncoder.swift
[2953/3055] Compiling Vapor HTTPServerUpgradeHandler.swift
[2954/3055] Compiling Vapor Logger+Report.swift
[2955/3055] Compiling Vapor LoggingSystem+Environment.swift
[2956/3055] Compiling Vapor Application+Middleware.swift
[2957/3055] Compiling Vapor CORSMiddleware.swift
[2958/3055] Compiling Vapor ErrorMiddleware.swift
[2959/3055] Compiling Vapor FileMiddleware.swift
[2960/3055] Compiling Vapor Middleware.swift
[2961/3055] Compiling Vapor MiddlewareConfiguration.swift
[2962/3055] Compiling Vapor ResponseCompressionMiddleware.swift
[2963/3055] Compiling Vapor RouteLoggingMiddleware.swift
[2964/3055] Compiling Vapor TracingMiddleware.swift
[2965/3055] Compiling Vapor File+Multipart.swift
[2966/3055] Compiling Vapor FormDataDecoder+Content.swift
[2967/3055] Compiling Vapor FormDataEncoder+Content.swift
[2968/3055] Compiling Vapor Application+Password.swift
[2969/3055] Compiling Vapor Application+Passwords.swift
[2970/3055] Compiling Vapor AsyncPasswordHasher.swift
[2971/3055] Compiling Vapor BcryptHasher.swift
[2972/3055] Compiling Vapor PasswordHasher.swift
[2973/3055] Compiling Vapor PlaintextHasher.swift
[2974/3055] Compiling Vapor Request+Password.swift
[2975/3055] Compiling Vapor Redirect.swift
[2976/3055] Emitting module Vapor
[2976/3055] Linking DeployCommand
[2978/3055] Compiling Vapor Bytes+Hex.swift
[2979/3055] Compiling Vapor Bytes+SecureCompare.swift
[2980/3055] Compiling Vapor Collection+Safe.swift
[2981/3055] Compiling Vapor DataProtocol+Copy.swift
[2982/3055] Compiling Vapor DecoderUnwrapper.swift
[2983/3055] Compiling Vapor DirectoryConfiguration.swift
[2984/3055] Compiling Vapor DotEnv.swift
[2985/3055] Compiling Vapor Extendable.swift
[2986/3055] Compiling Vapor File.swift
[2987/3055] Compiling Vapor FileIO.swift
[2988/3055] Compiling Vapor LifecycleHandler.swift
[2989/3055] Compiling Vapor OptionalType.swift
[2990/3055] Compiling Vapor RFC1123.swift
[2991/3055] Compiling Vapor SocketAddress+Hostname.swift
[2992/3055] Compiling Vapor Storage.swift
[2993/3055] Compiling Vapor String+IsIPAddress.swift
[2994/3055] Compiling Vapor Thread.swift
[2995/3055] Compiling Vapor URI.swift
[2996/3055] Compiling Vapor RangeResult.swift
[2997/3055] Compiling Vapor Validatable.swift
[2998/3055] Compiling Vapor Validation.swift
[2999/3055] Compiling Vapor ValidationKey.swift
[3000/3055] Compiling Vapor Validations.swift
[3001/3055] Compiling Vapor ValidationsError.swift
[3002/3055] Compiling Vapor Service.swift
[3003/3055] Compiling Vapor Application+Sessions.swift
[3004/3055] Compiling Vapor MemorySessions.swift
[3005/3055] Compiling Vapor Request+Session.swift
[3006/3055] Compiling Vapor Session.swift
[3007/3055] Compiling Vapor SessionCache.swift
[3008/3055] Compiling Vapor SessionData.swift
[3009/3055] Compiling Vapor SessionDriver.swift
[3010/3055] Compiling Vapor SessionsConfiguration.swift
[3011/3055] Compiling Vapor SessionsMiddleware.swift
[3012/3055] Compiling Vapor URLEncodedFormData.swift
[3013/3055] Compiling Vapor URLEncodedFormDecoder.swift
[3014/3055] Compiling Vapor URLEncodedFormEncoder.swift
[3015/3055] Compiling Vapor URLEncodedFormError.swift
[3016/3055] Compiling Vapor URLEncodedFormParser.swift
[3017/3055] Compiling Vapor URLEncodedFormSerializer.swift
[3018/3055] Compiling Vapor URLQueryFragmentConvertible.swift
[3019/3055] Compiling Vapor AnyResponse.swift
[3020/3055] Compiling Vapor Array+Random.swift
[3021/3055] Compiling Vapor Base32.swift
[3022/3055] Compiling Vapor Base64.swift
[3023/3055] Compiling Vapor BaseN.swift
[3024/3055] Compiling Vapor BasicCodingKey.swift
[3025/3055] Compiling Vapor ByteCount.swift
[3026/3055] Compiling Vapor HTTPStatus.swift
[3027/3055] Compiling Vapor HTTPCookies.swift
[3028/3055] Compiling Vapor HTTPHeaderCacheControl.swift
[3029/3055] Compiling Vapor HTTPHeaderExpires.swift
[3030/3055] Compiling Vapor HTTPHeaderLastModified.swift
[3031/3055] Compiling Vapor HTTPHeaders+Cache.swift
[3032/3055] Compiling Vapor HTTPHeaders+Connection.swift
[3033/3055] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[3034/3055] Compiling Vapor HTTPHeaders+ContentRange.swift
[3035/3055] Compiling Vapor HTTPHeaders+Directive.swift
[3036/3055] Compiling Vapor HTTPHeaders+Forwarded.swift
[3037/3055] Compiling Vapor HTTPHeaders+Link.swift
[3038/3055] Compiling Vapor HTTPHeaders+Name.swift
[3039/3055] Compiling Vapor HTTPHeaders+ResponseCompression.swift
[3040/3055] Compiling Vapor HTTPHeaders.swift
[3041/3055] Compiling Vapor HTTPMediaType.swift
[3042/3055] Compiling Vapor HTTPMediaTypePreference.swift
[3043/3055] Compiling Vapor Responder.swift
[3044/3055] Compiling Vapor Application+HTTP+Server.swift
[3045/3055] Compiling Vapor HTTPServer.swift
[3046/3055] Compiling Vapor HTTPServerConfiguration+RequestDecompressionConfiguration.swift
[3047/3055] Compiling Vapor HTTPServerConfiguration+ResponseCompressionConfiguration.swift
[3048/3055] Compiling Vapor HTTPServerHandler.swift
[3049/3055] Compiling Vapor HTTPServerRequestDecoder.swift
[3051/3060] Emitting module HTMLKitVapor
/host/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:51:25: warning: type 'Application.HtmlKit.ConfigurationKey.Value' (aka 'Configuration') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
49 |
50 | /// The key used to store the configuration in Vapor's storage
51 | internal struct ConfigurationKey: StorageKey {
| `- warning: type 'Application.HtmlKit.ConfigurationKey.Value' (aka 'Configuration') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
52 |
53 | public typealias Value = Configuration
/host/spi-builder-workspace/Sources/HTMLKitVapor/Configuration.swift:4:20: note: class 'Configuration' does not conform to the 'Sendable' protocol
2 |
3 | /// A type that holds configuration for the renderer
4 | public final class Configuration {
| `- note: class 'Configuration' does not conform to the 'Sendable' protocol
5 |
6 | /// Holds the localization configuration
[3052/3060] Compiling HTMLKitVapor Configuration.swift
[3053/3060] Compiling HTMLKitVapor ViewRenderer.swift
[3054/3060] Compiling HTMLKitVapor Vapor+HTMLKit.swift
/host/spi-builder-workspace/Sources/HTMLKitVapor/Extensions/Vapor+HTMLKit.swift:51:25: warning: type 'Application.HtmlKit.ConfigurationKey.Value' (aka 'Configuration') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
49 |
50 | /// The key used to store the configuration in Vapor's storage
51 | internal struct ConfigurationKey: StorageKey {
| `- warning: type 'Application.HtmlKit.ConfigurationKey.Value' (aka 'Configuration') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
52 |
53 | public typealias Value = Configuration
/host/spi-builder-workspace/Sources/HTMLKitVapor/Configuration.swift:4:20: note: class 'Configuration' does not conform to the 'Sendable' protocol
2 |
3 | /// A type that holds configuration for the renderer
4 | public final class Configuration {
| `- note: class 'Configuration' does not conform to the 'Sendable' protocol
5 |
6 | /// Holds the localization configuration
[3056/3061] Compiling HTMLKitConverter InitRepresentable.swift
[3057/3061] 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: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | private init() {}
[3058/3062] Wrapping AST for HTMLKitConverter for debugging
[3060/3064] Compiling ConvertCommand ConvertCommand.swift
[3061/3064] Emitting module ConvertCommand
[3062/3065] Wrapping AST for ConvertCommand for debugging
[3063/3065] Write Objects.LinkFileList
[3064/3065] Linking ConvertCommand
Build complete! (368.33s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.4",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections.git"
},
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.4.3",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.3",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "vapor",
"requirement" : {
"range" : [
{
"lower_bound" : "4.114.1",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/vapor/vapor.git"
}
],
"manifest_display_name" : "HTMLKit",
"name" : "HTMLKit",
"path" : "/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/Encoder.swift",
"Framework/Rendering/Features.swift",
"Framework/Rendering/Markdown/Extensions/Markdown+Character.swift",
"Framework/Rendering/Markdown/Lexer/MarkdownLexer.swift",
"Framework/Rendering/Markdown/Lexer/MarkdownToken.swift",
"Framework/Rendering/Markdown/Markdown.swift",
"Framework/Rendering/Markdown/MarkdownString.swift",
"Framework/Rendering/Markdown/Parser/MarkdownNode.swift",
"Framework/Rendering/Markdown/Parser/MarkdownParser.swift",
"Framework/Rendering/Renderer.swift"
],
"type" : "library"
},
{
"c99name" : "DeployCommand",
"module_type" : "SwiftTarget",
"name" : "DeployCommand",
"path" : "Sources/Commands/Components",
"product_memberships" : [
"ComponentsPlugin",
"DeployCommand"
],
"sources" : [
"DeployCommand.swift"
],
"target_dependencies" : [
"HTMLKitComponents",
"Minifier"
],
"type" : "executable"
},
{
"c99name" : "ConverterPlugin",
"module_type" : "PluginTarget",
"name" : "ConverterPlugin",
"path" : "Plugins/ConverterPlugin",
"plugin_capability" : {
"intent" : {
"description" : "Converts HTML markup into Swift syntax.",
"type" : "custom",
"verb" : "convert"
},
"permissions" : [
{
"network_scope" : {
"none" : {
}
},
"reason" : "The command needs the permission to create the file.",
"type" : "writeToPackageDirectory"
}
],
"type" : "command"
},
"product_memberships" : [
"ConverterPlugin"
],
"sources" : [
"Plugin.swift"
],
"target_dependencies" : [
"ConvertCommand"
],
"type" : "plugin"
},
{
"c99name" : "ConvertCommand",
"module_type" : "SwiftTarget",
"name" : "ConvertCommand",
"path" : "Sources/Commands/Converter",
"product_memberships" : [
"ConverterPlugin",
"ConvertCommand"
],
"sources" : [
"ConvertCommand.swift"
],
"target_dependencies" : [
"HTMLKitConverter"
],
"type" : "executable"
},
{
"c99name" : "ComponentsPlugin",
"module_type" : "PluginTarget",
"name" : "ComponentsPlugin",
"path" : "Plugins/ComponentsPlugin",
"plugin_capability" : {
"intent" : {
"description" : "Deploys the CSS and JS files for the HTMLKit components.",
"type" : "custom",
"verb" : "deploy"
},
"permissions" : [
{
"network_scope" : {
"none" : {
}
},
"reason" : "The command needs the permission to create the files.",
"type" : "writeToPackageDirectory"
}
],
"type" : "command"
},
"product_memberships" : [
"ComponentsPlugin"
],
"sources" : [
"Plugin.swift"
],
"target_dependencies" : [
"DeployCommand"
],
"type" : "plugin"
}
],
"tools_version" : "5.9"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.