The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of TOMLKit, reference 0.6.0 (ec6198), with Swift 6.0 for macOS (SPM) on 30 Nov 2024 08:50:02 UTC.

Swift 6 data race errors: 14

Build Command

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

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
35 | }
36 |
37 | extension Int8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
38 | 	public var debugDescription: String { self.description }
39 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
41 | }
42 |
43 | extension Int16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
44 | 	public var debugDescription: String { self.description }
45 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
47 | }
48 |
49 | extension Int32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
50 | 	public var debugDescription: String { self.description }
51 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
53 | }
54 |
55 | extension Int64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
56 | 	public var debugDescription: String { self.description }
57 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
59 | }
60 |
61 | extension Int: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
62 | 	public var debugDescription: String { self.description }
63 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
171 | }
172 |
173 | extension Bool: TOMLValueConvertible {
    | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
174 | 	public var debugDescription: String { self.description }
175 | 	public var type: TOMLType { .bool }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:57:13: warning: stored property 'source' of 'Sendable'-conforming struct 'TOMLParseError' has non-sendable type 'TOMLSourceRegion'; this is an error in the Swift 6 language mode
28 | }
29 |
30 | public struct TOMLSourceRegion: Equatable, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TOMLSourceRegion' conform to the 'Sendable' protocol
31 | 	public let begin: TOMLSourcePosition
32 | 	public let end: TOMLSourcePosition
   :
