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 TPPDF, reference main (b05afd), with Swift 6.1 for macOS (SPM) on 29 Apr 2025 21:12:56 UTC.

Swift 6 data race errors: 17

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.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

53 | }
54 |
[52/140] Compiling TPPDF PDFListItem.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:31:23: warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
29 |
30 |     /// Image will be resized to the calculated frame
31 |     public static let resize = PDFImageOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'resize' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:34:23: warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
34 |     public static let compress = PDFImageOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'compress' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Top-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:37:23: warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
35 |
36 |     /// Top-left corner of image will be rounded
37 |     public static let roundedTopLeft = PDFImageOptions(rawValue: 1 << 2)
   |                       |- warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 |     /// Top-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:40:23: warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
38 |
39 |     /// Top-right corner of image will be rounded
40 |     public static let roundedTopRight = PDFImageOptions(rawValue: 1 << 3)
   |                       |- warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |
42 |     /// Bottom-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:43:23: warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
41 |
42 |     /// Bottom-right corner of image will be rounded
43 |     public static let roundedBottomRight = PDFImageOptions(rawValue: 1 << 4)
   |                       |- warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// Bottom-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:46:23: warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
44 |
45 |     /// Bottom-left corner of image will be rounded
46 |     public static let roundedBottomLeft = PDFImageOptions(rawValue: 1 << 5)
   |                       |- warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 |     /// Short-hand option to round all corners
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:49:23: warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
47 |
48 |     /// Short-hand option to round all corners
49 |     public static let rounded = PDFImageOptions(rawValue: 1 << 6)
   |                       |- warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'rounded' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 |
51 |     /// Disables all options
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:52:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
50 |
51 |     /// Disables all options
52 |     public static let none = PDFImageOptions(rawValue: 1 << 7)
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[53/140] Compiling TPPDF PDFListItemSymbol.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:31:23: warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
29 |
30 |     /// Image will be resized to the calculated frame
31 |     public static let resize = PDFImageOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'resize' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:34:23: warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
34 |     public static let compress = PDFImageOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'compress' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Top-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:37:23: warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
35 |
36 |     /// Top-left corner of image will be rounded
37 |     public static let roundedTopLeft = PDFImageOptions(rawValue: 1 << 2)
   |                       |- warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 |     /// Top-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:40:23: warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
38 |
39 |     /// Top-right corner of image will be rounded
40 |     public static let roundedTopRight = PDFImageOptions(rawValue: 1 << 3)
   |                       |- warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |
42 |     /// Bottom-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:43:23: warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
41 |
42 |     /// Bottom-right corner of image will be rounded
43 |     public static let roundedBottomRight = PDFImageOptions(rawValue: 1 << 4)
   |                       |- warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// Bottom-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:46:23: warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
44 |
45 |     /// Bottom-left corner of image will be rounded
46 |     public static let roundedBottomLeft = PDFImageOptions(rawValue: 1 << 5)
   |                       |- warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 |     /// Short-hand option to round all corners
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:49:23: warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
47 |
48 |     /// Short-hand option to round all corners
49 |     public static let rounded = PDFImageOptions(rawValue: 1 << 6)
   |                       |- warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'rounded' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 |
51 |     /// Disables all options
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:52:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
50 |
51 |     /// Disables all options
52 |     public static let none = PDFImageOptions(rawValue: 1 << 7)
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[54/140] Compiling TPPDF PDFInfo+Equatable.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:31:23: warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
29 |
30 |     /// Image will be resized to the calculated frame
31 |     public static let resize = PDFImageOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'resize' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:34:23: warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
34 |     public static let compress = PDFImageOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'compress' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Top-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:37:23: warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
35 |
36 |     /// Top-left corner of image will be rounded
37 |     public static let roundedTopLeft = PDFImageOptions(rawValue: 1 << 2)
   |                       |- warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 |     /// Top-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:40:23: warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
38 |
39 |     /// Top-right corner of image will be rounded
40 |     public static let roundedTopRight = PDFImageOptions(rawValue: 1 << 3)
   |                       |- warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |
42 |     /// Bottom-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:43:23: warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
41 |
42 |     /// Bottom-right corner of image will be rounded
43 |     public static let roundedBottomRight = PDFImageOptions(rawValue: 1 << 4)
   |                       |- warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// Bottom-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:46:23: warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
44 |
45 |     /// Bottom-left corner of image will be rounded
46 |     public static let roundedBottomLeft = PDFImageOptions(rawValue: 1 << 5)
   |                       |- warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 |     /// Short-hand option to round all corners
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:49:23: warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
47 |
48 |     /// Short-hand option to round all corners
49 |     public static let rounded = PDFImageOptions(rawValue: 1 << 6)
   |                       |- warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'rounded' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 |
51 |     /// Disables all options
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:52:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
50 |
51 |     /// Disables all options
52 |     public static let none = PDFImageOptions(rawValue: 1 << 7)
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[55/140] Compiling TPPDF PDFInfo.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:31:23: warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
29 |
30 |     /// Image will be resized to the calculated frame
31 |     public static let resize = PDFImageOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'resize' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:34:23: warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
34 |     public static let compress = PDFImageOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'compress' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Top-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:37:23: warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
35 |
36 |     /// Top-left corner of image will be rounded
37 |     public static let roundedTopLeft = PDFImageOptions(rawValue: 1 << 2)
   |                       |- warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 |     /// Top-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:40:23: warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
