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 2.6.1 (975049), with Swift 6.0 for macOS (SPM) on 11 Nov 2024 13:34:54 UTC.

Swift 6 data race errors: 17

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

   |                       |- note: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'bottomLeft' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
[71/140] Compiling TPPDF PDFLayout+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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'allCorners' with '@MainActor' if property should only be accessed from the main actor
    |                           `- 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/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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'topLeft' with '@MainActor' if property should only be accessed from the main actor
    |                           `- 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/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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'topRight' with '@MainActor' if property should only be accessed from the main actor
    |                           `- 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/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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// Bottom-left corner of image will be rounded
/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: annotate 'bottomRight' with '@MainActor' if property should only be accessed from the main actor
    |                           `- 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/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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'bottomLeft' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
[72/140] Compiling TPPDF PDFLayout.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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'allCorners' with '@MainActor' if property should only be accessed from the main actor
    |                           `- 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/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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'topLeft' with '@MainActor' if property should only be accessed from the main actor
    |                           `- 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/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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'topRight' with '@MainActor' if property should only be accessed from the main actor
    |                           `- 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/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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// Bottom-left corner of image will be rounded
/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: annotate 'bottomRight' with '@MainActor' if property should only be accessed from the main actor
    |                           `- 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/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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'bottomLeft' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         public static var bottomRight: RectCorner = .init(rawValue: 1 << 3)
 80 |         public static var allCorners: RectCorner = .init(rawValue: 1 << 4 - 1)
[73/140] Compiling TPPDF Number+PDFTableContentable.swift
[74/140] Compiling TPPDF PDFTableContent+ContentType.swift
[75/140] Compiling TPPDF PDFTableContent.swift
[76/140] Compiling TPPDF PDFTableContentable.swift
[77/140] Compiling TPPDF String+PDFTableContent.swift
[78/140] Compiling TPPDF UIImage+PDFTableContent.swift
[79/140] Compiling TPPDF PDFTable.swift
[80/140] Compiling TPPDF PDFTableCell.swift
[81/140] Compiling TPPDF PDFTableCellAlignment.swift
[82/140] Compiling TPPDF PDFTableCellPosition.swift
[83/140] Compiling TPPDF PDFTable+CellSubscripts.swift
[84/140] Compiling TPPDF PDFTable+ColumnSubscripts.swift
[85/140] Compiling TPPDF PDFTable+RowSubscripts.swift
[86/140] Compiling TPPDF PDFTable+SectionSubscripts.swift
[87/140] Compiling TPPDF CGPoint+Math.swift
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[88/140] Compiling TPPDF CGPoint+Null.swift
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[89/140] Compiling TPPDF PDFGenerator+Debug.swift
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[90/140] Compiling TPPDF PDFGenerator+Layout.swift
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[91/140] Compiling TPPDF PDFColumnWrapSectionObject.swift
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[92/140] Compiling TPPDF PDFSectionColumnObject.swift
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[93/140] Compiling TPPDF PDFSectionObject.swift
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[94/140] Compiling TPPDF PDFTableOfContentObject.swift
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[95/140] Compiling TPPDF PDFTableCalculatedCell.swift
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[96/140] Compiling TPPDF PDFTableMergeUtil.swift
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[97/140] Compiling TPPDF PDFTableNode.swift
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[98/140] Compiling TPPDF PDFTableObject.swift
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[99/140] Compiling TPPDF PDFTableValidator.swift
/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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[100/140] Compiling TPPDF PDFGeneratorDelegate.swift
[101/140] Compiling TPPDF PDFGeneratorImageDelegate.swift
[102/140] Compiling TPPDF PDFDocument.swift
[103/140] Compiling TPPDF PDFDocumentBackground.swift
[104/140] Compiling TPPDF PDFExternalDocument.swift
[105/140] Compiling TPPDF PDFBezierPath+Copying.swift
[106/140] Compiling TPPDF PDFBezierPath.swift
[107/140] Compiling TPPDF PDFBezierPathVertex.swift
[108/140] Compiling TPPDF PDFDynamicGeometryShape.swift
[109/140] Compiling TPPDF PDFLineStyle.swift
[110/140] Compiling TPPDF PDFLineType.swift
[111/140] Compiling TPPDF PDFGroup+Objects.swift
[112/140] Compiling TPPDF PDFGroup.swift
[113/140] Compiling TPPDF PDFGroupContainer.swift
[114/140] Compiling TPPDF PDFMasterGroup.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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[115/140] Compiling TPPDF PDFImage.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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[116/140] Compiling TPPDF PDFImageOptions.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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[117/140] Compiling TPPDF PDFImageSizeFit.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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[118/140] Compiling TPPDF PDFContainer.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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[119/140] Compiling TPPDF PDFPageLayout.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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[120/140] Compiling TPPDF PDFList.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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[121/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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[122/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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[123/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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[124/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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[125/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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[126/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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[127/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: annotate 'resize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'compress' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedTopRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'roundedBottomRight' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |
45 |     /// 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: annotate 'roundedBottomLeft' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'rounded' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[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! (20.19s)
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: [
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.