55 | 	///
56 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/classtoml_1_1parse__error.html#a8168b4941305654cf4ba8fc96efd0514).
57 | 	public let source: TOMLSourceRegion
   |             `- warning: stored property 'source' of 'Sendable'-conforming struct 'TOMLParseError' has non-sendable type 'TOMLSourceRegion'; this is an error in the Swift 6 language mode
58 |
59 | 	init(cTOMLParseError: CTOMLParseError) {
[11/38] Compiling TOMLKit TOMLValue.swift
[12/38] Compiling TOMLKit ValueOptions.swift
[13/38] Compiling TOMLKit TOMLTable.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
36 | 	///
37 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fa328473763ff1ab919ce0b01d66ad3bf6).
38 | 	public static let allowLiteralStrings = Self(rawValue: 1 << 2)
   |                    |- warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowLiteralStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | 	/// Strings containing newlines will be emitted as triple-quoted 'multi-line' strings where possible.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
41 | 	///
42 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fad9467c39215be4189dc8395a830f9051).
43 | 	public static let allowMultilineStrings = Self(rawValue: 1 << 3)
   |                    |- warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowMultilineStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 | 	/// Allow real tab characters in string literals (as opposed to the escaped form `\t`).
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
51 | 	///
52 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aab8d4fc7b15531737d6d22536c5f3881c).
53 | 	public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
   |                    |- warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowUnicodeStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// Allow integers with ``ValueOptions/formatAsBinary`` to be emitted as binary.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
56 | 	///
57 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aae8dbe11e331b30941899ce81fd2fee41).
58 | 	public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
   |                    |- warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowBinaryIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 | 	/// Allow integers with ``ValueOptions/formatAsOctal`` to be emitted as octal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
61 | 	///
62 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa3d184bcd6e8f69ebc29b148945f23d4e).
63 | 	public static let allowOctalIntegers = Self(rawValue: 1 << 7)
   |                    |- warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowOctalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | 	/// Allow integers with ``ValueOptions/formatAsHexadecimal`` to be emitted as hexadecimal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
66 | 	///
67 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa41e4d7c47742f8f5b60161cc594b169b).
68 | 	public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
   |                    |- warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowHexadecimalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 |
70 | 	/// Apply indentation to tables nested within other tables/arrays.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
81 | 	///
82 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa449072e30b43d04b744f22522a880818).
83 | 	public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
   |                    |- warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentations' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 |
85 | 	/// Emit floating-point values with relaxed (human-friendly) precision.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 5 | //  The full text of the license can be found in the file named LICENSE.
 6 |
 7 | extension UInt8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 | 	public var debugDescription: String { self.description }
 9 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
11 | }
12 |
13 | extension UInt16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
14 | 	public var debugDescription: String { self.description }
15 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
17 | }
18 |
19 | extension UInt32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
20 | 	public var debugDescription: String { self.description }
21 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | }
24 |
25 | extension UInt64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
26 | 	public var debugDescription: String { self.description }
27 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
29 | }
30 |
31 | extension UInt: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 | 	public var debugDescription: String { self.description }
33 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
35 | }
36 |
37 | extension Int8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
38 | 	public var debugDescription: String { self.description }
39 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
41 | }
42 |
43 | extension Int16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
44 | 	public var debugDescription: String { self.description }
45 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
47 | }
48 |
49 | extension Int32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
50 | 	public var debugDescription: String { self.description }
51 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
53 | }
54 |
55 | extension Int64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
56 | 	public var debugDescription: String { self.description }
57 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
59 | }
60 |
61 | extension Int: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
62 | 	public var debugDescription: String { self.description }
63 | 	public var type: TOMLType { .int }
[14/38] Compiling TOMLKit TOMLTableIterator.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
36 | 	///
37 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fa328473763ff1ab919ce0b01d66ad3bf6).
38 | 	public static let allowLiteralStrings = Self(rawValue: 1 << 2)
   |                    |- warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowLiteralStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | 	/// Strings containing newlines will be emitted as triple-quoted 'multi-line' strings where possible.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
41 | 	///
42 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fad9467c39215be4189dc8395a830f9051).
43 | 	public static let allowMultilineStrings = Self(rawValue: 1 << 3)
   |                    |- warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowMultilineStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 | 	/// Allow real tab characters in string literals (as opposed to the escaped form `\t`).
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
51 | 	///
52 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aab8d4fc7b15531737d6d22536c5f3881c).
53 | 	public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
   |                    |- warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowUnicodeStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// Allow integers with ``ValueOptions/formatAsBinary`` to be emitted as binary.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
56 | 	///
57 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aae8dbe11e331b30941899ce81fd2fee41).
58 | 	public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
   |                    |- warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowBinaryIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 | 	/// Allow integers with ``ValueOptions/formatAsOctal`` to be emitted as octal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
61 | 	///
62 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa3d184bcd6e8f69ebc29b148945f23d4e).
63 | 	public static let allowOctalIntegers = Self(rawValue: 1 << 7)
   |                    |- warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowOctalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | 	/// Allow integers with ``ValueOptions/formatAsHexadecimal`` to be emitted as hexadecimal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
66 | 	///
67 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa41e4d7c47742f8f5b60161cc594b169b).
68 | 	public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
   |                    |- warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowHexadecimalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 |
70 | 	/// Apply indentation to tables nested within other tables/arrays.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
81 | 	///
82 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa449072e30b43d04b744f22522a880818).
83 | 	public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
   |                    |- warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentations' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 |
85 | 	/// Emit floating-point values with relaxed (human-friendly) precision.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 5 | //  The full text of the license can be found in the file named LICENSE.
 6 |
 7 | extension UInt8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 | 	public var debugDescription: String { self.description }
 9 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
11 | }
12 |
13 | extension UInt16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
14 | 	public var debugDescription: String { self.description }
15 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
17 | }
18 |
19 | extension UInt32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
20 | 	public var debugDescription: String { self.description }
21 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | }
24 |
25 | extension UInt64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
26 | 	public var debugDescription: String { self.description }
27 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
29 | }
30 |
31 | extension UInt: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 | 	public var debugDescription: String { self.description }
33 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
35 | }
36 |
37 | extension Int8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
38 | 	public var debugDescription: String { self.description }
39 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
41 | }
42 |
43 | extension Int16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
44 | 	public var debugDescription: String { self.description }
45 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
47 | }
48 |
49 | extension Int32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
50 | 	public var debugDescription: String { self.description }
51 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
53 | }
54 |
55 | extension Int64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
56 | 	public var debugDescription: String { self.description }
57 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
59 | }
60 |
61 | extension Int: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
62 | 	public var debugDescription: String { self.description }
63 | 	public var type: TOMLType { .int }
[15/38] Compiling TOMLKit TOMLValueConvertible+Int.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
36 | 	///
37 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fa328473763ff1ab919ce0b01d66ad3bf6).
38 | 	public static let allowLiteralStrings = Self(rawValue: 1 << 2)
   |                    |- warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowLiteralStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | 	/// Strings containing newlines will be emitted as triple-quoted 'multi-line' strings where possible.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
41 | 	///
42 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fad9467c39215be4189dc8395a830f9051).
43 | 	public static let allowMultilineStrings = Self(rawValue: 1 << 3)
   |                    |- warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowMultilineStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 | 	/// Allow real tab characters in string literals (as opposed to the escaped form `\t`).
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
51 | 	///
52 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aab8d4fc7b15531737d6d22536c5f3881c).
53 | 	public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
   |                    |- warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowUnicodeStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// Allow integers with ``ValueOptions/formatAsBinary`` to be emitted as binary.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
56 | 	///
57 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aae8dbe11e331b30941899ce81fd2fee41).
58 | 	public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
   |                    |- warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowBinaryIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 | 	/// Allow integers with ``ValueOptions/formatAsOctal`` to be emitted as octal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
61 | 	///
62 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa3d184bcd6e8f69ebc29b148945f23d4e).
63 | 	public static let allowOctalIntegers = Self(rawValue: 1 << 7)
   |                    |- warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowOctalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | 	/// Allow integers with ``ValueOptions/formatAsHexadecimal`` to be emitted as hexadecimal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
66 | 	///
67 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa41e4d7c47742f8f5b60161cc594b169b).
68 | 	public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
   |                    |- warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowHexadecimalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 |
70 | 	/// Apply indentation to tables nested within other tables/arrays.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
81 | 	///
82 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa449072e30b43d04b744f22522a880818).
83 | 	public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
   |                    |- warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentations' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 |
85 | 	/// Emit floating-point values with relaxed (human-friendly) precision.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 5 | //  The full text of the license can be found in the file named LICENSE.
 6 |
 7 | extension UInt8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 | 	public var debugDescription: String { self.description }
 9 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
11 | }
12 |
13 | extension UInt16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
14 | 	public var debugDescription: String { self.description }
15 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
17 | }
18 |
19 | extension UInt32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
20 | 	public var debugDescription: String { self.description }
21 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | }
24 |
25 | extension UInt64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
26 | 	public var debugDescription: String { self.description }
27 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
29 | }
30 |
31 | extension UInt: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 | 	public var debugDescription: String { self.description }
33 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
35 | }
36 |
37 | extension Int8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
38 | 	public var debugDescription: String { self.description }
39 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
41 | }
42 |
43 | extension Int16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
44 | 	public var debugDescription: String { self.description }
45 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
47 | }
48 |
49 | extension Int32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
50 | 	public var debugDescription: String { self.description }
51 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
53 | }
54 |
55 | extension Int64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
56 | 	public var debugDescription: String { self.description }
57 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
59 | }
60 |
61 | extension Int: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
62 | 	public var debugDescription: String { self.description }
63 | 	public var type: TOMLType { .int }
[16/38] Compiling TOMLKit KeyedEncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
36 | 	///
37 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fa328473763ff1ab919ce0b01d66ad3bf6).
38 | 	public static let allowLiteralStrings = Self(rawValue: 1 << 2)
   |                    |- warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowLiteralStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | 	/// Strings containing newlines will be emitted as triple-quoted 'multi-line' strings where possible.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
41 | 	///
42 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fad9467c39215be4189dc8395a830f9051).
43 | 	public static let allowMultilineStrings = Self(rawValue: 1 << 3)
   |                    |- warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowMultilineStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 | 	/// Allow real tab characters in string literals (as opposed to the escaped form `\t`).
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
51 | 	///
52 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aab8d4fc7b15531737d6d22536c5f3881c).
53 | 	public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
   |                    |- warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowUnicodeStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// Allow integers with ``ValueOptions/formatAsBinary`` to be emitted as binary.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
56 | 	///
57 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aae8dbe11e331b30941899ce81fd2fee41).
58 | 	public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
   |                    |- warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowBinaryIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 | 	/// Allow integers with ``ValueOptions/formatAsOctal`` to be emitted as octal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
61 | 	///
62 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa3d184bcd6e8f69ebc29b148945f23d4e).
63 | 	public static let allowOctalIntegers = Self(rawValue: 1 << 7)
   |                    |- warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowOctalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | 	/// Allow integers with ``ValueOptions/formatAsHexadecimal`` to be emitted as hexadecimal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
66 | 	///
67 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa41e4d7c47742f8f5b60161cc594b169b).
68 | 	public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
   |                    |- warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowHexadecimalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 |
70 | 	/// Apply indentation to tables nested within other tables/arrays.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
81 | 	///
82 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa449072e30b43d04b744f22522a880818).
83 | 	public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
   |                    |- warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentations' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 |
85 | 	/// Emit floating-point values with relaxed (human-friendly) precision.
[17/38] Compiling TOMLKit SingleValueEncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
36 | 	///
37 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fa328473763ff1ab919ce0b01d66ad3bf6).
38 | 	public static let allowLiteralStrings = Self(rawValue: 1 << 2)
   |                    |- warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowLiteralStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | 	/// Strings containing newlines will be emitted as triple-quoted 'multi-line' strings where possible.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
41 | 	///
42 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fad9467c39215be4189dc8395a830f9051).
43 | 	public static let allowMultilineStrings = Self(rawValue: 1 << 3)
   |                    |- warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowMultilineStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 | 	/// Allow real tab characters in string literals (as opposed to the escaped form `\t`).
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
51 | 	///
52 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aab8d4fc7b15531737d6d22536c5f3881c).
53 | 	public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
   |                    |- warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowUnicodeStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// Allow integers with ``ValueOptions/formatAsBinary`` to be emitted as binary.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
56 | 	///
57 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aae8dbe11e331b30941899ce81fd2fee41).
58 | 	public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
   |                    |- warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowBinaryIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 | 	/// Allow integers with ``ValueOptions/formatAsOctal`` to be emitted as octal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
61 | 	///
62 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa3d184bcd6e8f69ebc29b148945f23d4e).
63 | 	public static let allowOctalIntegers = Self(rawValue: 1 << 7)
   |                    |- warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowOctalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | 	/// Allow integers with ``ValueOptions/formatAsHexadecimal`` to be emitted as hexadecimal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
66 | 	///
67 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa41e4d7c47742f8f5b60161cc594b169b).
68 | 	public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
   |                    |- warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowHexadecimalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 |
70 | 	/// Apply indentation to tables nested within other tables/arrays.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
81 | 	///
82 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa449072e30b43d04b744f22522a880818).
83 | 	public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
   |                    |- warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentations' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 |
85 | 	/// Emit floating-point values with relaxed (human-friendly) precision.
[18/38] Compiling TOMLKit TOMLEncoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
36 | 	///
37 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fa328473763ff1ab919ce0b01d66ad3bf6).
38 | 	public static let allowLiteralStrings = Self(rawValue: 1 << 2)
   |                    |- warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowLiteralStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | 	/// Strings containing newlines will be emitted as triple-quoted 'multi-line' strings where possible.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
41 | 	///
42 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fad9467c39215be4189dc8395a830f9051).
43 | 	public static let allowMultilineStrings = Self(rawValue: 1 << 3)
   |                    |- warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowMultilineStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 | 	/// Allow real tab characters in string literals (as opposed to the escaped form `\t`).
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
51 | 	///
52 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aab8d4fc7b15531737d6d22536c5f3881c).
53 | 	public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
   |                    |- warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowUnicodeStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// Allow integers with ``ValueOptions/formatAsBinary`` to be emitted as binary.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
56 | 	///
57 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aae8dbe11e331b30941899ce81fd2fee41).
58 | 	public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
   |                    |- warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowBinaryIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 | 	/// Allow integers with ``ValueOptions/formatAsOctal`` to be emitted as octal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
61 | 	///
62 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa3d184bcd6e8f69ebc29b148945f23d4e).
63 | 	public static let allowOctalIntegers = Self(rawValue: 1 << 7)
   |                    |- warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowOctalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | 	/// Allow integers with ``ValueOptions/formatAsHexadecimal`` to be emitted as hexadecimal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
66 | 	///
67 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa41e4d7c47742f8f5b60161cc594b169b).
68 | 	public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
   |                    |- warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowHexadecimalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 |
70 | 	/// Apply indentation to tables nested within other tables/arrays.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
81 | 	///
82 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa449072e30b43d04b744f22522a880818).
83 | 	public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
   |                    |- warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentations' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 |
85 | 	/// Emit floating-point values with relaxed (human-friendly) precision.
[19/38] Compiling TOMLKit TOMLDate&Time&DateTime.swift
[20/38] Compiling TOMLKit TOMLInt.swift
[21/38] Compiling TOMLKit TOMLTable+CollectionFunctions.swift
[22/38] Compiling TOMLKit UnkeyedEncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: warning: static property 'quoteDateAndTimes' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
28 | 	///
29 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fa6e569050aafc6eca4c0c5dfab35fd25a).
30 | 	public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
   |                    |- warning: static property 'quoteDateAndTimes' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'quoteDateAndTimes' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | 	/// Infinities and NaNs will be emitted as quoted strings.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: warning: static property 'quoteInfinitesAndNaNs' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
31 |
32 | 	/// Infinities and NaNs will be emitted as quoted strings.
33 | 	public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
   |                    |- warning: static property 'quoteInfinitesAndNaNs' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'quoteInfinitesAndNaNs' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | 	/// Strings will be emitted as single-quoted literal strings where possible.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
36 | 	///
37 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fa328473763ff1ab919ce0b01d66ad3bf6).
38 | 	public static let allowLiteralStrings = Self(rawValue: 1 << 2)
   |                    |- warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowLiteralStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | 	/// Strings containing newlines will be emitted as triple-quoted 'multi-line' strings where possible.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
41 | 	///
42 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fad9467c39215be4189dc8395a830f9051).
43 | 	public static let allowMultilineStrings = Self(rawValue: 1 << 3)
   |                    |- warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowMultilineStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 | 	/// Allow real tab characters in string literals (as opposed to the escaped form `\t`).
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: warning: static property 'allowRealTabsInStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
46 | 	///
47 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa85cd74c0ce79c211961b6db05587778c).
48 | 	public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
   |                    |- warning: static property 'allowRealTabsInStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowRealTabsInStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | 	/// Allow non-ASCII characters in strings (as opposed to their escaped form, e.g. `\u00DA`).
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
51 | 	///
52 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aab8d4fc7b15531737d6d22536c5f3881c).
53 | 	public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
   |                    |- warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowUnicodeStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// Allow integers with ``ValueOptions/formatAsBinary`` to be emitted as binary.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
56 | 	///
57 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aae8dbe11e331b30941899ce81fd2fee41).
58 | 	public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
   |                    |- warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowBinaryIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 | 	/// Allow integers with ``ValueOptions/formatAsOctal`` to be emitted as octal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
61 | 	///
62 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa3d184bcd6e8f69ebc29b148945f23d4e).
63 | 	public static let allowOctalIntegers = Self(rawValue: 1 << 7)
   |                    |- warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowOctalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | 	/// Allow integers with ``ValueOptions/formatAsHexadecimal`` to be emitted as hexadecimal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
66 | 	///
67 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa41e4d7c47742f8f5b60161cc594b169b).
68 | 	public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
   |                    |- warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowHexadecimalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 |
70 | 	/// Apply indentation to tables nested within other tables/arrays.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: warning: static property 'indentSubTables' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
71 | 	///
72 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa4ccbf147a4e194e7d2ae2b242e1eeceb).
73 | 	public static let indentSubTables = Self(rawValue: 1 << 9)
   |                    |- warning: static property 'indentSubTables' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentSubTables' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 |
75 | 	/// Apply indentation to array elements when the array is forced to wrap over multiple lines.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: warning: static property 'indentArrayElements' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
76 | 	///
77 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa8bf21ed1736197d191a147317c7ea95b).
78 | 	public static let indentArrayElements = Self(rawValue: 1 << 10)
   |                    |- warning: static property 'indentArrayElements' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentArrayElements' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 |
80 | 	/// Combination mask of all indentation-enabling flags.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
81 | 	///
82 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa449072e30b43d04b744f22522a880818).
83 | 	public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
   |                    |- warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentations' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 |
85 | 	/// Emit floating-point values with relaxed (human-friendly) precision.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: warning: static property 'relaxedFloatPrecision' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
89 | 	///
90 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa2023489f273b06937dd37c25b2cf2078).
91 | 	public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
   |                    |- warning: static property 'relaxedFloatPrecision' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'relaxedFloatPrecision' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 | }
93 |
[23/38] Compiling TOMLKit FormatOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: warning: static property 'quoteDateAndTimes' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
28 | 	///
29 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fa6e569050aafc6eca4c0c5dfab35fd25a).
30 | 	public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
   |                    |- warning: static property 'quoteDateAndTimes' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'quoteDateAndTimes' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | 	/// Infinities and NaNs will be emitted as quoted strings.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: warning: static property 'quoteInfinitesAndNaNs' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
31 |
32 | 	/// Infinities and NaNs will be emitted as quoted strings.
33 | 	public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
   |                    |- warning: static property 'quoteInfinitesAndNaNs' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'quoteInfinitesAndNaNs' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | 	/// Strings will be emitted as single-quoted literal strings where possible.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
36 | 	///
37 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fa328473763ff1ab919ce0b01d66ad3bf6).
38 | 	public static let allowLiteralStrings = Self(rawValue: 1 << 2)
   |                    |- warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowLiteralStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | 	/// Strings containing newlines will be emitted as triple-quoted 'multi-line' strings where possible.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
41 | 	///
42 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fad9467c39215be4189dc8395a830f9051).
43 | 	public static let allowMultilineStrings = Self(rawValue: 1 << 3)
   |                    |- warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowMultilineStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 | 	/// Allow real tab characters in string literals (as opposed to the escaped form `\t`).
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: warning: static property 'allowRealTabsInStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
46 | 	///
47 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa85cd74c0ce79c211961b6db05587778c).
48 | 	public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
   |                    |- warning: static property 'allowRealTabsInStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowRealTabsInStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | 	/// Allow non-ASCII characters in strings (as opposed to their escaped form, e.g. `\u00DA`).
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
51 | 	///
52 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aab8d4fc7b15531737d6d22536c5f3881c).
53 | 	public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
   |                    |- warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowUnicodeStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// Allow integers with ``ValueOptions/formatAsBinary`` to be emitted as binary.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
56 | 	///
57 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aae8dbe11e331b30941899ce81fd2fee41).
58 | 	public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
   |                    |- warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowBinaryIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 | 	/// Allow integers with ``ValueOptions/formatAsOctal`` to be emitted as octal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
61 | 	///
62 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa3d184bcd6e8f69ebc29b148945f23d4e).
63 | 	public static let allowOctalIntegers = Self(rawValue: 1 << 7)
   |                    |- warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowOctalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | 	/// Allow integers with ``ValueOptions/formatAsHexadecimal`` to be emitted as hexadecimal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
66 | 	///
67 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa41e4d7c47742f8f5b60161cc594b169b).
68 | 	public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
   |                    |- warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowHexadecimalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 |
70 | 	/// Apply indentation to tables nested within other tables/arrays.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: warning: static property 'indentSubTables' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
71 | 	///
72 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa4ccbf147a4e194e7d2ae2b242e1eeceb).
73 | 	public static let indentSubTables = Self(rawValue: 1 << 9)
   |                    |- warning: static property 'indentSubTables' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentSubTables' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 |
75 | 	/// Apply indentation to array elements when the array is forced to wrap over multiple lines.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: warning: static property 'indentArrayElements' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
76 | 	///
77 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa8bf21ed1736197d191a147317c7ea95b).
78 | 	public static let indentArrayElements = Self(rawValue: 1 << 10)
   |                    |- warning: static property 'indentArrayElements' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentArrayElements' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 |
80 | 	/// Combination mask of all indentation-enabling flags.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
81 | 	///
82 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa449072e30b43d04b744f22522a880818).
83 | 	public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
   |                    |- warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentations' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 |
85 | 	/// Emit floating-point values with relaxed (human-friendly) precision.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: warning: static property 'relaxedFloatPrecision' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
89 | 	///
90 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa2023489f273b06937dd37c25b2cf2078).
91 | 	public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
   |                    |- warning: static property 'relaxedFloatPrecision' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'relaxedFloatPrecision' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 | }
93 |
[24/38] Compiling TOMLKit Operators&Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:30:20: warning: static property 'quoteDateAndTimes' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
28 | 	///
29 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fa6e569050aafc6eca4c0c5dfab35fd25a).
30 | 	public static let quoteDateAndTimes = Self(rawValue: 1 << 0)
   |                    |- warning: static property 'quoteDateAndTimes' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'quoteDateAndTimes' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | 	/// Infinities and NaNs will be emitted as quoted strings.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:33:20: warning: static property 'quoteInfinitesAndNaNs' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
31 |
32 | 	/// Infinities and NaNs will be emitted as quoted strings.
33 | 	public static let quoteInfinitesAndNaNs = Self(rawValue: 1 << 1)
   |                    |- warning: static property 'quoteInfinitesAndNaNs' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'quoteInfinitesAndNaNs' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | 	/// Strings will be emitted as single-quoted literal strings where possible.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:38:20: warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
36 | 	///
37 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fa328473763ff1ab919ce0b01d66ad3bf6).
38 | 	public static let allowLiteralStrings = Self(rawValue: 1 << 2)
   |                    |- warning: static property 'allowLiteralStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowLiteralStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | 	/// Strings containing newlines will be emitted as triple-quoted 'multi-line' strings where possible.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:43:20: warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
41 | 	///
42 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#af1a6761a2f4d80b1a541ba819d9c8e0fad9467c39215be4189dc8395a830f9051).
43 | 	public static let allowMultilineStrings = Self(rawValue: 1 << 3)
   |                    |- warning: static property 'allowMultilineStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowMultilineStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 | 	/// Allow real tab characters in string literals (as opposed to the escaped form `\t`).
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:48:20: warning: static property 'allowRealTabsInStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
46 | 	///
47 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa85cd74c0ce79c211961b6db05587778c).
48 | 	public static let allowRealTabsInStrings = Self(rawValue: 1 << 4)
   |                    |- warning: static property 'allowRealTabsInStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowRealTabsInStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | 	/// Allow non-ASCII characters in strings (as opposed to their escaped form, e.g. `\u00DA`).
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:53:20: warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
51 | 	///
52 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aab8d4fc7b15531737d6d22536c5f3881c).
53 | 	public static let allowUnicodeStrings = Self(rawValue: 1 << 5)
   |                    |- warning: static property 'allowUnicodeStrings' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowUnicodeStrings' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// Allow integers with ``ValueOptions/formatAsBinary`` to be emitted as binary.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:58:20: warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
56 | 	///
57 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aae8dbe11e331b30941899ce81fd2fee41).
58 | 	public static let allowBinaryIntegers = Self(rawValue: 1 << 6)
   |                    |- warning: static property 'allowBinaryIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowBinaryIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 | 	/// Allow integers with ``ValueOptions/formatAsOctal`` to be emitted as octal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:63:20: warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
61 | 	///
62 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa3d184bcd6e8f69ebc29b148945f23d4e).
63 | 	public static let allowOctalIntegers = Self(rawValue: 1 << 7)
   |                    |- warning: static property 'allowOctalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowOctalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | 	/// Allow integers with ``ValueOptions/formatAsHexadecimal`` to be emitted as hexadecimal.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:68:20: warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
66 | 	///
67 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa41e4d7c47742f8f5b60161cc594b169b).
68 | 	public static let allowHexadecimalIntegers = Self(rawValue: 1 << 8)
   |                    |- warning: static property 'allowHexadecimalIntegers' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'allowHexadecimalIntegers' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 |
70 | 	/// Apply indentation to tables nested within other tables/arrays.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:73:20: warning: static property 'indentSubTables' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
71 | 	///
72 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa4ccbf147a4e194e7d2ae2b242e1eeceb).
73 | 	public static let indentSubTables = Self(rawValue: 1 << 9)
   |                    |- warning: static property 'indentSubTables' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentSubTables' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 |
75 | 	/// Apply indentation to array elements when the array is forced to wrap over multiple lines.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:78:20: warning: static property 'indentArrayElements' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
76 | 	///
77 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa8bf21ed1736197d191a147317c7ea95b).
78 | 	public static let indentArrayElements = Self(rawValue: 1 << 10)
   |                    |- warning: static property 'indentArrayElements' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentArrayElements' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 |
80 | 	/// Combination mask of all indentation-enabling flags.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:83:20: warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
81 | 	///
82 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa449072e30b43d04b744f22522a880818).
83 | 	public static let indentations = Self(rawValue: Self.indentSubTables.rawValue | Self.indentArrayElements.rawValue)
   |                    |- warning: static property 'indentations' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'indentations' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 |
85 | 	/// Emit floating-point values with relaxed (human-friendly) precision.
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/FormatOptions.swift:91:20: warning: static property 'relaxedFloatPrecision' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Formatting options that are used when converting a ``TOMLTable`` to a JSON, YAML, or TOML document.
20 | public struct FormatOptions: OptionSet {
   |               `- note: consider making struct 'FormatOptions' conform to the 'Sendable' protocol
