This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 CDKSwiftOracc with Swift 6.0 for Linux.

Swift 6 data race errors: 6

Build Command

bash -c docker run --rm -v "checkouts-4609320-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ckanchan/CDKSwiftOracc.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/ckanchan/CDKSwiftOracc
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at aa3a105 Added public access control
Cloned https://github.com/ckanchan/CDKSwiftOracc.git
Revision (git rev-parse @):
aa3a105730a8b9e96c54c906acd2252d060d53c8
SUCCESS checkout https://github.com/ckanchan/CDKSwiftOracc.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/ckanchan/CDKSwiftOracc.git
Running build ...
bash -c docker run --rm -v "checkouts-4609320-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/27] Emitting module CDKSwiftOracc
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/Legacy/NSAttributedStringFormatter.swift:144:10: warning: Code handling 'damaged' and 'missing' signs is repetitive and needs to be tidied up
142 | }
143 |
144 | #warning("Code handling 'damaged' and 'missing' signs is repetitive and needs to be tidied up")
    |          `- warning: Code handling 'damaged' and 'missing' signs is repetitive and needs to be tidied up
145 | extension GraphemeDescription {
146 |      func transliterated() -> NSAttributedString {
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:23:23: warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
   |                       |- warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'editorial' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:24:23: warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
   |                       |- warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:25:23: warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
   |                       |- warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:26:23: warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
   |                       |- warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'superscript' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:27:23: warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
   |                       |- warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damaged' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
29 |
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:28:23: warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
   |                       |- warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damagedLogogram' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public init(rawValue: Int) {
[4/30] Compiling CDKSwiftOracc OraccHTML5Formatter.swift
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:23:23: warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
   |                       |- warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'editorial' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:24:23: warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
   |                       |- warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:25:23: warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
   |                       |- warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:26:23: warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
   |                       |- warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'superscript' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:27:23: warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
   |                       |- warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damaged' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
29 |
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:28:23: warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
   |                       |- warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damagedLogogram' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public init(rawValue: Int) {
[5/30] Compiling CDKSwiftOracc OraccTextEdition.swift
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:23:23: warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
   |                       |- warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'editorial' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:24:23: warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
   |                       |- warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:25:23: warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
   |                       |- warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:26:23: warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
   |                       |- warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'superscript' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:27:23: warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
   |                       |- warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damaged' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
29 |
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:28:23: warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
   |                       |- warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damagedLogogram' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public init(rawValue: Int) {
[6/30] Compiling CDKSwiftOracc TextEditionFormatting.swift
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:23:23: warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
   |                       |- warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'editorial' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:24:23: warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
   |                       |- warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:25:23: warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
   |                       |- warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:26:23: warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
   |                       |- warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'superscript' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:27:23: warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
   |                       |- warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damaged' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
29 |
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:28:23: warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
   |                       |- warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damagedLogogram' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public init(rawValue: Int) {
[7/30] Compiling CDKSwiftOracc OraccCDLNode+Codable.swift
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccCitationForm>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccGuideWord>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccSense>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccPartOfSpeech>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccEffectivePartOfSpeech>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.WrittenForm>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.InstanceTranslation>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.Reference>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccLanguage>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.SignValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.SignModifiers>'; this is an error in the Swift 6 language mode
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[8/30] Compiling CDKSwiftOracc OraccCDLNode+ExtendedAttributes.swift
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccCitationForm>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccGuideWord>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccSense>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccPartOfSpeech>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccEffectivePartOfSpeech>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.WrittenForm>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.InstanceTranslation>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.Reference>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccLanguage>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.SignValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.SignModifiers>'; this is an error in the Swift 6 language mode
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[9/30] Compiling CDKSwiftOracc OraccCDLNode.swift
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccCitationForm>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccGuideWord>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccSense>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccPartOfSpeech>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccEffectivePartOfSpeech>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.WrittenForm>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.InstanceTranslation>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.Reference>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccLanguage>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.SignValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.SignModifiers>'; this is an error in the Swift 6 language mode
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[10/30] Compiling CDKSwiftOracc OraccWordForm.swift
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccCitationForm>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccGuideWord>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccSense>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccPartOfSpeech>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccEffectivePartOfSpeech>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.WrittenForm>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.InstanceTranslation>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.Reference>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.OraccLanguage>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.SignValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.SignModifiers>'; this is an error in the Swift 6 language mode
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[11/30] Compiling CDKSwiftOracc OraccLanguages.swift
[12/30] Compiling CDKSwiftOracc XISReference.swift
[13/30] Compiling CDKSwiftOracc Cuneifier.swift
[14/30] Compiling CDKSwiftOracc TextSearchCollection.swift
[15/30] Compiling CDKSwiftOracc TextSetProtocol.swift
[16/30] Compiling CDKSwiftOracc OraccGlossary.swift
[17/30] Compiling CDKSwiftOracc OraccCatalog.swift
[18/30] Compiling CDKSwiftOracc OraccCatalogueEntry+Codable.swift
[19/30] Compiling CDKSwiftOracc OraccCatalogueEntry.swift
[20/30] Compiling CDKSwiftOracc TextID.swift
[21/30] Compiling CDKSwiftOracc OraccGlobalSignList.swift
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/Sign Lists/String+CuneiformHelpers.swift:34:18: warning: Code handling numbers needs to convert all sign variant signifiers into Unicode subscripts; handle actual numbers
32 |
33 |     func cuneifyInputEncoded() -> String {
34 |         #warning("Code handling numbers needs to convert all sign variant signifiers into Unicode subscripts; handle actual numbers")
   |                  `- warning: Code handling numbers needs to convert all sign variant signifiers into Unicode subscripts; handle actual numbers
