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

Swift 6 data race errors: 34

Build Command

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

Build Log

163 | ]
164 |
165 | private var numberFormatter: NumberFormatter = {
    |             |- warning: var 'numberFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'numberFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make var 'numberFormatter' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
166 |     let formatter = NumberFormatter()
167 |     formatter.locale = Locale(identifier: "en_US_POSIX")
[612/661] Compiling JudoDocument NamedIcon.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Expression.swift:151:13: warning: let 'standardLibrary' is not concurrency-safe because non-'Sendable' type '[JudoExpressionFunction]' may have shared mutable state; this is an error in the Swift 6 language mode
149 |
150 | /// Library of standard functions
151 | private let standardLibrary = [
    |             `- warning: let 'standardLibrary' is not concurrency-safe because non-'Sendable' type '[JudoExpressionFunction]' may have shared mutable state; this is an error in the Swift 6 language mode
152 |     JudoExpressionFunction("formatted", closure: { caller, _ in
153 |         guard let value = caller as? Double else {
/Users/admin/builder/spi-builder-workspace/Sources/JudoExpressions/Interpreter/JudoExpressionFunction.swift:16:15: note: struct 'JudoExpressionFunction' does not conform to the 'Sendable' protocol
14 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15 |
16 | public struct JudoExpressionFunction: Callable {
   |               `- note: struct 'JudoExpressionFunction' does not conform to the 'Sendable' protocol
17 |     let selector: String
18 |     let closure: (_ caller: Any?, _ arguments: [Any?]) throws -> Any?
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Expression.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JudoExpressions'
 16 | import Foundation
 17 | import SwiftUI
 18 | import JudoExpressions
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JudoExpressions'
 19 |
 20 | /// The class used to dynamically evaluate expressions.
    :
149 |
150 | /// Library of standard functions
151 | private let standardLibrary = [
    |             |- note: add '@MainActor' to make let 'standardLibrary' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |     JudoExpressionFunction("formatted", closure: { caller, _ in
153 |         guard let value = caller as? Double else {
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Expression.swift:165:13: warning: var 'numberFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
163 | ]
164 |
165 | private var numberFormatter: NumberFormatter = {
    |             |- warning: var 'numberFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'numberFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make var 'numberFormatter' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
166 |     let formatter = NumberFormatter()
167 |     formatter.locale = Locale(identifier: "en_US_POSIX")
[613/661] Compiling JudoDocument ResizingMode.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Expression.swift:151:13: warning: let 'standardLibrary' is not concurrency-safe because non-'Sendable' type '[JudoExpressionFunction]' may have shared mutable state; this is an error in the Swift 6 language mode
149 |
150 | /// Library of standard functions
151 | private let standardLibrary = [
    |             `- warning: let 'standardLibrary' is not concurrency-safe because non-'Sendable' type '[JudoExpressionFunction]' may have shared mutable state; this is an error in the Swift 6 language mode
152 |     JudoExpressionFunction("formatted", closure: { caller, _ in
153 |         guard let value = caller as? Double else {
/Users/admin/builder/spi-builder-workspace/Sources/JudoExpressions/Interpreter/JudoExpressionFunction.swift:16:15: note: struct 'JudoExpressionFunction' does not conform to the 'Sendable' protocol
14 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15 |
16 | public struct JudoExpressionFunction: Callable {
   |               `- note: struct 'JudoExpressionFunction' does not conform to the 'Sendable' protocol
17 |     let selector: String
18 |     let closure: (_ caller: Any?, _ arguments: [Any?]) throws -> Any?
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Expression.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JudoExpressions'
 16 | import Foundation
 17 | import SwiftUI
 18 | import JudoExpressions
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JudoExpressions'
 19 |
 20 | /// The class used to dynamically evaluate expressions.
    :
149 |
150 | /// Library of standard functions
151 | private let standardLibrary = [
    |             |- note: add '@MainActor' to make let 'standardLibrary' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |     JudoExpressionFunction("formatted", closure: { caller, _ in
153 |         guard let value = caller as? Double else {
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Expression.swift:165:13: warning: var 'numberFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
163 | ]
164 |
165 | private var numberFormatter: NumberFormatter = {
    |             |- warning: var 'numberFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'numberFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make var 'numberFormatter' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
166 |     let formatter = NumberFormatter()
167 |     formatter.locale = Locale(identifier: "en_US_POSIX")
[614/661] Compiling JudoDocument SymbolRenderingMode.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Expression.swift:151:13: warning: let 'standardLibrary' is not concurrency-safe because non-'Sendable' type '[JudoExpressionFunction]' may have shared mutable state; this is an error in the Swift 6 language mode
149 |
150 | /// Library of standard functions
151 | private let standardLibrary = [
    |             `- warning: let 'standardLibrary' is not concurrency-safe because non-'Sendable' type '[JudoExpressionFunction]' may have shared mutable state; this is an error in the Swift 6 language mode
152 |     JudoExpressionFunction("formatted", closure: { caller, _ in
153 |         guard let value = caller as? Double else {
/Users/admin/builder/spi-builder-workspace/Sources/JudoExpressions/Interpreter/JudoExpressionFunction.swift:16:15: note: struct 'JudoExpressionFunction' does not conform to the 'Sendable' protocol
14 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15 |
16 | public struct JudoExpressionFunction: Callable {
   |               `- note: struct 'JudoExpressionFunction' does not conform to the 'Sendable' protocol
17 |     let selector: String
18 |     let closure: (_ caller: Any?, _ arguments: [Any?]) throws -> Any?
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Expression.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JudoExpressions'
 16 | import Foundation
 17 | import SwiftUI
 18 | import JudoExpressions
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JudoExpressions'
 19 |
 20 | /// The class used to dynamically evaluate expressions.
    :
149 |
150 | /// Library of standard functions
151 | private let standardLibrary = [
    |             |- note: add '@MainActor' to make let 'standardLibrary' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |     JudoExpressionFunction("formatted", closure: { caller, _ in
153 |         guard let value = caller as? Double else {
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Expression.swift:165:13: warning: var 'numberFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
163 | ]
164 |
165 | private var numberFormatter: NumberFormatter = {
    |             |- warning: var 'numberFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'numberFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make var 'numberFormatter' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
166 |     let formatter = NumberFormatter()
167 |     formatter.locale = Locale(identifier: "en_US_POSIX")
[615/661] Compiling JudoDocument Archive+read.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[616/661] Compiling JudoDocument CodingUserInfoKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[617/661] Compiling JudoDocument Decodable+typeName.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[618/661] Compiling JudoDocument KeyedDecodingContainer+actions.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[619/661] Compiling JudoDocument KeyedDecodingContainer+nodes.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[620/661] Compiling JudoDocument VersionCompatibilityError.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[621/661] Compiling JudoDocument Archive+write.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[622/661] Compiling JudoDocument Encodable+typeName.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[623/661] Compiling JudoDocument KeyedEncodingContainer+actions.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[624/661] Compiling JudoDocument KeyedEncodingContainer+nodes.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[625/661] Compiling JudoDocument CollectionLayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[626/661] Compiling JudoDocument ComponentInstanceLayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[627/661] Compiling JudoDocument ConditionalLayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[628/661] Compiling JudoDocument ButtonLayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[629/661] Compiling JudoDocument PickerLayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[630/661] Compiling JudoDocument SliderLayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[631/661] Compiling JudoDocument StepperLayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[632/661] Compiling JudoDocument ToggleLayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[633/661] Compiling JudoDocument DataSourceLayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[634/661] Compiling JudoDocument FormLayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[635/661] Compiling JudoDocument AsyncImageLayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[636/661] Compiling JudoDocument ImageLayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[637/661] Compiling JudoDocument Layer.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Decoding/Archive+read.swift:104:53: warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
102 |             case ..<21:
103 |                 let legacyUserData = try decoder.decode(LegacyUserData.self, from: data)
104 |                 decoder.userInfo[.legacyUserData] = legacyUserData
    |                                                     `- warning: type 'LegacyUserData' does not conform to the 'Sendable' protocol
105 |                 return UserData(
106 |                     expandedNodeIDs: legacyUserData.expandedNodeIDs,
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Legacy/LegacyUserData.swift:18:8: note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
16 | import Foundation
17 |
18 | struct LegacyUserData: Decodable {
   |        `- note: consider making struct 'LegacyUserData' conform to the 'Sendable' protocol
19 |     var expandedNodeIDs: Set<UUID>
20 |     var zoomScale: CGFloat
[638/661] Compiling JudoDocument PickerStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[639/661] Compiling JudoDocument TabViewStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[640/661] Compiling JudoDocument TextFieldStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[641/661] Compiling JudoDocument ToggleStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[642/661] Compiling JudoDocument CustomFont.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[643/661] Compiling JudoDocument DocumentFont.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[644/661] Compiling JudoDocument Font.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[645/661] Compiling JudoDocument FontDesign.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[646/661] Compiling JudoDocument FontFamily.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[647/661] Compiling JudoDocument FontName.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[648/661] Compiling JudoDocument FontSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[649/661] Compiling JudoDocument FontTextStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[650/661] Compiling JudoDocument FontValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[651/661] Compiling JudoDocument FontWeight.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[652/661] Compiling JudoDocument TextAlignment.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[653/661] Compiling JudoDocument TextCase.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[654/661] Compiling JudoDocument TextLineStylePattern.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[655/661] Compiling JudoDocument ToolbarItemPlacement.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[656/661] Compiling JudoDocument ToolbarPlacement.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[657/661] Compiling JudoDocument Variable.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[658/661] Compiling JudoDocument Video.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[659/661] Compiling JudoDocument Visibility.swift
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:19:23: warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
   |                       |- warning: static property 'navigationBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'navigationBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:20:23: warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   |                       |- warning: static property 'tabBar' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'tabBar' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static let none: ToolbarPlacement = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:22:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
24 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
21 |
22 |     public static let none: ToolbarPlacement = []
23 |     public static let all: ToolbarPlacement = [.navigationBar, .tabBar]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Toolbars/ToolbarPlacement.swift:26:23: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct ToolbarPlacement: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'ToolbarPlacement' conform to the 'Sendable' protocol
19 |     public static let navigationBar = ToolbarPlacement(rawValue: 1 << 0)
20 |     public static let tabBar = ToolbarPlacement(rawValue: 1 << 1)
   :
24 |
25 |     // On iOS, automatic is equivalent to navigationBar
26 |     public static let automatic: ToolbarPlacement = [.navigationBar]
   |                       |- warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'ToolbarPlacement' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public let rawValue: Int
[659/661] Write Objects.LinkFileList
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'Expression.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/JudoExpressions.build/Expression.swift.o(Expression.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/JudoDocument.build/Expression.swift.o(Expression.swift.o)'
[660/661] Archiving libJudoDocument.a
Build complete! (17.42s)
Fetching https://github.com/weichsel/ZIPFoundation.git
Fetching https://github.com/apple/swift-collections.git from cache
[1/5562] Fetching zipfoundation
Fetched https://github.com/weichsel/ZIPFoundation.git from cache (1.22s)
Fetched https://github.com/apple/swift-collections.git from cache (1.24s)
Computing version for https://github.com/weichsel/ZIPFoundation.git
Computed https://github.com/weichsel/ZIPFoundation.git at 0.9.19 (1.75s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.4 (1.17s)
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.1.4
Creating working copy for https://github.com/weichsel/ZIPFoundation.git
Working copy of https://github.com/weichsel/ZIPFoundation.git resolved at 0.9.19
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/README.md
Build complete.
{
  "dependencies" : [
    {
      "identity" : "zipfoundation",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.9.18",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/weichsel/ZIPFoundation.git"
    },
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections.git"
    }
  ],
  "manifest_display_name" : "Judo",
  "name" : "Judo",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "14.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "Judo",
      "targets" : [
        "Judo"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "JudoDocument",
      "targets" : [
        "JudoDocument"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "XCAssetsKit",
      "targets" : [
        "XCAssetsKit"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XCAssetsKit",
      "module_type" : "SwiftTarget",
      "name" : "XCAssetsKit",
      "path" : "Sources/XCAssetsKit",
      "product_memberships" : [
        "Judo",
        "JudoDocument",
        "XCAssetsKit"
      ],
      "sources" : [
        "Asset.swift",
        "AssetKind.swift",
        "ImageSet.swift",
        "Info.swift",
        "XCAssetCatalog.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "JudoRenderer",
      "module_type" : "SwiftTarget",
      "name" : "JudoRenderer",
      "path" : "Sources/JudoRenderer",
      "product_memberships" : [
        "Judo"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/JudoRenderer/Assets/Logo.png",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "ActionHandler.swift",
        "ActionName.swift",
        "ActionParameters.swift",
        "Backport/Backport+EnvironmentValues.swift",
        "Backport/Backport+InteractiveDismissDisabled.swift",
        "Backport/Backport+Kerning.swift",
        "Backport/Backport+PresentationDetents.swift",
        "Backport/Backport+Tracking.swift",
        "Backport/Backport+badge.swift",
        "Backport/Backport+bold.swift",
        "Backport/Backport+fontWeight.swift",
        "Backport/Backport+italic.swift",
        "Backport/Backport+tint.swift",
        "Backport/Backport+underline.swift",
        "ComponentName.swift",
        "Deprecated/CustomActionIdentifier.swift",
        "Deprecated/Judo.View.swift",
        "Environment/AssetManager.swift",
        "Environment/ComponentBindings.swift",
        "Environment/EnvironmentValues.swift",
        "JudoAsyncView.swift",
        "JudoAsyncViewPhase.swift",
        "JudoError.swift",
        "JudoErrorView.swift",
        "JudoView.swift",
        "Layers/ArtboardView.swift",
        "Layers/AsyncImageView.swift",
        "Layers/ButtonView.swift",
        "Layers/CapsuleView.swift",
        "Layers/CircleView.swift",
        "Layers/CollectionView.swift",
        "Layers/CombinedTextView.swift",
        "Layers/ComponentInstanceView.swift",
        "Layers/ConditionalView.swift",
        "Layers/DataSourceView.swift",
        "Layers/DividerView.swift",
        "Layers/EllipseView.swift",
        "Layers/FormView.swift",
        "Layers/HStackView.swift",
        "Layers/ImageView.swift",
        "Layers/MainComponentView.swift",
        "Layers/NavigationLinkView.swift",
        "Layers/NavigationStackView.swift",
        "Layers/NodeView.swift",
        "Layers/PickerView.swift",
        "Layers/RectangleView.swift",
        "Layers/RoundedRectangleView.swift",
        "Layers/ScrollViewView.swift",
        "Layers/SectionView.swift",
        "Layers/SecureFieldView.swift",
        "Layers/SliderView.swift",
        "Layers/SpacerView.swift",
        "Layers/StepperView.swift",
        "Layers/TabViewView.swift",
        "Layers/TextFieldView.swift",
        "Layers/TextView.swift",
        "Layers/ToggleView.swift",
        "Layers/VStackView.swift",
        "Layers/VideoPlayerView.swift",
        "Layers/ZStackView.swift",
        "Modifiers/AccessibilityAddTraitsViewModifier.swift",
        "Modifiers/AccessibilityElementViewModifier.swift",
        "Modifiers/AccessibilityHiddenViewModifier.swift",
        "Modifiers/AccessibilityLabelViewModifier.swift",
        "Modifiers/AccessibilitySortPriorityViewModifier.swift",
        "Modifiers/AspectRatioViewModifier.swift",
        "Modifiers/AutoCorrectionDisabledViewModifier.swift",
        "Modifiers/AutocapitalizationViewModifier.swift",
        "Modifiers/BackgroundViewModifier.swift",
        "Modifiers/BlendModeViewModifier.swift",
        "Modifiers/BlurViewModifier.swift",
        "Modifiers/BoldViewModifier.swift",
        "Modifiers/BorderViewModifier.swift",
        "Modifiers/ButtonStyleViewModifier.swift",
        "Modifiers/ClipShapeViewModifier.swift",
        "Modifiers/ClippedViewModifier.swift",
        "Modifiers/ContainerRelativeFrameViewModifier.swift",
        "Modifiers/FixedSizeViewModifier.swift",
        "Modifiers/FontViewModifier.swift",
        "Modifiers/FontWeightModifier.swift",
        "Modifiers/ForegroundColorViewModifier.swift",
        "Modifiers/FrameViewModifier.swift",
        "Modifiers/FullScreenCoverViewModifier.swift",
        "Modifiers/IgnoresSafeAreaViewModifier.swift",
        "Modifiers/IndexViewStyleViewModifier.swift",
        "Modifiers/InteractiveDismissDisabledViewModifier.swift",
        "Modifiers/ItalicViewModifier.swift",
        "Modifiers/KerningViewModifier.swift",
        "Modifiers/KeyboardTypeViewModifier.swift",
        "Modifiers/LabelsHiddenViewModifier.swift",
        "Modifiers/LayoutPriorityViewModifier.swift",
        "Modifiers/LineLimitViewModifier.swift",
        "Modifiers/MaskViewModifier.swift",
        "Modifiers/MinimumScaleFactorViewModifier.swift",
        "Modifiers/MultilineTextAlignmentViewModifier.swift",
        "Modifiers/NavigationBarBackButtonHiddenViewModifier.swift",
        "Modifiers/NavigationBarHiddenViewModifier.swift",
        "Modifiers/NavigationBarTitleDisplayModeViewModifier.swift",
        "Modifiers/NavigationTitleViewModifier.swift",
        "Modifiers/OffsetViewModifier.swift",
        "Modifiers/OnAppearViewModifier.swift",
        "Modifiers/OnDisappearViewModifier.swift",
        "Modifiers/OnTapGestureViewModifier.swift",
        "Modifiers/OpacityViewModifier.swift",
        "Modifiers/OverlayViewModifer.swift",
        "Modifiers/PaddingViewModifier.swift",
        "Modifiers/PickerStyleViewModifier.swift",
        "Modifiers/PositionModifier.swift",
        "Modifiers/PresentationBackgroundInteractionViewModifier.swift",
        "Modifiers/PresentationBackgroundViewModifier.swift",
        "Modifiers/PresentationContentInteractionModifier.swift",
        "Modifiers/PresentationCornerRadiusViewModifier.swift",
        "Modifiers/PresentationDetentsViewModifier.swift",
        "Modifiers/PresentationDragIndicatorModifier.swift",
        "Modifiers/RotationEffectViewModifier.swift",
        "Modifiers/ScaledToFillViewModifier.swift",
        "Modifiers/ScaledToFitViewModifier.swift",
        "Modifiers/ScrollTargetBehaviorViewModifier.swift",
        "Modifiers/ScrollTargetLayoutViewModifier.swift",
        "Modifiers/ShadowViewModifier.swift",
        "Modifiers/SheetModifier.swift",
        "Modifiers/SubmitLabelViewModifier.swift",
        "Modifiers/TabItemViewModifier.swift",
        "Modifiers/TabViewStyleViewModifier.swift",
        "Modifiers/TextCaseViewModifier.swift",
        "Modifiers/TextContentTypeViewModifier.swift",
        "Modifiers/TextFieldStyleViewModifier.swift",
        "Modifiers/TintViewModifier.swift",
        "Modifiers/ToggleStyleViewModifier.swift",
        "Modifiers/ToolbarBackgroundColorViewModifier.swift",
        "Modifiers/ToolbarBackgroundVisibilityViewModifier.swift",
        "Modifiers/ToolbarColorSchemeViewModifier.swift",
        "Modifiers/ToolbarItemViewModifier.swift",
        "Modifiers/TrackingViewModifier.swift",
        "Modifiers/UnderlineViewModifier.swift",
        "Modifiers/ViewModifierContainer.swift",
        "PropertyName.swift",
        "Utils/Actions.swift",
        "Utils/Color.swift",
        "Utils/DocumentNode+components.swift",
        "Utils/InsettableShape+render.swift",
        "Utils/Locale+preferred.swift",
        "Utils/Logger.swift",
        "Utils/OrderedDictionary+Dictionary.swift",
        "Utils/RealizeColor.swift",
        "Utils/RealizeFont.swift",
        "Utils/RealizeGradient.swift",
        "Utils/RealizeText.swift",
        "Utils/SwiftUI/FontDesign.swift",
        "Utils/SwiftUI/FontTextStyle.swift",
        "Utils/SwiftUI/FontWeight.swift",
        "Utils/SwiftUI/HorizontalAlignment.swift",
        "Utils/SwiftUI/TextLineStylePattern.swift",
        "Utils/SwiftUI/VerticalAlignment.swift",
        "ViewModifiers/ZStackContentIfNeededModifier.swift"
      ],
      "target_dependencies" : [
        "JudoDocument",
        "Backport",
        "XCAssetsKit",
        "JudoExpressions"
      ],
      "type" : "library"
    },
    {
      "c99name" : "JudoExpressions",
      "module_type" : "SwiftTarget",
      "name" : "JudoExpressions",
      "path" : "Sources/JudoExpressions",
      "product_memberships" : [
        "Judo",
        "JudoDocument"
      ],
      "sources" : [
        "Interpreter/Callable.swift",
        "Interpreter/JudoExpressionFunction.swift",
        "Interpreter/JudoExpressionVariable.swift",
        "Interpreter/JudoInterpreter.swift",
        "Interpreter/StdLib/StandardLibrary.swift",
        "Lexer/Keywords.swift",
        "Lexer/Scanner.swift",
        "Lexer/Token.swift",
        "Parser/Expression.swift",
        "Parser/ExpressionStatement.swift",
        "Parser/ExpressionVisitor.swift",
        "Parser/Expressions/Binary.swift",
        "Parser/Expressions/Call.swift",
        "Parser/Expressions/CallMethod.swift",
        "Parser/Expressions/Grouping.swift",
        "Parser/Expressions/Identifier.swift",
        "Parser/Expressions/Literal.swift",
        "Parser/Expressions/Unary.swift",
        "Parser/Parser.swift",
        "Parser/Statement.swift",
        "Parser/StatementVisitor.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "JudoDocument",
      "module_type" : "SwiftTarget",
      "name" : "JudoDocument",
      "path" : "Sources/JudoDocument",
      "product_dependencies" : [
        "ZIPFoundation",
        "Collections"
      ],
      "product_memberships" : [
        "Judo",
        "JudoDocument"
      ],
      "sources" : [
        "Decoding/Archive+read.swift",
        "Decoding/CodingUserInfoKey.swift",
        "Decoding/Decodable+typeName.swift",
        "Decoding/KeyedDecodingContainer+actions.swift",
        "Decoding/KeyedDecodingContainer+nodes.swift",
        "Decoding/VersionCompatibilityError.swift",
        "Encoding/Archive+write.swift",
        "Encoding/Encodable+typeName.swift",
        "Encoding/KeyedEncodingContainer+actions.swift",
        "Encoding/KeyedEncodingContainer+nodes.swift",
        "Layers/CollectionLayer.swift",
        "Layers/ComponentInstanceLayer.swift",
        "Layers/ConditionalLayer.swift",
        "Layers/Controls/ButtonLayer.swift",
        "Layers/Controls/PickerLayer.swift",
        "Layers/Controls/SliderLayer.swift",
        "Layers/Controls/StepperLayer.swift",
        "Layers/Controls/ToggleLayer.swift",
        "Layers/DataSourceLayer.swift",
        "Layers/FormLayer.swift",
        "Layers/Images/AsyncImageLayer.swift",
        "Layers/Images/ImageLayer.swift",
        "Layers/Layer.swift",
        "Layers/Layout/DividerLayer.swift",
        "Layers/Layout/HStackLayer.swift",
        "Layers/Layout/SpacerLayer.swift",
        "Layers/Layout/VStackLayer.swift",
        "Layers/Layout/ZStackLayer.swift",
        "Layers/Navigation/NavigationLinkLayer.swift",
        "Layers/Navigation/NavigationStackLayer.swift",
        "Layers/Navigation/TabViewLayer.swift",
        "Layers/ScrollViewLayer.swift",
        "Layers/SectionLayer.swift",
        "Layers/Shapes/CapsuleLayer.swift",
        "Layers/Shapes/CircleLayer.swift",
        "Layers/Shapes/EllipseLayer.swift",
        "Layers/Shapes/RectangleLayer.swift",
        "Layers/Shapes/RoundedRectangleLayer.swift",
        "Layers/Shapes/Shape.swift",
        "Layers/Text/CombinedTextLayer.swift",
        "Layers/Text/SecureFieldLayer.swift",
        "Layers/Text/TextFieldLayer.swift",
        "Layers/Text/TextLayer.swift",
        "Layers/Videos/VideoPlayerLayer.swift",
        "Modifiers/Accessibility/AccessibilityAddTraitsModifier.swift",
        "Modifiers/Accessibility/AccessibilityElementModifier.swift",
        "Modifiers/Accessibility/AccessibilityHiddenModifier.swift",
        "Modifiers/Accessibility/AccessibilityLabelModifier.swift",
        "Modifiers/Accessibility/AccessibilitySortPriorityModifier.swift",
        "Modifiers/Controls/TabItemModifier.swift",
        "Modifiers/Controls/ToolbarItemModifier.swift",
        "Modifiers/Effects/BlendModeModifier.swift",
        "Modifiers/Effects/BlurModifier.swift",
        "Modifiers/Effects/BorderModifier.swift",
        "Modifiers/Effects/ClipShapeModifier.swift",
        "Modifiers/Effects/ClippedModifier.swift",
        "Modifiers/Effects/ForegroundColorModifier.swift",
        "Modifiers/Effects/OpacityModifier.swift",
        "Modifiers/Effects/RotationEffectModifier.swift",
        "Modifiers/Effects/ShadowModifier.swift",
        "Modifiers/Effects/TintModifier.swift",
        "Modifiers/Effects/ToolbarBackgroundColorModifier.swift",
        "Modifiers/Effects/ToolbarColorSchemeModifier.swift",
        "Modifiers/Layout/AspectRatioModifier.swift",
        "Modifiers/Layout/BackgroundModifier.swift",
        "Modifiers/Layout/ContainerRelativeFrameModifier.swift",
        "Modifiers/Layout/FixedSizeModifier.swift",
        "Modifiers/Layout/FrameModifier.swift",
        "Modifiers/Layout/FullScreenCoverModifier.swift",
        "Modifiers/Layout/IgnoresSafeAreaModifier.swift",
        "Modifiers/Layout/LabelsHiddenModifier.swift",
        "Modifiers/Layout/LayoutPriorityModifier.swift",
        "Modifiers/Layout/MaskModifier.swift",
        "Modifiers/Layout/OffsetModifier.swift",
        "Modifiers/Layout/OverlayModifier.swift",
        "Modifiers/Layout/PaddingModifier.swift",
        "Modifiers/Layout/PositionModifier.swift",
        "Modifiers/Layout/PresentationBackgroundInteractionModifier.swift",
        "Modifiers/Layout/PresentationBackgroundModifier.swift",
        "Modifiers/Layout/PresentationContentInteractionModifier.swift",
        "Modifiers/Layout/PresentationCornerRadiusModifier.swift",
        "Modifiers/Layout/PresentationDetentsModifier.swift",
        "Modifiers/Layout/PresentationDragIndicatorModifier.swift",
        "Modifiers/Layout/ScaledToFillModifier.swift",
        "Modifiers/Layout/ScaledToFitModifier.swift",
        "Modifiers/Layout/SheetModifier.swift",
        "Modifiers/Layout/ToolbarBackgroundVisibilityModifier.swift",
        "Modifiers/Modifier.swift",
        "Modifiers/Navigation/InteractiveDismissDisabledModifier.swift",
        "Modifiers/Navigation/NavigationBarBackButtonHiddenModifier.swift",
        "Modifiers/Navigation/NavigationBarHiddenModifier.swift",
        "Modifiers/Navigation/NavigationBarTitleDisplayModeModifier.swift",
        "Modifiers/Navigation/NavigationTitleModifier.swift",
        "Modifiers/Other/OnAppearModifier.swift",
        "Modifiers/Other/OnDisappearModifier.swift",
        "Modifiers/Other/OnTapGestureModifier.swift",
        "Modifiers/Other/ScrollTargetBehaviorModifier.swift",
        "Modifiers/Other/ScrollTargetLayoutModifier.swift",
        "Modifiers/Style/ButtonStyleModifier.swift",
        "Modifiers/Style/IndexViewStyleModifier.swift",
        "Modifiers/Style/PickerStyleModifier.swift",
        "Modifiers/Style/TabViewStyleModifier.swift",
        "Modifiers/Style/TextFieldStyleModifier.swift",
        "Modifiers/Style/ToggleStyleModifier.swift",
        "Modifiers/Text/AutocapitalizationModifier.swift",
        "Modifiers/Text/AutocorrectionDisabledModifier.swift",
        "Modifiers/Text/BoldModifier.swift",
        "Modifiers/Text/FontModifier.swift",
        "Modifiers/Text/FontWeightModifier.swift",
        "Modifiers/Text/ItalicModifier.swift",
        "Modifiers/Text/KerningModifier.swift",
        "Modifiers/Text/KeyboardTypeModifier.swift",
        "Modifiers/Text/LineLimitModifier.swift",
        "Modifiers/Text/MinimumScaleFactorModifier.swift",
        "Modifiers/Text/MultiLineTextAlignmentModifier.swift",
        "Modifiers/Text/SubmitLabelModifier.swift",
        "Modifiers/Text/TextCaseModifier.swift",
        "Modifiers/Text/TextContentTypeModifier.swift",
        "Modifiers/Text/TrackingModifier.swift",
        "Modifiers/Text/UnderlineModifier.swift",
        "Nodes/ArtboardNode.swift",
        "Nodes/CanvasNode.swift",
        "Nodes/ContainerNode.swift",
        "Nodes/DocumentNode.swift",
        "Nodes/MainComponentNode.swift",
        "Nodes/Node.swift",
        "Nodes/NodeArchive.swift",
        "Utils/Condition+isSatisfied.swift",
        "Utils/DataSource+urlRequest.swift",
        "Utils/JSONSerialization+valueForKeyPath.swift",
        "Utils/String+interpolation.swift",
        "Value Types/Accessibility/AccessibilityChildBehavior.swift",
        "Value Types/Accessibility/AccessibilityTraits.swift",
        "Value Types/Actions/Action.swift",
        "Value Types/Actions/CustomAction.swift",
        "Value Types/Actions/DecrementPropertyAction.swift",
        "Value Types/Actions/DismissAction.swift",
        "Value Types/Actions/IncrementPropertyAction.swift",
        "Value Types/Actions/OpenURLAction.swift",
        "Value Types/Actions/Parameter.swift",
        "Value Types/Actions/PropertyAction.swift",
        "Value Types/Actions/RefreshAction.swift",
        "Value Types/Actions/SetPropertyAction.swift",
        "Value Types/Actions/TogglePropertyAction.swift",
        "Value Types/Canvas/ContentSizeCategory.swift",
        "Value Types/Canvas/Device.swift",
        "Value Types/Canvas/Frame.swift",
        "Value Types/Canvas/PreviewLanguage.swift",
        "Value Types/Canvas/PreviewSettings.swift",
        "Value Types/Canvas/UserData.swift",
        "Value Types/ColorScheme.swift",
        "Value Types/Components/ComputedProperty.swift",
        "Value Types/Components/ComputedPropertyValue.swift",
        "Value Types/Components/Override.swift",
        "Value Types/Components/Overrides.swift",
        "Value Types/Components/Property.swift",
        "Value Types/Components/PropertyValue.swift",
        "Value Types/Controls/ButtonRole.swift",
        "Value Types/Controls/PickerOption.swift",
        "Value Types/Drawing/AngleUnit.swift",
        "Value Types/Drawing/Axes.swift",
        "Value Types/Drawing/Axis.swift",
        "Value Types/Drawing/BlendMode.swift",
        "Value Types/Drawing/ColorReference.swift",
        "Value Types/Drawing/ColorReferenceType.swift",
        "Value Types/Drawing/ColorValue.swift",
        "Value Types/Drawing/ContentMode.swift",
        "Value Types/Drawing/DocumentColor.swift",
        "Value Types/Drawing/DocumentGradient.swift",
        "Value Types/Drawing/FillSelector.swift",
        "Value Types/Drawing/GradientReference.swift",
        "Value Types/Drawing/GradientReferenceType.swift",
        "Value Types/Drawing/GradientStop.swift",
        "Value Types/Drawing/GradientValue.swift",
        "Value Types/Drawing/ShapeStyle.swift",
        "Value Types/Drawing/UnitPoint.swift",
        "Value Types/Expression.swift",
        "Value Types/HTTPHeader.swift",
        "Value Types/HTTPMethod.swift",
        "Value Types/Images/ImageReference.swift",
        "Value Types/Images/ImageScale.swift",
        "Value Types/Images/NamedIcon.swift",
        "Value Types/Images/ResizingMode.swift",
        "Value Types/Images/SymbolRenderingMode.swift",
        "Value Types/Images/TemplateRenderingMode.swift",
        "Value Types/Keyboard/KeyboardType.swift",
        "Value Types/Keyboard/SubmitLabel.swift",
        "Value Types/Keyboard/TextAutocapitalizationType.swift",
        "Value Types/Keyboard/TextContentType.swift",
        "Value Types/Layout/Alignment.swift",
        "Value Types/Layout/Edge.swift",
        "Value Types/Layout/Edges.swift",
        "Value Types/Layout/FrameType.swift",
        "Value Types/Layout/HorizontalAlignment.swift",
        "Value Types/Layout/PresentationBackgroundInteraction.swift",
        "Value Types/Layout/PresentationContentInteraction.swift",
        "Value Types/Layout/PresentationDetent.swift",
        "Value Types/Layout/SafeAreaRegion.swift",
        "Value Types/Layout/ScrollTargetBehavior.swift",
        "Value Types/Layout/VerticalAlignment.swift",
        "Value Types/Legacy/LegacyAction.swift",
        "Value Types/Legacy/LegacyBooleanValue.swift",
        "Value Types/Legacy/LegacyCanvasPreview.swift",
        "Value Types/Legacy/LegacyDeviceSize.swift",
        "Value Types/Legacy/LegacyFrame.swift",
        "Value Types/Legacy/LegacyImageValue.swift",
        "Value Types/Legacy/LegacyNumberValue.swift",
        "Value Types/Legacy/LegacyPadding.swift",
        "Value Types/Legacy/LegacyProperties.swift",
        "Value Types/Legacy/LegacyProperty.swift",
        "Value Types/Legacy/LegacyTabItem.swift",
        "Value Types/Legacy/LegacyTextValue.swift",
        "Value Types/Legacy/LegacyToolbarItem.swift",
        "Value Types/Legacy/LegacyUserData.swift",
        "Value Types/Logic/Condition.swift",
        "Value Types/Logic/Limit.swift",
        "Value Types/Logic/Predicate.swift",
        "Value Types/Logic/SortDescriptor.swift",
        "Value Types/Meta.swift",
        "Value Types/Navigation/TitleDisplayMode.swift",
        "Value Types/Shapes/RasterizationStyle.swift",
        "Value Types/Shapes/RoundedCornerStyle.swift",
        "Value Types/Strings/LocaleIdentifier.swift",
        "Value Types/Strings/StringsCatalog.swift",
        "Value Types/Strings/StringsTable.swift",
        "Value Types/Style/BackgroundDisplayMode.swift",
        "Value Types/Style/ButtonStyle.swift",
        "Value Types/Style/IndexDisplayMode.swift",
        "Value Types/Style/IndexViewStyle.swift",
        "Value Types/Style/PickerStyle.swift",
        "Value Types/Style/TabViewStyle.swift",
        "Value Types/Style/TextFieldStyle.swift",
        "Value Types/Style/ToggleStyle.swift",
        "Value Types/Text/CustomFont.swift",
        "Value Types/Text/DocumentFont.swift",
        "Value Types/Text/Font.swift",
        "Value Types/Text/FontDesign.swift",
        "Value Types/Text/FontFamily.swift",
        "Value Types/Text/FontName.swift",
        "Value Types/Text/FontSource.swift",
        "Value Types/Text/FontTextStyle.swift",
        "Value Types/Text/FontValue.swift",
        "Value Types/Text/FontWeight.swift",
        "Value Types/Text/TextAlignment.swift",
        "Value Types/Text/TextCase.swift",
        "Value Types/Text/TextLineStylePattern.swift",
        "Value Types/Toolbars/ToolbarItemPlacement.swift",
        "Value Types/Toolbars/ToolbarPlacement.swift",
        "Value Types/Variable.swift",
        "Value Types/Video/Video.swift",
        "Value Types/Visibility.swift"
      ],
      "target_dependencies" : [
        "XCAssetsKit",
        "JudoExpressions"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Judo",
      "module_type" : "SwiftTarget",
      "name" : "Judo",
      "path" : "Sources/Judo",
      "product_memberships" : [
        "Judo"
      ],
      "sources" : [
        "Judo.swift"
      ],
      "target_dependencies" : [
        "JudoRenderer"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ExpressionsTests",
      "module_type" : "SwiftTarget",
      "name" : "ExpressionsTests",
      "path" : "Tests/ExpressionsTests",
      "sources" : [
        "InterpreterTests.swift",
        "LexerTests.swift",
        "ParserTests.swift"
      ],
      "target_dependencies" : [
        "JudoExpressions"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Backport",
      "module_type" : "SwiftTarget",
      "name" : "Backport",
      "path" : "Sources/Backport",
      "product_memberships" : [
        "Judo"
      ],
      "sources" : [
        "AsyncImage.swift",
        "Backport.swift",
        "BackportNamespace.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.