21 | 	public let rawValue: UInt64
22 |
   :
89 | 	///
90 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/namespacetoml.html#a2102aa80bc57783d96180f36e1f64f6aa2023489f273b06937dd37c25b2cf2078).
91 | 	public static let relaxedFloatPrecision = Self(rawValue: 1 << 11)
   |                    |- warning: static property 'relaxedFloatPrecision' is not concurrency-safe because non-'Sendable' type 'FormatOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'relaxedFloatPrecision' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 | }
93 |
[25/38] Compiling TOMLKit TOMLArray+CollectionConformance.swift
[26/38] Compiling TOMLKit TOMLArray.swift
[27/38] Compiling TOMLKit TOMLArrayIterator.swift
[28/38] Compiling TOMLKit TOMLValueConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
171 | }
172 |
173 | extension Bool: TOMLValueConvertible {
    | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
174 | 	public var debugDescription: String { self.description }
175 | 	public var type: TOMLType { .bool }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:57:13: warning: stored property 'source' of 'Sendable'-conforming struct 'TOMLParseError' has non-sendable type 'TOMLSourceRegion'; this is an error in the Swift 6 language mode
28 | }
29 |
30 | public struct TOMLSourceRegion: Equatable, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TOMLSourceRegion' conform to the 'Sendable' protocol
31 | 	public let begin: TOMLSourcePosition
32 | 	public let end: TOMLSourcePosition
   :