38 |
39 |     /// Top-right corner of image will be rounded
40 |     public static let roundedTopRight = PDFImageOptions(rawValue: 1 << 3)
   |                       |- warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |
42 |     /// Bottom-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:43:23: warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
41 |
42 |     /// Bottom-right corner of image will be rounded
43 |     public static let roundedBottomRight = PDFImageOptions(rawValue: 1 << 4)
   |                       |- warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// Bottom-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:46:23: warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
44 |
45 |     /// Bottom-left corner of image will be rounded
46 |     public static let roundedBottomLeft = PDFImageOptions(rawValue: 1 << 5)
   |                       |- warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 |     /// Short-hand option to round all corners
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:49:23: warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
47 |
48 |     /// Short-hand option to round all corners
49 |     public static let rounded = PDFImageOptions(rawValue: 1 << 6)
   |                       |- warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'rounded' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 |
51 |     /// Disables all options
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:52:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
50 |
51 |     /// Disables all options
52 |     public static let none = PDFImageOptions(rawValue: 1 << 7)
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[56/140] Compiling TPPDF PDFGenerator+Generation.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:31:23: warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
29 |
30 |     /// Image will be resized to the calculated frame
31 |     public static let resize = PDFImageOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'resize' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:34:23: warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
34 |     public static let compress = PDFImageOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'compress' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Top-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:37:23: warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
35 |
36 |     /// Top-left corner of image will be rounded
37 |     public static let roundedTopLeft = PDFImageOptions(rawValue: 1 << 2)
   |                       |- warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 |     /// Top-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:40:23: warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
38 |
39 |     /// Top-right corner of image will be rounded
40 |     public static let roundedTopRight = PDFImageOptions(rawValue: 1 << 3)
   |                       |- warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |
42 |     /// Bottom-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:43:23: warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
41 |
42 |     /// Bottom-right corner of image will be rounded
43 |     public static let roundedBottomRight = PDFImageOptions(rawValue: 1 << 4)
   |                       |- warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// Bottom-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:46:23: warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
44 |
45 |     /// Bottom-left corner of image will be rounded
46 |     public static let roundedBottomLeft = PDFImageOptions(rawValue: 1 << 5)
   |                       |- warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 |     /// Short-hand option to round all corners
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:49:23: warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
47 |
48 |     /// Short-hand option to round all corners
49 |     public static let rounded = PDFImageOptions(rawValue: 1 << 6)
   |                       |- warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'rounded' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 |
51 |     /// Disables all options
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:52:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
50 |
51 |     /// Disables all options
52 |     public static let none = PDFImageOptions(rawValue: 1 << 7)
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[57/140] Compiling TPPDF PDFGenerator.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:31:23: warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
29 |
30 |     /// Image will be resized to the calculated frame
31 |     public static let resize = PDFImageOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'resize' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:34:23: warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
34 |     public static let compress = PDFImageOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'compress' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Top-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:37:23: warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
35 |
36 |     /// Top-left corner of image will be rounded
37 |     public static let roundedTopLeft = PDFImageOptions(rawValue: 1 << 2)
   |                       |- warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 |     /// Top-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:40:23: warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
38 |
39 |     /// Top-right corner of image will be rounded
40 |     public static let roundedTopRight = PDFImageOptions(rawValue: 1 << 3)
   |                       |- warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |
42 |     /// Bottom-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:43:23: warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
41 |
42 |     /// Bottom-right corner of image will be rounded
43 |     public static let roundedBottomRight = PDFImageOptions(rawValue: 1 << 4)
   |                       |- warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// Bottom-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:46:23: warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
44 |
45 |     /// Bottom-left corner of image will be rounded
46 |     public static let roundedBottomLeft = PDFImageOptions(rawValue: 1 << 5)
   |                       |- warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 |     /// Short-hand option to round all corners
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:49:23: warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
47 |
48 |     /// Short-hand option to round all corners
49 |     public static let rounded = PDFImageOptions(rawValue: 1 << 6)
   |                       |- warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'rounded' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 |
51 |     /// Disables all options
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:52:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
50 |
51 |     /// Disables all options
52 |     public static let none = PDFImageOptions(rawValue: 1 << 7)
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[58/140] Compiling TPPDF PDFGeneratorProtocol.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:31:23: warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
29 |
30 |     /// Image will be resized to the calculated frame
31 |     public static let resize = PDFImageOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'resize' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'resize' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:34:23: warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
32 |
33 |     /// Image will be compressed using the value set in the property `quality`
34 |     public static let compress = PDFImageOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'compress' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'compress' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     /// Top-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:37:23: warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
35 |
36 |     /// Top-left corner of image will be rounded
37 |     public static let roundedTopLeft = PDFImageOptions(rawValue: 1 << 2)
   |                       |- warning: static property 'roundedTopLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 |     /// Top-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:40:23: warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
