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 v7.0.5 (997516), with Swift 6.1 for macOS (SPM) on 29 Apr 2025 12:47:31 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

21 |     public static let isLink = AccessibilityTraits(rawValue: 1 << 2)
   |                       |- warning: static property 'isLink' is not concurrency-safe because non-'Sendable' type 'AccessibilityTraits' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'isLink' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |     public static let isModal = AccessibilityTraits(rawValue: 1 << 3)
23 |     public static let isSummaryElement = AccessibilityTraits(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Accessibility/AccessibilityTraits.swift:22:23: warning: static property 'isModal' is not concurrency-safe because non-'Sendable' type 'AccessibilityTraits' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct AccessibilityTraits: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'AccessibilityTraits' conform to the 'Sendable' protocol
19 |     public static let isButton = AccessibilityTraits(rawValue: 1 << 0)
20 |     public static let isHeader = AccessibilityTraits(rawValue: 1 << 1)
21 |     public static let isLink = AccessibilityTraits(rawValue: 1 << 2)
22 |     public static let isModal = AccessibilityTraits(rawValue: 1 << 3)
   |                       |- warning: static property 'isModal' is not concurrency-safe because non-'Sendable' type 'AccessibilityTraits' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'isModal' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let isSummaryElement = AccessibilityTraits(rawValue: 1 << 4)
24 |     public static let startsMediaSession = AccessibilityTraits(rawValue: 1 << 5)
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Accessibility/AccessibilityTraits.swift:23:23: warning: static property 'isSummaryElement' is not concurrency-safe because non-'Sendable' type 'AccessibilityTraits' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct AccessibilityTraits: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'AccessibilityTraits' conform to the 'Sendable' protocol
19 |     public static let isButton = AccessibilityTraits(rawValue: 1 << 0)
20 |     public static let isHeader = AccessibilityTraits(rawValue: 1 << 1)
21 |     public static let isLink = AccessibilityTraits(rawValue: 1 << 2)
22 |     public static let isModal = AccessibilityTraits(rawValue: 1 << 3)
23 |     public static let isSummaryElement = AccessibilityTraits(rawValue: 1 << 4)
   |                       |- warning: static property 'isSummaryElement' is not concurrency-safe because non-'Sendable' type 'AccessibilityTraits' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'isSummaryElement' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static let startsMediaSession = AccessibilityTraits(rawValue: 1 << 5)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Accessibility/AccessibilityTraits.swift:24:23: warning: static property 'startsMediaSession' is not concurrency-safe because non-'Sendable' type 'AccessibilityTraits' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct AccessibilityTraits: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'AccessibilityTraits' conform to the 'Sendable' protocol
19 |     public static let isButton = AccessibilityTraits(rawValue: 1 << 0)
20 |     public static let isHeader = AccessibilityTraits(rawValue: 1 << 1)
   :
22 |     public static let isModal = AccessibilityTraits(rawValue: 1 << 3)
23 |     public static let isSummaryElement = AccessibilityTraits(rawValue: 1 << 4)
24 |     public static let startsMediaSession = AccessibilityTraits(rawValue: 1 << 5)
   |                       |- warning: static property 'startsMediaSession' is not concurrency-safe because non-'Sendable' type 'AccessibilityTraits' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'startsMediaSession' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     public static let none: AccessibilityTraits = []
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Accessibility/AccessibilityTraits.swift:26:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AccessibilityTraits' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct AccessibilityTraits: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'AccessibilityTraits' conform to the 'Sendable' protocol
19 |     public static let isButton = AccessibilityTraits(rawValue: 1 << 0)
20 |     public static let isHeader = AccessibilityTraits(rawValue: 1 << 1)
   :
24 |     public static let startsMediaSession = AccessibilityTraits(rawValue: 1 << 5)
25 |
26 |     public static let none: AccessibilityTraits = []
   |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AccessibilityTraits' 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
27 |     public static let all: AccessibilityTraits = [.isButton, .isHeader, .isLink, .isModal, .isSummaryElement, .startsMediaSession]
28 |
/Users/admin/builder/spi-builder-workspace/Sources/JudoDocument/Value Types/Accessibility/AccessibilityTraits.swift:27:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AccessibilityTraits' may have shared mutable state; this is an error in the Swift 6 language mode
16 | import Foundation
17 |
18 | public struct AccessibilityTraits: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'AccessibilityTraits' conform to the 'Sendable' protocol
19 |     public static let isButton = AccessibilityTraits(rawValue: 1 << 0)
20 |     public static let isHeader = AccessibilityTraits(rawValue: 1 << 1)
   :
25 |
26 |     public static let none: AccessibilityTraits = []
27 |     public static let all: AccessibilityTraits = [.isButton, .isHeader, .isLink, .isModal, .isSummaryElement, .startsMediaSession]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AccessibilityTraits' 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
28 |
29 |     public let rawValue: Int
[570/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
[571/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
[572/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
[573/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
[574/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
[575/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
[576/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
[577/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
[578/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
[579/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
[580/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
[581/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
[582/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
[583/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
[584/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
[585/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
[586/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
[587/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
[588/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
[589/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
[590/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
[591/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
[592/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
[593/661] Compiling JudoDocument DividerLayer.swift
[594/661] Compiling JudoDocument HStackLayer.swift
[595/661] Compiling JudoDocument SpacerLayer.swift
[596/661] Compiling JudoDocument VStackLayer.swift
[597/661] Compiling JudoDocument ZStackLayer.swift
[598/661] Compiling JudoDocument NavigationLinkLayer.swift
[599/661] Compiling JudoDocument NavigationStackLayer.swift
[600/661] Compiling JudoDocument TabViewLayer.swift
[601/661] Compiling JudoDocument ScrollViewLayer.swift
[602/661] Compiling JudoDocument SectionLayer.swift
[603/661] Compiling JudoDocument CapsuleLayer.swift
[604/661] Compiling JudoDocument CircleLayer.swift
[605/661] Compiling JudoDocument EllipseLayer.swift
[606/661] Compiling JudoDocument RectangleLayer.swift
[607/661] Compiling JudoDocument RoundedRectangleLayer.swift
[608/661] Compiling JudoDocument Shape.swift
[609/661] Compiling JudoDocument CombinedTextLayer.swift
[610/661] Compiling JudoDocument SecureFieldLayer.swift
[611/661] Compiling JudoDocument TextFieldLayer.swift
[612/661] Compiling JudoDocument TextLayer.swift
[613/661] Compiling JudoDocument VideoPlayerLayer.swift
[614/661] Compiling JudoDocument AccessibilityAddTraitsModifier.swift
[615/661] Compiling JudoDocument AccessibilityElementModifier.swift
[616/661] Compiling JudoDocument LegacyPadding.swift
[617/661] Compiling JudoDocument LegacyProperties.swift
[618/661] Compiling JudoDocument LegacyProperty.swift
[619/661] Compiling JudoDocument LegacyTabItem.swift
[620/661] Compiling JudoDocument LegacyTextValue.swift
[621/661] Compiling JudoDocument LegacyToolbarItem.swift
[622/661] Compiling JudoDocument LegacyUserData.swift
[623/661] Compiling JudoDocument Condition.swift
[624/661] Compiling JudoDocument Limit.swift
[625/661] Compiling JudoDocument Predicate.swift
[626/661] Compiling JudoDocument SortDescriptor.swift
[627/661] Compiling JudoDocument Meta.swift
[628/661] Compiling JudoDocument TitleDisplayMode.swift
[629/661] Compiling JudoDocument RasterizationStyle.swift
[630/661] Compiling JudoDocument RoundedCornerStyle.swift
[631/661] Compiling JudoDocument LocaleIdentifier.swift
[632/661] Compiling JudoDocument StringsCatalog.swift
[633/661] Compiling JudoDocument StringsTable.swift
[634/661] Compiling JudoDocument BackgroundDisplayMode.swift
[635/661] Compiling JudoDocument ButtonStyle.swift
[636/661] Compiling JudoDocument IndexDisplayMode.swift
[637/661] Compiling JudoDocument IndexViewStyle.swift
[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! (16.41s)
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.24s)
Fetched https://github.com/apple/swift-collections.git from cache (1.27s)
Computing version for https://github.com/weichsel/ZIPFoundation.git
Computed https://github.com/weichsel/ZIPFoundation.git at 0.9.19 (1.79s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.4 (1.06s)
Creating working copy for https://github.com/weichsel/ZIPFoundation.git
Working copy of https://github.com/weichsel/ZIPFoundation.git resolved at 0.9.19
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
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.