55 | 	///
56 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/classtoml_1_1parse__error.html#a8168b4941305654cf4ba8fc96efd0514).
57 | 	public let source: TOMLSourceRegion
   |             `- warning: stored property 'source' of 'Sendable'-conforming struct 'TOMLParseError' has non-sendable type 'TOMLSourceRegion'; this is an error in the Swift 6 language mode
58 |
59 | 	init(cTOMLParseError: CTOMLParseError) {
[29/38] Compiling TOMLKit TOMLCodingKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
171 | }
172 |
173 | extension Bool: TOMLValueConvertible {
    | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
174 | 	public var debugDescription: String { self.description }
175 | 	public var type: TOMLType { .bool }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:57:13: warning: stored property 'source' of 'Sendable'-conforming struct 'TOMLParseError' has non-sendable type 'TOMLSourceRegion'; this is an error in the Swift 6 language mode
28 | }
29 |
30 | public struct TOMLSourceRegion: Equatable, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TOMLSourceRegion' conform to the 'Sendable' protocol
31 | 	public let begin: TOMLSourcePosition
32 | 	public let end: TOMLSourcePosition
   :
55 | 	///
56 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/classtoml_1_1parse__error.html#a8168b4941305654cf4ba8fc96efd0514).
57 | 	public let source: TOMLSourceRegion
   |             `- warning: stored property 'source' of 'Sendable'-conforming struct 'TOMLParseError' has non-sendable type 'TOMLSourceRegion'; this is an error in the Swift 6 language mode