38 |
39 |     /// Top-right corner of image will be rounded
40 |     public static let roundedTopRight = PDFImageOptions(rawValue: 1 << 3)
   |                       |- warning: static property 'roundedTopRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedTopRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |
42 |     /// Bottom-right corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:43:23: warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
41 |
42 |     /// Bottom-right corner of image will be rounded
43 |     public static let roundedBottomRight = PDFImageOptions(rawValue: 1 << 4)
   |                       |- warning: static property 'roundedBottomRight' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomRight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// Bottom-left corner of image will be rounded
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:46:23: warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
44 |
45 |     /// Bottom-left corner of image will be rounded
46 |     public static let roundedBottomLeft = PDFImageOptions(rawValue: 1 << 5)
   |                       |- warning: static property 'roundedBottomLeft' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'roundedBottomLeft' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 |     /// Short-hand option to round all corners
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:49:23: warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
47 |
48 |     /// Short-hand option to round all corners
49 |     public static let rounded = PDFImageOptions(rawValue: 1 << 6)
   |                       |- warning: static property 'rounded' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'rounded' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 |
51 |     /// Disables all options
/Users/admin/builder/spi-builder-workspace/Source/API/Image/PDFImageOptions.swift:52:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 |  * ```
20 |  */
21 | public struct PDFImageOptions: OptionSet, Hashable {
   |               `- note: consider making struct 'PDFImageOptions' conform to the 'Sendable' protocol
22 |     /// nodoc
23 |     public let rawValue: Int
   :