35 |         if self.decomposedStringWithCanonicalMapping.contains(String.combiningAcuteAccent) {
36 |             return self.decomposedStringWithCanonicalMapping.replacingOccurrences(of: String.combiningAcuteAccent, with: "").appending("₂")
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:23:23: warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
   |                       |- warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'editorial' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:24:23: warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
   |                       |- warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:25:23: warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
   |                       |- warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:27:23: warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
   |                       |- warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damaged' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
29 |
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:26:23: warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
   |                       |- warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'superscript' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:28:23: warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
   |                       |- warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damagedLogogram' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public init(rawValue: Int) {
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[22/30] Compiling CDKSwiftOracc String+CuneiformHelpers.swift
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/Sign Lists/String+CuneiformHelpers.swift:34:18: warning: Code handling numbers needs to convert all sign variant signifiers into Unicode subscripts; handle actual numbers
32 |
33 |     func cuneifyInputEncoded() -> String {
34 |         #warning("Code handling numbers needs to convert all sign variant signifiers into Unicode subscripts; handle actual numbers")
   |                  `- warning: Code handling numbers needs to convert all sign variant signifiers into Unicode subscripts; handle actual numbers
35 |         if self.decomposedStringWithCanonicalMapping.contains(String.combiningAcuteAccent) {
36 |             return self.decomposedStringWithCanonicalMapping.replacingOccurrences(of: String.combiningAcuteAccent, with: "").appending("₂")
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:23:23: warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
   |                       |- warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'editorial' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:24:23: warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
   |                       |- warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:25:23: warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
   |                       |- warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:27:23: warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
   |                       |- warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damaged' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
29 |
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:26:23: warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
   |                       |- warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'superscript' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:28:23: warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
   |                       |- warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damagedLogogram' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public init(rawValue: Int) {
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[23/30] Compiling CDKSwiftOracc AttributedStringFormatter.swift
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/Sign Lists/String+CuneiformHelpers.swift:34:18: warning: Code handling numbers needs to convert all sign variant signifiers into Unicode subscripts; handle actual numbers
32 |
33 |     func cuneifyInputEncoded() -> String {
34 |         #warning("Code handling numbers needs to convert all sign variant signifiers into Unicode subscripts; handle actual numbers")
   |                  `- warning: Code handling numbers needs to convert all sign variant signifiers into Unicode subscripts; handle actual numbers
35 |         if self.decomposedStringWithCanonicalMapping.contains(String.combiningAcuteAccent) {
36 |             return self.decomposedStringWithCanonicalMapping.replacingOccurrences(of: String.combiningAcuteAccent, with: "").appending("₂")
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:23:23: warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
   |                       |- warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'editorial' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:24:23: warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
   |                       |- warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:25:23: warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
   |                       |- warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:27:23: warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
   |                       |- warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damaged' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
29 |
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:26:23: warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
   |                       |- warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'superscript' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<CDLTextAttributes, CDLTextAttributes.FormattingValue>'; this is an error in the Swift 6 language mode
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:28:23: warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
   |                       |- warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damagedLogogram' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public init(rawValue: Int) {
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[24/30] Compiling CDKSwiftOracc CuneiformSignReading.swift
/host/spi-builder-workspace/Sources/CDKSwiftOracc/CDL Types/GraphemeDescription+Codable.swift:263:18: warning: Breakposition not implemented yet
261 |         }
262 |
263 |         #warning("Breakposition not implemented yet")
    |                  `- warning: Breakposition not implemented yet
264 |
265 |         if isLogogram {
[25/30] Compiling CDKSwiftOracc GraphemeDescription+Codable.swift
/host/spi-builder-workspace/Sources/CDKSwiftOracc/CDL Types/GraphemeDescription+Codable.swift:263:18: warning: Breakposition not implemented yet
261 |         }
262 |
263 |         #warning("Breakposition not implemented yet")
    |                  `- warning: Breakposition not implemented yet
264 |
265 |         if isLogogram {
[26/30] Compiling CDKSwiftOracc GraphemeDescription.swift
/host/spi-builder-workspace/Sources/CDKSwiftOracc/CDL Types/GraphemeDescription+Codable.swift:263:18: warning: Breakposition not implemented yet
261 |         }
262 |
263 |         #warning("Breakposition not implemented yet")
    |                  `- warning: Breakposition not implemented yet
264 |
265 |         if isLogogram {
[27/30] Compiling CDKSwiftOracc NodeReference.swift
/host/spi-builder-workspace/Sources/CDKSwiftOracc/CDL Types/GraphemeDescription+Codable.swift:263:18: warning: Breakposition not implemented yet
261 |         }
262 |
263 |         #warning("Breakposition not implemented yet")
    |                  `- warning: Breakposition not implemented yet
264 |
265 |         if isLogogram {
[28/30] Compiling CDKSwiftOracc NSAttributedStringFormatter.swift
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/Legacy/NSAttributedStringFormatter.swift:144:10: warning: Code handling 'damaged' and 'missing' signs is repetitive and needs to be tidied up
142 | }
143 |
144 | #warning("Code handling 'damaged' and 'missing' signs is repetitive and needs to be tidied up")
    |          `- warning: Code handling 'damaged' and 'missing' signs is repetitive and needs to be tidied up
145 | extension GraphemeDescription {
146 |      func transliterated() -> NSAttributedString {
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:25:23: warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
   |                       |- warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:27:23: warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
   |                       |- warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damaged' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
29 |
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:23:23: warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
   |                       |- warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'editorial' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:24:23: warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
   |                       |- warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:26:23: warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
   |                       |- warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'superscript' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:28:23: warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
   |                       |- warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damagedLogogram' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public init(rawValue: Int) {
[29/30] Compiling CDKSwiftOracc NSAttributedStringKey+OraccAttributes.swift
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/Legacy/NSAttributedStringFormatter.swift:144:10: warning: Code handling 'damaged' and 'missing' signs is repetitive and needs to be tidied up
142 | }
143 |
144 | #warning("Code handling 'damaged' and 'missing' signs is repetitive and needs to be tidied up")
    |          `- warning: Code handling 'damaged' and 'missing' signs is repetitive and needs to be tidied up
145 | extension GraphemeDescription {
146 |      func transliterated() -> NSAttributedString {
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:25:23: warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
   |                       |- warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:27:23: warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
   |                       |- warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damaged' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
29 |
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:23:23: warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
   |                       |- warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'editorial' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:24:23: warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
   |                       |- warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:26:23: warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
   |                       |- warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'superscript' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:28:23: warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
   |                       |- warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damagedLogogram' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public init(rawValue: Int) {
[30/30] Compiling CDKSwiftOracc OraccAttributedString.swift
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/Legacy/NSAttributedStringFormatter.swift:144:10: warning: Code handling 'damaged' and 'missing' signs is repetitive and needs to be tidied up
142 | }
143 |
144 | #warning("Code handling 'damaged' and 'missing' signs is repetitive and needs to be tidied up")
    |          `- warning: Code handling 'damaged' and 'missing' signs is repetitive and needs to be tidied up
145 | extension GraphemeDescription {
146 |      func transliterated() -> NSAttributedString {
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:25:23: warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
   |                       |- warning: static property 'italic' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:27:23: warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
   |                       |- warning: static property 'damaged' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damaged' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
29 |
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:23:23: warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
   |                       |- warning: static property 'editorial' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'editorial' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:24:23: warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
23 |     public static let editorial = TextEditionFormatting(rawValue: 1 << 0)
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
   |                       |- warning: static property 'bold' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:26:23: warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
24 |     public static let bold = TextEditionFormatting(rawValue: 1 << 1)
25 |     public static let italic = TextEditionFormatting(rawValue: 1 << 2)
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
   |                       |- warning: static property 'superscript' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'superscript' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
/host/spi-builder-workspace/Sources/CDKSwiftOracc/TextEdition/TextEditionFormatting.swift:28:23: warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | /// Provides formatting hints
20 | public struct TextEditionFormatting: OptionSet, Hashable, Codable {
   |               `- note: consider making struct 'TextEditionFormatting' conform to the 'Sendable' protocol
21 |     public let rawValue: Int
22 |
   :
26 |     public static let superscript = TextEditionFormatting(rawValue: 1 << 3)
27 |     public static let damaged = TextEditionFormatting(rawValue: 1 << 4)
28 |     public static let damagedLogogram = TextEditionFormatting(rawValue: 1 << 5)
   |                       |- warning: static property 'damagedLogogram' is not concurrency-safe because non-'Sendable' type 'TextEditionFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'damagedLogogram' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public init(rawValue: Int) {
Build complete! (17.19s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CDKSwiftOracc",
  "name" : "CDKSwiftOracc",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    },
    {
      "name" : "watchos",
      "version" : "2.0"
    }
  ],
  "products" : [
    {
      "name" : "CDKSwiftOracc",
      "targets" : [
        "CDKSwiftOracc"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CDKSwiftOraccTests",
      "module_type" : "SwiftTarget",
      "name" : "CDKSwiftOraccTests",
      "path" : "Tests/CDKSwiftOraccTests",
      "sources" : [
        "CDKSwiftOraccAppKitTests.swift",
        "CDKSwiftOraccTests.swift",
        "P334176.swift",
        "saa01_catalogue.swift",
        "saa01_glossary.swift"
      ],
      "target_dependencies" : [
        "CDKSwiftOracc"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CDKSwiftOracc",
      "module_type" : "SwiftTarget",
      "name" : "CDKSwiftOracc",
      "path" : "Sources/CDKSwiftOracc",
      "product_memberships" : [
        "CDKSwiftOracc"
      ],
      "sources" : [
        "CDL Types/CuneiformSignReading.swift",
        "CDL Types/GraphemeDescription+Codable.swift",
        "CDL Types/GraphemeDescription.swift",
        "CDL Types/NodeReference.swift",
        "CDL Types/OraccCDLNode+Codable.swift",
        "CDL Types/OraccCDLNode+ExtendedAttributes.swift",
        "CDL Types/OraccCDLNode.swift",
        "CDL Types/OraccWordForm.swift",
        "Catalog/OraccCatalog.swift",
        "Catalog/OraccCatalogueEntry+Codable.swift",
        "Catalog/OraccCatalogueEntry.swift",
        "Catalog/TextID.swift",
        "Catalog/TextSearchCollection.swift",
        "Catalog/TextSetProtocol.swift",
        "Glossary/OraccGlossary.swift",
        "Glossary/OraccLanguages.swift",
        "Glossary/XISReference.swift",
        "Sign Lists/Cuneifier.swift",
        "Sign Lists/OraccGlobalSignList.swift",
        "Sign Lists/String+CuneiformHelpers.swift",
        "TextEdition/AttributedStringFormatter.swift",
        "TextEdition/Legacy/NSAttributedStringFormatter.swift",
        "TextEdition/Legacy/NSAttributedStringKey+OraccAttributes.swift",
        "TextEdition/OraccAttributedString.swift",
        "TextEdition/OraccHTML5Formatter.swift",
        "TextEdition/OraccTextEdition.swift",
        "TextEdition/TextEditionFormatting.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.