58 |
59 | 	init(cTOMLParseError: CTOMLParseError) {
[30/38] Compiling TOMLKit TOMLParseError.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
171 | }
172 |
173 | extension Bool: TOMLValueConvertible {
    | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
174 | 	public var debugDescription: String { self.description }
175 | 	public var type: TOMLType { .bool }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOMLParseError.swift:57:13: warning: stored property 'source' of 'Sendable'-conforming struct 'TOMLParseError' has non-sendable type 'TOMLSourceRegion'; this is an error in the Swift 6 language mode
28 | }
29 |
30 | public struct TOMLSourceRegion: Equatable, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TOMLSourceRegion' conform to the 'Sendable' protocol
31 | 	public let begin: TOMLSourcePosition
32 | 	public let end: TOMLSourcePosition
   :
55 | 	///
56 | 	/// This documentation comment was taken from the [toml++ documentation](https://marzer.github.io/tomlplusplus/classtoml_1_1parse__error.html#a8168b4941305654cf4ba8fc96efd0514).
57 | 	public let source: TOMLSourceRegion
   |             `- warning: stored property 'source' of 'Sendable'-conforming struct 'TOMLParseError' has non-sendable type 'TOMLSourceRegion'; this is an error in the Swift 6 language mode
58 |
59 | 	init(cTOMLParseError: CTOMLParseError) {
[31/38] Compiling TOMLKit TOMLType.swift
[32/38] Compiling TOMLKit TOMLValue+Initializers.swift
[33/38] Compiling TOMLKit InternalTOMLDecoder.swift
[34/38] Compiling TOMLKit KeyedDecodingContainerProtocol.swift
[35/38] Compiling TOMLKit SingleValueDecodingContainer.swift
[36/38] Compiling TOMLKit TOMLDecoder.swift
[37/38] Compiling TOMLKit UnkeyedDecodingContainer.swift
[38/38] Compiling TOMLKit InternalTOMLEncoder.swift
Build complete! (26.40s)
Build complete.
{
  "c_language_standard" : "c99",
  "cxx_language_standard" : "c++17",
  "dependencies" : [
    {
      "identity" : "swift-checkit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.0.2",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/karwa/swift-checkit.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "TOMLKit",
  "name" : "TOMLKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "TOMLKit",
      "targets" : [
        "TOMLKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TOMLKitTests",
      "module_type" : "SwiftTarget",
      "name" : "TOMLKitTests",
      "path" : "Tests/TOMLKitTests",
      "product_dependencies" : [
        "Checkit"
      ],
      "sources" : [
        "TOMLKitTests.swift"
      ],
      "target_dependencies" : [
        "TOMLKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TOMLKit",
      "module_type" : "SwiftTarget",
      "name" : "TOMLKit",
      "path" : "Sources/TOMLKit",
      "product_memberships" : [
        "TOMLKit"
      ],
      "sources" : [
        "Decoder/InternalTOMLDecoder.swift",
        "Decoder/KeyedDecodingContainerProtocol.swift",
        "Decoder/SingleValueDecodingContainer.swift",
        "Decoder/TOMLDecoder.swift",
        "Decoder/UnkeyedDecodingContainer.swift",
        "Encoder/InternalTOMLEncoder.swift",
        "Encoder/KeyedEncodingContainer.swift",
        "Encoder/SingleValueEncodingContainer.swift",
        "Encoder/TOMLEncoder.swift",
        "Encoder/UnkeyedEncodingContainer.swift",
        "FormatOptions.swift",
        "Operators&Extensions.swift",
        "TOML Data Types/TOMLArray/TOMLArray+CollectionConformance.swift",
        "TOML Data Types/TOMLArray/TOMLArray.swift",
        "TOML Data Types/TOMLArray/TOMLArrayIterator.swift",
        "TOML Data Types/TOMLDate&Time&DateTime.swift",
        "TOML Data Types/TOMLInt.swift",
        "TOML Data Types/TOMLTable/TOMLTable+CollectionFunctions.swift",
        "TOML Data Types/TOMLTable/TOMLTable.swift",
        "TOML Data Types/TOMLTable/TOMLTableIterator.swift",
        "TOML Data Types/TOMLValueConvertible+Int.swift",
        "TOML Data Types/TOMLValueConvertible.swift",
        "TOMLCodingKey.swift",
        "TOMLParseError.swift",
        "TOMLType.swift",
        "TOMLValue/TOMLValue+Initializers.swift",
        "TOMLValue/TOMLValue.swift",
        "ValueOptions.swift"
      ],
      "target_dependencies" : [
        "CTOML"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CTOML",
      "module_type" : "ClangTarget",
      "name" : "CTOML",
      "path" : "Sources/CTOML",
      "product_memberships" : [
        "TOMLKit"
      ],
      "sources" : [
        "Sources/Array.cpp",
        "Sources/Conversion.cpp",
        "Sources/Date&Time&DateTime.cpp",
        "Sources/Node.cpp",
        "Sources/Table.cpp"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/lebje/tomlkit/0.6.0
Repository:               LebJe/TOMLKit
Swift version used:       6.0
		.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
		.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
Target:                   TOMLKit
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'TOMLKit'...
Finished extracting symbol information for 'TOMLKit'. (5.71s)
Building documentation for 'TOMLKit'...
warning: Parameter 'string' not found in initializer declaration
   --> ../TOML Data Types/TOMLTable/TOMLTable.swift:232:8-232:40
230 | 	/// Creates a `TOMLTable` by encoding `value` using ``TOMLEncoder``.
231 | 	/// - Parameters:
232 + 	///   - string: An `Encodable` struct.
    |        ╰─suggestion: Remove 'string' parameter documentation
233 | 	/// - Throws: ``EncodingError`` if an error occurs during encoding.
234 | 	public convenience init<V: Encodable>(_ value: V) throws {
warning: Parameter 'value' is missing documentation
   --> ../TOML Data Types/TOMLTable/TOMLTable.swift:232:40-232:40
230 | 	/// Creates a `TOMLTable` by encoding `value` using ``TOMLEncoder``.
231 | 	/// - Parameters:
232 + 	///   - string: An `Encodable` struct.
    |                                        ╰─suggestion: Document 'value' parameter
233 | 	/// - Throws: ``EncodingError`` if an error occurs during encoding.
234 | 	public convenience init<V: Encodable>(_ value: V) throws {
warning: 'EncodingError' doesn't exist at '/TOMLKit/TOMLTable/init(_:)'
   --> ../TOML Data Types/TOMLTable/TOMLTable.swift:233:18-233:31
231 | 	/// - Parameters:
232 | 	///   - string: An `Encodable` struct.
233 + 	/// - Throws: ``EncodingError`` if an error occurs during encoding.
234 | 	public convenience init<V: Encodable>(_ value: V) throws {
235 | 		try self.init(tablePointer: TOMLEncoder().encode(value).tablePointer)
warning: Parameter 'options' is missing documentation
   --> ../TOML Data Types/TOMLTable/TOMLTable.swift:282:67-282:67
280 |
281 | 	/// Converts this `TOMLTable` to a JSON, YAML, or TOML document.
282 + 	/// - Parameter format: The format you want to convert `self` to.
    |                                                                   ╰─suggestion: Document 'options' parameter
283 | 	/// - Returns: The `String` containing the JSON, YAML, or TOML document.
284 | 	public func convert(
warning: Link in document summary will not be displayed
Summary should only contain (formatted) text. To resolve this issue, place links and images elsewhere in the document, or remove them.
 --> TOMLKit.md:3:14-3:37
1 | # ``TOMLKit``
2 |
3 + TOMLKit is a [TOML](https://toml.io) parser and serializer powered by [toml++](https://github.com/marzer/tomlplusplus/).
4 |
5 | To get started, go to ``TOMLKit/TOMLTable``.
warning: Link in document summary will not be displayed
Summary should only contain (formatted) text. To resolve this issue, place links and images elsewhere in the document, or remove them.
 --> TOMLKit.md:3:71-3:120
1 | # ``TOMLKit``
2 |
3 + TOMLKit is a [TOML](https://toml.io) parser and serializer powered by [toml++](https://github.com/marzer/tomlplusplus/).
4 |
5 | To get started, go to ``TOMLKit/TOMLTable``.Finished building documentation for 'TOMLKit' (0.38s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/lebje/tomlkit/0.6.0
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling SymbolKit Mixin+Equals.swift
[7/53] Compiling SymbolKit Mixin+Hash.swift
[8/53] Compiling SymbolKit Mixin.swift
[9/53] Compiling SymbolKit LineList.swift
[10/53] Compiling SymbolKit Position.swift
[11/53] Emitting module SymbolKit
[12/57] Compiling Snippets SnippetParser.swift
[13/57] Compiling SymbolKit SourceRange.swift
[14/57] Compiling SymbolKit Metadata.swift
[15/57] Compiling SymbolKit Module.swift
[16/57] Compiling SymbolKit OperatingSystem.swift
[17/57] Compiling SymbolKit Platform.swift
[18/57] Compiling Snippets Snippet.swift
[19/57] Emitting module Snippets
[20/57] Compiling SymbolKit Relationship.swift
[21/57] Compiling SymbolKit RelationshipKind.swift
[22/57] Compiling SymbolKit SourceOrigin.swift
[23/57] Compiling SymbolKit GenericConstraints.swift
[24/57] Compiling SymbolKit Swift.swift
[25/57] Compiling SymbolKit SemanticVersion.swift
[26/57] Compiling SymbolKit AccessControl.swift
[27/57] Compiling SymbolKit Availability.swift
[28/57] Compiling SymbolKit AvailabilityItem.swift
[29/57] Compiling SymbolKit Domain.swift
[30/57] Compiling SymbolKit DeclarationFragments.swift
[31/57] Compiling SymbolKit Fragment.swift
[32/57] Compiling SymbolKit FragmentKind.swift
[33/57] Compiling SymbolKit FunctionParameter.swift
[34/57] Compiling SymbolKit FunctionSignature.swift
[35/57] Compiling SymbolKit Identifier.swift
[36/57] Compiling SymbolKit KindIdentifier.swift
[37/57] Compiling SymbolKit Location.swift
[38/57] Compiling SymbolKit Mutability.swift
[39/57] Compiling SymbolKit Symbol.swift
[40/57] Compiling SymbolKit SymbolKind.swift
[41/57] Compiling SymbolKit SymbolGraph.swift
[42/57] Compiling SymbolKit GraphCollector.swift
[43/57] Compiling SymbolKit Names.swift
[44/57] Compiling SymbolKit SPI.swift
[45/57] Compiling SymbolKit Snippet.swift
[46/57] Compiling SymbolKit Extension.swift
[47/57] Compiling SymbolKit GenericConstraint.swift
[48/57] Compiling SymbolKit GenericParameter.swift
[49/57] Compiling SymbolKit Generics.swift
[50/57] Compiling SymbolKit Namespace.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Emitting module snippet_extract
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.05s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/28] Compiling TOMLKit TOMLType.swift
[3/28] Compiling TOMLKit TOMLValue+Initializers.swift
[4/30] Compiling TOMLKit TOMLValueConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
171 | }
172 |
173 | extension Bool: TOMLValueConvertible {
    | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
174 | 	public var debugDescription: String { self.description }
175 | 	public var type: TOMLType { .bool }
[5/30] Compiling TOMLKit TOMLCodingKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
171 | }
172 |
173 | extension Bool: TOMLValueConvertible {
    | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
174 | 	public var debugDescription: String { self.description }
175 | 	public var type: TOMLType { .bool }
[6/30] Compiling TOMLKit TOMLParseError.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
171 | }
172 |
173 | extension Bool: TOMLValueConvertible {
    | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
174 | 	public var debugDescription: String { self.description }
175 | 	public var type: TOMLType { .bool }
[7/30] Compiling TOMLKit TOMLTable.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 5 | //  The full text of the license can be found in the file named LICENSE.
 6 |
 7 | extension UInt8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 | 	public var debugDescription: String { self.description }
 9 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
11 | }
12 |
13 | extension UInt16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
14 | 	public var debugDescription: String { self.description }
15 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
17 | }
18 |
19 | extension UInt32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
20 | 	public var debugDescription: String { self.description }
21 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | }
24 |
25 | extension UInt64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
26 | 	public var debugDescription: String { self.description }
27 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
29 | }
30 |
31 | extension UInt: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 | 	public var debugDescription: String { self.description }
33 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
35 | }
36 |
37 | extension Int8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
38 | 	public var debugDescription: String { self.description }
39 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
41 | }
42 |
43 | extension Int16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
44 | 	public var debugDescription: String { self.description }
45 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
47 | }
48 |
49 | extension Int32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
50 | 	public var debugDescription: String { self.description }
51 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
53 | }
54 |
55 | extension Int64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
56 | 	public var debugDescription: String { self.description }
57 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
59 | }
60 |
61 | extension Int: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
62 | 	public var debugDescription: String { self.description }
63 | 	public var type: TOMLType { .int }
[8/30] Compiling TOMLKit TOMLTableIterator.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 5 | //  The full text of the license can be found in the file named LICENSE.
 6 |
 7 | extension UInt8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 | 	public var debugDescription: String { self.description }
 9 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
11 | }
12 |
13 | extension UInt16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
14 | 	public var debugDescription: String { self.description }
15 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
17 | }
18 |
19 | extension UInt32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
20 | 	public var debugDescription: String { self.description }
21 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | }
24 |
25 | extension UInt64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
26 | 	public var debugDescription: String { self.description }
27 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
29 | }
30 |
31 | extension UInt: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 | 	public var debugDescription: String { self.description }
33 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
35 | }
36 |
37 | extension Int8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
38 | 	public var debugDescription: String { self.description }
39 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
41 | }
42 |
43 | extension Int16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
44 | 	public var debugDescription: String { self.description }
45 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
47 | }
48 |
49 | extension Int32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
50 | 	public var debugDescription: String { self.description }
51 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
53 | }
54 |
55 | extension Int64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
56 | 	public var debugDescription: String { self.description }
57 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
59 | }
60 |
61 | extension Int: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
62 | 	public var debugDescription: String { self.description }
63 | 	public var type: TOMLType { .int }
[9/30] Compiling TOMLKit TOMLValueConvertible+Int.swift
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 5 | //  The full text of the license can be found in the file named LICENSE.
 6 |
 7 | extension UInt8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 | 	public var debugDescription: String { self.description }
 9 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
11 | }
12 |
13 | extension UInt16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
14 | 	public var debugDescription: String { self.description }
15 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
17 | }
18 |
19 | extension UInt32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
20 | 	public var debugDescription: String { self.description }
21 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | }
24 |
25 | extension UInt64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
26 | 	public var debugDescription: String { self.description }
27 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
29 | }
30 |
31 | extension UInt: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 | 	public var debugDescription: String { self.description }
33 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
35 | }
36 |
37 | extension Int8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
38 | 	public var debugDescription: String { self.description }
39 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
41 | }
42 |
43 | extension Int16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
44 | 	public var debugDescription: String { self.description }
45 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
47 | }
48 |
49 | extension Int32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
50 | 	public var debugDescription: String { self.description }
51 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
53 | }
54 |
55 | extension Int64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
56 | 	public var debugDescription: String { self.description }
57 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
59 | }
60 |
61 | extension Int: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
62 | 	public var debugDescription: String { self.description }
63 | 	public var type: TOMLType { .int }
[10/30] Compiling TOMLKit UnkeyedEncodingContainer.swift
[11/30] Compiling TOMLKit FormatOptions.swift
[12/30] Compiling TOMLKit Operators&Extensions.swift
[13/30] Compiling TOMLKit TOMLDate&Time&DateTime.swift
[14/30] Compiling TOMLKit TOMLInt.swift
[15/30] Compiling TOMLKit TOMLTable+CollectionFunctions.swift
[16/30] Compiling TOMLKit KeyedEncodingContainer.swift
[17/30] Compiling TOMLKit SingleValueEncodingContainer.swift
[18/30] Compiling TOMLKit TOMLEncoder.swift
[19/30] Compiling TOMLKit TOMLDecoder.swift
[20/30] Compiling TOMLKit UnkeyedDecodingContainer.swift
[21/30] Compiling TOMLKit InternalTOMLEncoder.swift
[22/30] Compiling TOMLKit TOMLArray+CollectionConformance.swift
[23/30] Compiling TOMLKit TOMLArray.swift
[24/30] Compiling TOMLKit TOMLArrayIterator.swift
[25/30] Emitting module TOMLKit
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:7:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 5 | //  The full text of the license can be found in the file named LICENSE.
 6 |
 7 | extension UInt8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 | 	public var debugDescription: String { self.description }
 9 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:13:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
11 | }
12 |
13 | extension UInt16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
14 | 	public var debugDescription: String { self.description }
15 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:19:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
17 | }
18 |
19 | extension UInt32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
20 | 	public var debugDescription: String { self.description }
21 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:25:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | }
24 |
25 | extension UInt64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
26 | 	public var debugDescription: String { self.description }
27 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:31:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
29 | }
30 |
31 | extension UInt: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 | 	public var debugDescription: String { self.description }
33 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:37:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
35 | }
36 |
37 | extension Int8: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
38 | 	public var debugDescription: String { self.description }
39 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:43:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
41 | }
42 |
43 | extension Int16: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
44 | 	public var debugDescription: String { self.description }
45 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:49:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
47 | }
48 |
49 | extension Int32: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
50 | 	public var debugDescription: String { self.description }
51 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:55:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
53 | }
54 |
55 | extension Int64: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
56 | 	public var debugDescription: String { self.description }
57 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible+Int.swift:61:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
59 | }
60 |
61 | extension Int: TOMLValueConvertible {
   | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
62 | 	public var debugDescription: String { self.description }
63 | 	public var type: TOMLType { .int }
/Users/admin/builder/spi-builder-workspace/Sources/TOMLKit/TOML Data Types/TOMLValueConvertible.swift:173:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
171 | }
172 |
173 | extension Bool: TOMLValueConvertible {
    | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
174 | 	public var debugDescription: String { self.description }
175 | 	public var type: TOMLType { .bool }
[26/30] Compiling TOMLKit InternalTOMLDecoder.swift
[27/30] Compiling TOMLKit KeyedDecodingContainerProtocol.swift
[28/30] Compiling TOMLKit SingleValueDecodingContainer.swift
[29/30] Compiling TOMLKit TOMLValue.swift
[30/30] Compiling TOMLKit ValueOptions.swift
Build of target: 'TOMLKit' complete! (1.56s)
    1556
11	/Users/admin/builder/spi-builder-workspace/.docs/lebje/tomlkit/0.6.0
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/lebje/tomlkit/0.6.0
File count: 1556
Doc size:   11.0MB
Preparing doc bundle ...
Uploading prod-lebje-tomlkit-0.6.0-440f97f2.zip to s3://spi-docs-inbox/prod-lebje-tomlkit-0.6.0-440f97f2.zip
Copying... [12%]
Copying... [21%]
Copying... [33%]
Copying... [42%]
Copying... [51%]
Copying... [62%]
Copying... [71%]
Copying... [80%]
Copying... [92%]
Copying... [100%]
Done.