50 |
51 |     /// Disables all options
52 |     public static let none = PDFImageOptions(rawValue: 1 << 7)
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PDFImageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[59/140] Compiling TPPDF PDFGeneratorDelegate.swift
[60/140] Compiling TPPDF PDFGeneratorImageDelegate.swift
[61/140] Compiling TPPDF PDFDocument.swift
[62/140] Compiling TPPDF PDFDocumentBackground.swift
[63/140] Compiling TPPDF PDFExternalDocument.swift
[64/140] Compiling TPPDF PDFBezierPath+Copying.swift
[65/140] Compiling TPPDF PDFBezierPath.swift
[66/140] Compiling TPPDF PDFBezierPathVertex.swift
[67/140] Compiling TPPDF PDFDynamicGeometryShape.swift
[68/140] Compiling TPPDF PDFLineStyle.swift
[69/140] Compiling TPPDF PDFLineType.swift
[70/140] Compiling TPPDF PDFGroup+Objects.swift
[71/140] Compiling TPPDF PDFGroup.swift
[72/140] Compiling TPPDF PDFGroupContainer.swift
[73/140] Compiling TPPDF PDFMultiDocumentGenerator.swift
[74/140] Compiling TPPDF PDFPageFormat+Layout.swift
[75/140] Compiling TPPDF PDFPageFormat+NameConstants.swift
[76/140] Compiling TPPDF PDFPageFormat+SizeConstants.swift
[77/140] Compiling TPPDF PDFPageFormat.swift
[78/140] Compiling TPPDF PDFPagination+Equatable.swift
[79/140] Compiling TPPDF PDFPagination.swift
[80/140] Compiling TPPDF PDFPaginationClosure.swift
[81/140] Compiling TPPDF PDFPaginationStyle+Equatable.swift
[82/140] Compiling TPPDF PDFPaginationStyle.swift
[83/140] Compiling TPPDF PDFSection.swift
[84/140] Compiling TPPDF PDFSectionColumn.swift
[85/140] Compiling TPPDF PDFTableOfContent.swift
[86/140] Compiling TPPDF NSAttributedString+PDFTableContent.swift
[87/140] Compiling TPPDF CGPoint+Math.swift
[88/140] Compiling TPPDF CGPoint+Null.swift
[89/140] Compiling TPPDF PDFGenerator+Debug.swift
[90/140] Compiling TPPDF PDFGenerator+Layout.swift
[91/140] Compiling TPPDF PDFColumnWrapSectionObject.swift
[92/140] Compiling TPPDF PDFSectionColumnObject.swift
[93/140] Compiling TPPDF PDFSectionObject.swift
[94/140] Compiling TPPDF PDFTableOfContentObject.swift
[95/140] Compiling TPPDF PDFTableCalculatedCell.swift
[96/140] Compiling TPPDF PDFTableMergeUtil.swift
[97/140] Compiling TPPDF PDFTableNode.swift
[98/140] Compiling TPPDF PDFTableObject.swift
[99/140] Compiling TPPDF PDFTableValidator.swift
[100/140] Compiling TPPDF Number+PDFTableContentable.swift
[101/140] Compiling TPPDF PDFTableContent+ContentType.swift
[102/140] Compiling TPPDF PDFTableContent.swift
[103/140] Compiling TPPDF PDFTableContentable.swift
[104/140] Compiling TPPDF String+PDFTableContent.swift
[105/140] Compiling TPPDF UIImage+PDFTableContent.swift
[106/140] Compiling TPPDF PDFTable.swift
[107/140] Compiling TPPDF PDFTableCell.swift
[108/140] Compiling TPPDF PDFTableCellAlignment.swift
[109/140] Compiling TPPDF PDFTableCellPosition.swift
[110/140] Compiling TPPDF PDFTable+CellSubscripts.swift
[111/140] Compiling TPPDF PDFTable+ColumnSubscripts.swift
[112/140] Compiling TPPDF PDFTable+RowSubscripts.swift
[113/140] Compiling TPPDF PDFTable+SectionSubscripts.swift
[114/140] Compiling TPPDF PDFSimpleText.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[115/140] Compiling TPPDF PDFText.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[116/140] Compiling TPPDF PDFTextStyle.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[117/140] Compiling TPPDF CrossPlattformGraphics.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[118/140] Compiling TPPDF PDFConstants.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[119/140] Compiling TPPDF PDFCopy.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[120/140] Compiling TPPDF PDFDocumentObject.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[121/140] Compiling TPPDF PDFError.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[122/140] Compiling TPPDF PDFRenderObject.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[123/140] Compiling TPPDF PDFTaggableObject.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[124/140] Compiling TPPDF PDFExternalDocumentObject.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[125/140] Compiling TPPDF PDFExternalPageObject.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[126/140] Compiling TPPDF PDFContext.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[127/140] Compiling TPPDF PDFContextGraphics.swift
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:76:27: warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'topLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:77:27: warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     public struct RectCorner: OptionSet {
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'topRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'topRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:78:27: warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |         public static var topLeft: RectCorner = .init(rawValue: 1 << 0)
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'bottomLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomLeft' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:79:27: warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |         public static var topRight: RectCorner = .init(rawValue: 1 << 1)
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'bottomRight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'bottomRight' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
 81 |
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/CrossPlattformGraphics.swift:80:27: warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |         public static var bottomLeft: RectCorner = .init(rawValue: 1 << 2)
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
    |                           |- warning: static property 'allCorners' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'allCorners' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: add '@MainActor' to make static property 'allCorners' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |         let value: Int
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:13:10: warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 | public enum PDFError: LocalizedError {
12 |     /// The associated `value` is an instance of an unsupported type.
13 |     case tableContentInvalid(value: Any?)
   |          `- warning: associated value 'tableContentInvalid(value:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
14 |
15 |     /// Indicates that a table without any data was added to the document, which is unsupported
/Users/admin/builder/spi-builder-workspace/Source/API/Utils/PDFError.swift:25:10: warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
23 |
24 |     /// Indicates that the cell is too big to be rendered onto a single page
25 |     case tableCellTooBig(cell: PDFTableCell)
   |          `- warning: associated value 'tableCellTooBig(cell:)' of 'Sendable'-conforming enum 'PDFError' has non-sendable type 'PDFTableCell'; this is an error in the Swift 6 language mode
26 |
27 |     /// Thrown when neither a ``PDFSimpleText`` nor a ``UIKit/NSAttributedString`` is set in an ``PDFAttributedText``
/Users/admin/builder/spi-builder-workspace/Source/API/Table/PDFTableCell.swift:9:14: note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
 7 |
 8 | /// An instance of a table cell
 9 | public class PDFTableCell: PDFDocumentObject {
   |              `- note: class 'PDFTableCell' does not conform to the 'Sendable' protocol
10 |     /**
11 |      * Content of this cell, can be different kinds of data inside a `PDFTableContent` object.
[128/140] Compiling TPPDF PDFAttributedTextObject.swift
[129/140] Compiling TPPDF PDFFontObject.swift
[130/140] Compiling TPPDF PDFTextColorObject.swift
[131/140] Compiling TPPDF PDFAttributableObject.swift
[132/140] Compiling TPPDF PDFObjectAttribute.swift
[133/140] Compiling TPPDF CustomStringConvertible+AutoDescribing.swift
[134/140] Compiling TPPDF FileManager+TemporaryFiles.swift
[135/140] Compiling TPPDF Int+RomanNumerals.swift
[136/140] Compiling TPPDF PDFCalculations.swift
[137/140] Compiling TPPDF PDFLocatedRenderObject.swift
[138/140] Compiling TPPDF PDFSlicedObject.swift
[139/140] Compiling TPPDF Stack.swift
[140/140] Compiling TPPDF WeakRef.swift
Build complete! (19.49s)
warning: 'spi-builder-workspace': /Users/admin/builder/spi-builder-workspace/Package.swift:8:15: warning: 'v9' is deprecated: iOS 12.0 is the oldest supported version
 6 |     name: "TPPDF",
 7 |     platforms: [
 8 |         .iOS(.v9),
   |               `- warning: 'v9' is deprecated: iOS 12.0 is the oldest supported version
 9 |         .macOS(.v10_14),
10 |         .visionOS(.v1),
/Users/admin/builder/spi-builder-workspace/Package.swift:16:10: warning: 'package(url:_:)' is deprecated: use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')
14 |     ],
15 |     dependencies: [
16 |         .package(url: "https://github.com/Quick/Quick", .exact("3.1.2")),
   |          `- warning: 'package(url:_:)' is deprecated: use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')
17 |         .package(url: "https://github.com/Quick/Nimble", .exact("9.2.1")),
18 |     ],
/Users/admin/builder/spi-builder-workspace/Package.swift:16:58: warning: 'exact' is deprecated
14 |     ],
15 |     dependencies: [
16 |         .package(url: "https://github.com/Quick/Quick", .exact("3.1.2")),
   |                                                          `- warning: 'exact' is deprecated
17 |         .package(url: "https://github.com/Quick/Nimble", .exact("9.2.1")),
18 |     ],
/Users/admin/builder/spi-builder-workspace/Package.swift:17:10: warning: 'package(url:_:)' is deprecated: use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')
15 |     dependencies: [
16 |         .package(url: "https://github.com/Quick/Quick", .exact("3.1.2")),
17 |         .package(url: "https://github.com/Quick/Nimble", .exact("9.2.1")),
   |          `- warning: 'package(url:_:)' is deprecated: use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')
18 |     ],
19 |     targets: [
/Users/admin/builder/spi-builder-workspace/Package.swift:17:59: warning: 'exact' is deprecated
15 |     dependencies: [
16 |         .package(url: "https://github.com/Quick/Quick", .exact("3.1.2")),
17 |         .package(url: "https://github.com/Quick/Nimble", .exact("9.2.1")),
   |                                                           `- warning: 'exact' is deprecated
18 |     ],
19 |     targets: [
Fetching https://github.com/Quick/Quick
Fetching https://github.com/Quick/Nimble
[1/14755] Fetching quick
[1329/34322] Fetching quick, nimble
Fetched https://github.com/Quick/Nimble from cache (1.82s)
Fetched https://github.com/Quick/Quick from cache (1.82s)
Computing version for https://github.com/Quick/Nimble
Computed https://github.com/Quick/Nimble at 9.2.1 (2.84s)
Fetching https://github.com/mattgallagher/CwlPreconditionTesting.git
[1/1257] Fetching cwlpreconditiontesting
Fetched https://github.com/mattgallagher/CwlPreconditionTesting.git from cache (0.82s)
Computing version for https://github.com/Quick/Quick
Computed https://github.com/Quick/Quick at 3.1.2 (1.46s)
Computing version for https://github.com/mattgallagher/CwlPreconditionTesting.git
Computed https://github.com/mattgallagher/CwlPreconditionTesting.git at 2.2.2 (0.61s)
Fetching https://github.com/mattgallagher/CwlCatchException.git
[1/455] Fetching cwlcatchexception
Fetched https://github.com/mattgallagher/CwlCatchException.git from cache (0.65s)
Computing version for https://github.com/mattgallagher/CwlCatchException.git
Computed https://github.com/mattgallagher/CwlCatchException.git at 2.2.1 (1.25s)
Creating working copy for https://github.com/Quick/Nimble
Working copy of https://github.com/Quick/Nimble resolved at 9.2.1
Creating working copy for https://github.com/mattgallagher/CwlCatchException.git
Working copy of https://github.com/mattgallagher/CwlCatchException.git resolved at 2.2.1
Creating working copy for https://github.com/mattgallagher/CwlPreconditionTesting.git
Working copy of https://github.com/mattgallagher/CwlPreconditionTesting.git resolved at 2.2.2
Creating working copy for https://github.com/Quick/Quick
Working copy of https://github.com/Quick/Quick resolved at 3.1.2
Build complete.
{
  "dependencies" : [
    {
      "identity" : "quick",
      "requirement" : {
        "exact" : [
          "3.1.2"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Quick"
    },
    {
      "identity" : "nimble",
      "requirement" : {
        "exact" : [
          "9.2.1"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Nimble"
    }
  ],
  "manifest_display_name" : "TPPDF",
  "name" : "TPPDF",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "macos",
      "version" : "10.14"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "TPPDF",
      "targets" : [
        "TPPDF"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TPPDFTests",
      "module_type" : "SwiftTarget",
      "name" : "TPPDFTests",
      "path" : "Tests/TPPDFTests",
      "product_dependencies" : [
        "Quick",
        "Nimble"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/TPPDFTests/resources/sample.pdf",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "API/Table/Sections/PDFTableRowSpec.swift",
        "API/Table/Sections/PDFTable_RowSubscriptsSpec.swift",
        "Graphics/PDFGraphics_Spec.swift",
        "Graphics/PDFLineSeparatorObject+Equatable_Spec.swift",
        "Graphics/PDFLineSeparatorObject_Spec.swift",
        "Graphics/PDFLineStyle_Equatable_Spec.swift",
        "Graphics/PDFLineStyle_Spec.swift",
        "Graphics/PDFLineType_Spec.swift",
        "Graphics/UIImage+CloseToEqual_Spec.swift",
        "Image/PDFImageSizeFit_Spec.swift",
        "Image/PDFImage_Equatable_Spec.swift",
        "Image/PDFImage_Spec.swift",
        "Internal/Table/PDFTableMergeUtil_Spec.swift",
        "Internal/Table/PDFTableObjectSpec.swift",
        "Layout/PDFContainer_Spec.swift",
        "Layout/PDFIndentationObject_Equatable_Spec.swift",
        "Layout/PDFIndentationObject_Spec.swift",
        "Layout/PDFLayout+Equatable_Spec.swift",
        "Layout/PDFLayoutHeights+Equatable_Spec.swift",
        "Layout/PDFLayoutHeights_Spec.swift",
        "Layout/PDFLayoutIndentations+Equatable_Spec.swift",
        "Layout/PDFLayoutIndentations_Spec.swift",
        "Layout/PDFLayout_Spec.swift",
        "Layout/PDFOffsetObject+Equatable_Spec.swift",
        "Layout/PDFOffsetObject_Spec.swift",
        "Layout/PDFPageBreakObject+Equatable_Spec.swift",
        "Layout/PDFPageBreakObject_Spec.swift",
        "Layout/PDFPageLayout+Equatable_Spec.swift",
        "Layout/PDFPageLayout_Spec.swift",
        "Layout/PDFSpaceObject_Spec.swift",
        "List/PDFList+Equatable_Spec.swift",
        "List/PDFListItemObject_Spec.swift",
        "List/PDFListItemSymbol_Spec.swift",
        "List/PDFListItem_Equatable_Spec.swift",
        "List/PDFListItem_Spec.swift",
        "List/PDFList_Spec.swift",
        "Math/CGPoint+Math_Spec.swift",
        "Metadata/PDFInfo+Equatable_Spec.swift",
        "Metadata/PDFInfo_Spec.swift",
        "PDFDocument+Objects_Spec.swift",
        "PDFDocument_Spec.swift",
        "PDFGenerator+Debug_Spec.swift",
        "PDFGenerator+Generation_Spec.swift",
        "PDFGenerator+Layout_Spec.swift",
        "PDFGenerator_Spec.swift",
        "Page Format/PDFPageFormat+Layout_Spec.swift",
        "Page Format/PDFPageFormat+NameConstants_Spec.swift",
        "Page Format/PDFPageFormat+SizeConstants_Spec.swift",
        "Page Format/PDFPageFormat_Spec.swift",
        "Pagination/Int+RomanNumerals_Spec.swift",
        "Pagination/PDFPaginationStyle+Equatable_Spec.swift",
        "Pagination/PDFPaginationStyle_Spec.swift",
        "Pagination/PDFPagination_Closure_Spec.swift",
        "Pagination/PDFPagination_Equatable_Spec.swift",
        "Pagination/PDFPagination_Spec.swift",
        "Table/PDFTable+Equatable_Spec.swift",
        "Table/PDFTableCell+Equatable_Spec.swift",
        "Table/PDFTableCellAlignment_Spec.swift",
        "Table/PDFTableCellBorders+Equatable_Spec.swift",
        "Table/PDFTableCellBorders_Spec.swift",
        "Table/PDFTableCellPosition+Equatable_Spec.swift",
        "Table/PDFTableCellPosition_Hashable_Spec.swift",
        "Table/PDFTableCellPosition_Spec.swift",
        "Table/PDFTableCellStyle+Equatable_Spec.swift",
        "Table/PDFTableCellStyle_Spec.swift",
        "Table/PDFTableCell_Spec.swift",
        "Table/PDFTableContent+Equatable_Spec.swift",
        "Table/PDFTableContent_Spec.swift",
        "Table/PDFTableStyle+Defaults_Spec.swift",
        "Table/PDFTableStyle+Equatable_Spec.swift",
        "Table/PDFTableStyle_Spec.swift",
        "Table/PDFTableValidator_Spec.swift",
        "Table/PDFTable_Spec.swift",
        "Text/PDFAttributedText+Equatable_Spec.swift",
        "Text/PDFAttributedTextObject_Spec.swift",
        "Text/PDFAttributedText_Spec.swift",
        "Text/PDFFontObject_Spec.swift",
        "Text/PDFSimpleText+Equatable_Spec.swift",
        "Text/PDFSimpleText_Spec.swift",
        "Text/PDFTextColorObject_Spec.swift",
        "Text/PDFText_Spec.swift",
        "Utils/PDFCalculations_Spec.swift",
        "Utils/PDFError_Spec.swift",
        "Utils/PDFObject_Spec.swift"
      ],
      "target_dependencies" : [
        "TPPDF"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TPPDFIntegrationTests",
      "module_type" : "SwiftTarget",
      "name" : "TPPDFIntegrationTests",
      "path" : "Tests/TPPDFIntegrationTests",
      "product_dependencies" : [
        "Quick",
        "Nimble"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/TPPDFIntegrationTests/resources/50-pages.pdf",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "EmptyDocumentTests.swift",
        "ExternalDocumentTests.swift"
      ],
      "target_dependencies" : [
        "TPPDF"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TPPDF",
      "module_type" : "SwiftTarget",
      "name" : "TPPDF",
      "path" : "Source",
      "product_memberships" : [
        "TPPDF"
      ],
      "sources" : [
        "API/Delegation/PDFGeneratorDelegate.swift",
        "API/Delegation/PDFGeneratorImageDelegate.swift",
        "API/Document/PDFDocument.swift",
        "API/Document/PDFDocumentBackground.swift",
        "API/External/PDFExternalDocument.swift",
        "API/Graphics/PDFBezierPath+Copying.swift",
        "API/Graphics/PDFBezierPath.swift",
        "API/Graphics/PDFBezierPathVertex.swift",
        "API/Graphics/PDFDynamicGeometryShape.swift",
        "API/Graphics/PDFLineStyle.swift",
        "API/Graphics/PDFLineType.swift",
        "API/Groups/PDFGroup+Objects.swift",
        "API/Groups/PDFGroup.swift",
        "API/Groups/PDFGroupContainer.swift",
        "API/Groups/PDFMasterGroup.swift",
        "API/Image/PDFImage.swift",
        "API/Image/PDFImageOptions.swift",
        "API/Image/PDFImageSizeFit.swift",
        "API/Layout/PDFContainer.swift",
        "API/Layout/PDFPageLayout.swift",
        "API/List/PDFList.swift",
        "API/List/PDFListItem.swift",
        "API/List/PDFListItemSymbol.swift",
        "API/Metadata/PDFInfo+Equatable.swift",
        "API/Metadata/PDFInfo.swift",
        "API/PDFGenerator+Generation.swift",
        "API/PDFGenerator.swift",
        "API/PDFGeneratorProtocol.swift",
        "API/PDFMultiDocumentGenerator.swift",
        "API/Page Format/PDFPageFormat+Layout.swift",
        "API/Page Format/PDFPageFormat+NameConstants.swift",
        "API/Page Format/PDFPageFormat+SizeConstants.swift",
        "API/Page Format/PDFPageFormat.swift",
        "API/Pagination/PDFPagination+Equatable.swift",
        "API/Pagination/PDFPagination.swift",
        "API/Pagination/PDFPaginationClosure.swift",
        "API/Pagination/PDFPaginationStyle+Equatable.swift",
        "API/Pagination/PDFPaginationStyle.swift",
        "API/Section/PDFSection.swift",
        "API/Section/PDFSectionColumn.swift",
        "API/Table Of Content/PDFTableOfContent.swift",
        "API/Table/Content/NSAttributedString+PDFTableContent.swift",
        "API/Table/Content/Number+PDFTableContentable.swift",
        "API/Table/Content/PDFTableContent+ContentType.swift",
        "API/Table/Content/PDFTableContent.swift",
        "API/Table/Content/PDFTableContentable.swift",
        "API/Table/Content/String+PDFTableContent.swift",
        "API/Table/Content/UIImage+PDFTableContent.swift",
        "API/Table/PDFTable.swift",
        "API/Table/PDFTableCell.swift",
        "API/Table/PDFTableCellAlignment.swift",
        "API/Table/PDFTableCellPosition.swift",
        "API/Table/Sections/PDFTable+CellSubscripts.swift",
        "API/Table/Sections/PDFTable+ColumnSubscripts.swift",
        "API/Table/Sections/PDFTable+RowSubscripts.swift",
        "API/Table/Sections/PDFTable+SectionSubscripts.swift",
        "API/Table/Sections/PDFTableColumn.swift",
        "API/Table/Sections/PDFTableColumns.swift",
        "API/Table/Sections/PDFTableMergeable.swift",
        "API/Table/Sections/PDFTableRow.swift",
        "API/Table/Sections/PDFTableRows.swift",
        "API/Table/Sections/PDFTableSection.swift",
        "API/Table/Style/PDFTableCellBorders.swift",
        "API/Table/Style/PDFTableCellPosition+Equatable-Hashable.swift",
        "API/Table/Style/PDFTableCellStyle.swift",
        "API/Table/Style/PDFTableStyle+Defaults.swift",
        "API/Table/Style/PDFTableStyle+Equatable.swift",
        "API/Table/Style/PDFTableStyle.swift",
        "API/Text/PDFAttributedText.swift",
        "API/Text/PDFSimpleText+Equatable.swift",
        "API/Text/PDFSimpleText.swift",
        "API/Text/PDFText.swift",
        "API/Text/PDFTextStyle.swift",
        "API/Utils/CrossPlattformGraphics.swift",
        "API/Utils/PDFConstants.swift",
        "API/Utils/PDFCopy.swift",
        "API/Utils/PDFDocumentObject.swift",
        "API/Utils/PDFError.swift",
        "API/Utils/PDFRenderObject.swift",
        "API/Utils/PDFTaggableObject.swift",
        "Internal/External/PDFExternalDocumentObject.swift",
        "Internal/External/PDFExternalPageObject.swift",
        "Internal/Graphics/PDFContext.swift",
        "Internal/Graphics/PDFContextGraphics.swift",
        "Internal/Graphics/PDFGraphics.swift",
        "Internal/Graphics/PDFLineObject.swift",
        "Internal/Graphics/PDFLineSeparatorObject+Equatable.swift",
        "Internal/Graphics/PDFLineSeparatorObject.swift",
        "Internal/Graphics/PDFRectangleObject.swift",
        "Internal/Graphics/UIColor+CloseToEqual.swift",
        "Internal/Group/PDFGroupObject.swift",
        "Internal/Image/PDFImageObject.swift",
        "Internal/Image/PDFImageRowObject.swift",
        "Internal/Layout/PDFColumnLayoutState.swift",
        "Internal/Layout/PDFIndentationObject+Equatable.swift",
        "Internal/Layout/PDFIndentationObject.swift",
        "Internal/Layout/PDFLayout+Equatable.swift",
        "Internal/Layout/PDFLayout.swift",
        "Internal/Layout/PDFLayoutHeights+Equatable.swift",
        "Internal/Layout/PDFLayoutHeights.swift",
        "Internal/Layout/PDFLayoutIndentations+Equatable.swift",
        "Internal/Layout/PDFLayoutIndentations.swift",
        "Internal/Layout/PDFMarginObject.swift",
        "Internal/Layout/PDFOffsetObject+Equatable.swift",
        "Internal/Layout/PDFOffsetObject.swift",
        "Internal/Layout/PDFPageBreakObject+Equatable.swift",
        "Internal/Layout/PDFPageBreakObject.swift",
        "Internal/Layout/PDFPageLayout+Equatable.swift",
        "Internal/Layout/PDFSectionColumnContainer.swift",
        "Internal/Layout/PDFSpaceObject.swift",
        "Internal/List/PDFListObject.swift",
        "Internal/Math/CGPoint+Math.swift",
        "Internal/Math/CGPoint+Null.swift",
        "Internal/PDFGenerator+Debug.swift",
        "Internal/PDFGenerator+Layout.swift",
        "Internal/Section/PDFColumnWrapSectionObject.swift",
        "Internal/Section/PDFSectionColumnObject.swift",
        "Internal/Section/PDFSectionObject.swift",
        "Internal/Table Of Content/PDFTableOfContentObject.swift",
        "Internal/Table/PDFTableCalculatedCell.swift",
        "Internal/Table/PDFTableMergeUtil.swift",
        "Internal/Table/PDFTableNode.swift",
        "Internal/Table/PDFTableObject.swift",
        "Internal/Table/PDFTableValidator.swift",
        "Internal/Text/PDFAttributedTextObject.swift",
        "Internal/Text/PDFFontObject.swift",
        "Internal/Text/PDFTextColorObject.swift",
        "Internal/Utils/Attributes/PDFAttributableObject.swift",
        "Internal/Utils/Attributes/PDFObjectAttribute.swift",
        "Internal/Utils/CustomStringConvertible+AutoDescribing.swift",
        "Internal/Utils/FileManager+TemporaryFiles.swift",
        "Internal/Utils/Int+RomanNumerals.swift",
        "Internal/Utils/PDFCalculations.swift",
        "Internal/Utils/PDFLocatedRenderObject.swift",
        "Internal/Utils/PDFSlicedObject.swift",
        "Internal/Utils/Stack.swift",
        "Internal/Utils/WeakRef.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
warning: 'spi-builder-workspace': /Users/admin/builder/spi-builder-workspace/Package.swift:8:15: warning: 'v9' is deprecated: iOS 12.0 is the oldest supported version
 6 |     name: "TPPDF",
 7 |     platforms: [
 8 |         .iOS(.v9),
   |               `- warning: 'v9' is deprecated: iOS 12.0 is the oldest supported version
 9 |         .macOS(.v10_14),
10 |         .visionOS(.v1),
/Users/admin/builder/spi-builder-workspace/Package.swift:16:10: warning: 'package(url:_:)' is deprecated: use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')
14 |     ],
15 |     dependencies: [
16 |         .package(url: "https://github.com/Quick/Quick", .exact("3.1.2")),
   |          `- warning: 'package(url:_:)' is deprecated: use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')
17 |         .package(url: "https://github.com/Quick/Nimble", .exact("9.2.1")),
18 |     ],
/Users/admin/builder/spi-builder-workspace/Package.swift:16:58: warning: 'exact' is deprecated
14 |     ],
15 |     dependencies: [
16 |         .package(url: "https://github.com/Quick/Quick", .exact("3.1.2")),
   |                                                          `- warning: 'exact' is deprecated
17 |         .package(url: "https://github.com/Quick/Nimble", .exact("9.2.1")),
18 |     ],
/Users/admin/builder/spi-builder-workspace/Package.swift:17:10: warning: 'package(url:_:)' is deprecated: use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')
15 |     dependencies: [
16 |         .package(url: "https://github.com/Quick/Quick", .exact("3.1.2")),
17 |         .package(url: "https://github.com/Quick/Nimble", .exact("9.2.1")),
   |          `- warning: 'package(url:_:)' is deprecated: use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')
18 |     ],
19 |     targets: [
/Users/admin/builder/spi-builder-workspace/Package.swift:17:59: warning: 'exact' is deprecated
15 |     dependencies: [
16 |         .package(url: "https://github.com/Quick/Quick", .exact("3.1.2")),
17 |         .package(url: "https://github.com/Quick/Nimble", .exact("9.2.1")),
   |                                                           `- warning: 'exact' is deprecated
18 |     ],
19 |     targets: [
Done.