The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Yosina, reference main (7bbb83), with Swift 6.1 for Wasm on 21 Apr 2026 07:03:52 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/yosina-lib/yosina-swift.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/yosina-lib/yosina-swift
 * branch            refs/main  -> FETCH_HEAD
HEAD is now at 7bbb834 Initial.
Cloned https://github.com/yosina-lib/yosina-swift.git
Revision (git rev-parse @):
7bbb8345740f6e5977f2d6de44d71bf5d1057527
SUCCESS checkout https://github.com/yosina-lib/yosina-swift.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/yosina-lib/yosina-swift.git
https://github.com/yosina-lib/yosina-swift.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:276d66a16377d3ee059b2e3429cbc1154d9f01e42871e5d702fd5d8b9044d93d
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest
Building for debugging...
[0/3] Write sources
[1/3] Copying ivs_svs_base.data
[2/3] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/24] Emitting module Yosina
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:10:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// Options for full-width conversion.
  6 | public struct ToFullwidthOptions {
    |               `- note: consider making struct 'ToFullwidthOptions' conform to the 'Sendable' protocol
  7 |     public let enabled: Bool
  8 |     public let u005cAsYenSign: Bool
  9 |
 10 |     public static let disabled = ToFullwidthOptions(enabled: false, u005cAsYenSign: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |     public static let enabled = ToFullwidthOptions(enabled: true, u005cAsYenSign: false)
 12 |     public static let u005cAsYenSign = ToFullwidthOptions(enabled: true, u005cAsYenSign: true)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:11:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// Options for full-width conversion.
  6 | public struct ToFullwidthOptions {
    |               `- note: consider making struct 'ToFullwidthOptions' conform to the 'Sendable' protocol
  7 |     public let enabled: Bool
  8 |     public let u005cAsYenSign: Bool
  9 |
 10 |     public static let disabled = ToFullwidthOptions(enabled: false, u005cAsYenSign: false)
 11 |     public static let enabled = ToFullwidthOptions(enabled: true, u005cAsYenSign: false)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |     public static let u005cAsYenSign = ToFullwidthOptions(enabled: true, u005cAsYenSign: true)
 13 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:12:23: warning: static property 'u005cAsYenSign' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// Options for full-width conversion.
  6 | public struct ToFullwidthOptions {
    |               `- note: consider making struct 'ToFullwidthOptions' conform to the 'Sendable' protocol
  7 |     public let enabled: Bool
  8 |     public let u005cAsYenSign: Bool
    :
 10 |     public static let disabled = ToFullwidthOptions(enabled: false, u005cAsYenSign: false)
 11 |     public static let enabled = ToFullwidthOptions(enabled: true, u005cAsYenSign: false)
 12 |     public static let u005cAsYenSign = ToFullwidthOptions(enabled: true, u005cAsYenSign: true)
    |                       |- warning: static property 'u005cAsYenSign' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'u005cAsYenSign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |
 14 |     public var isEnabled: Bool { enabled }
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:32:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | /// Options for half-width conversion.
 28 | public struct ToHalfwidthOptions {
    |               `- note: consider making struct 'ToHalfwidthOptions' conform to the 'Sendable' protocol
 29 |     public let enabled: Bool
 30 |     public let hankakuKana: Bool
 31 |
 32 |     public static let disabled = ToHalfwidthOptions(enabled: false, hankakuKana: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     public static let enabled = ToHalfwidthOptions(enabled: true, hankakuKana: false)
 34 |     public static let hankakuKana = ToHalfwidthOptions(enabled: true, hankakuKana: true)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:33:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | /// Options for half-width conversion.
 28 | public struct ToHalfwidthOptions {
    |               `- note: consider making struct 'ToHalfwidthOptions' conform to the 'Sendable' protocol
 29 |     public let enabled: Bool
 30 |     public let hankakuKana: Bool
 31 |
 32 |     public static let disabled = ToHalfwidthOptions(enabled: false, hankakuKana: false)
 33 |     public static let enabled = ToHalfwidthOptions(enabled: true, hankakuKana: false)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |     public static let hankakuKana = ToHalfwidthOptions(enabled: true, hankakuKana: true)
 35 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:34:23: warning: static property 'hankakuKana' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | /// Options for half-width conversion.
 28 | public struct ToHalfwidthOptions {
    |               `- note: consider making struct 'ToHalfwidthOptions' conform to the 'Sendable' protocol
 29 |     public let enabled: Bool
 30 |     public let hankakuKana: Bool
    :
 32 |     public static let disabled = ToHalfwidthOptions(enabled: false, hankakuKana: false)
 33 |     public static let enabled = ToHalfwidthOptions(enabled: true, hankakuKana: false)
 34 |     public static let hankakuKana = ToHalfwidthOptions(enabled: true, hankakuKana: true)
    |                       |- warning: static property 'hankakuKana' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'hankakuKana' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     public var isEnabled: Bool { enabled }
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:54:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | /// Options for IVS/SVS removal.
 50 | public struct RemoveIvsSvsOptions {
    |               `- note: consider making struct 'RemoveIvsSvsOptions' conform to the 'Sendable' protocol
 51 |     public let enabled: Bool
 52 |     public let dropAllSelectors: Bool
 53 |
 54 |     public static let disabled = RemoveIvsSvsOptions(enabled: false, dropAllSelectors: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |     public static let enabled = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: false)
 56 |     public static let dropAllSelectors = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: true)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:55:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | /// Options for IVS/SVS removal.
 50 | public struct RemoveIvsSvsOptions {
    |               `- note: consider making struct 'RemoveIvsSvsOptions' conform to the 'Sendable' protocol
 51 |     public let enabled: Bool
 52 |     public let dropAllSelectors: Bool
 53 |
 54 |     public static let disabled = RemoveIvsSvsOptions(enabled: false, dropAllSelectors: false)
 55 |     public static let enabled = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: false)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     public static let dropAllSelectors = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: true)
 57 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:56:23: warning: static property 'dropAllSelectors' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | /// Options for IVS/SVS removal.
 50 | public struct RemoveIvsSvsOptions {
    |               `- note: consider making struct 'RemoveIvsSvsOptions' conform to the 'Sendable' protocol
 51 |     public let enabled: Bool
 52 |     public let dropAllSelectors: Bool
    :
 54 |     public static let disabled = RemoveIvsSvsOptions(enabled: false, dropAllSelectors: false)
 55 |     public static let enabled = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: false)
 56 |     public static let dropAllSelectors = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: true)
    |                       |- warning: static property 'dropAllSelectors' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'dropAllSelectors' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 |
 58 |     public var isEnabled: Bool { enabled }
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:76:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 70 |
 71 | /// Options for hyphens replacement.
 72 | public struct ReplaceHyphensOptions {
    |               `- note: consider making struct 'ReplaceHyphensOptions' conform to the 'Sendable' protocol
 73 |     public let enabled: Bool
 74 |     public let precedence: [HyphensTransliterator.Precedence]?
 75 |
 76 |     public static let disabled = ReplaceHyphensOptions(enabled: false, precedence: nil)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |     public static let enabled = ReplaceHyphensOptions(
 78 |         enabled: true,
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:77:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 70 |
 71 | /// Options for hyphens replacement.
 72 | public struct ReplaceHyphensOptions {
    |               `- note: consider making struct 'ReplaceHyphensOptions' conform to the 'Sendable' protocol
 73 |     public let enabled: Bool
 74 |     public let precedence: [HyphensTransliterator.Precedence]?
 75 |
 76 |     public static let disabled = ReplaceHyphensOptions(enabled: false, precedence: nil)
 77 |     public static let enabled = ReplaceHyphensOptions(
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         enabled: true,
 79 |         precedence: [.jisx0208_90_windows, .jisx0201]
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:103:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 | /// Options for circled or squared characters replacement.
 99 | public struct ReplaceCircledOrSquaredCharactersOptions {
    |               `- note: consider making struct 'ReplaceCircledOrSquaredCharactersOptions' conform to the 'Sendable' protocol
100 |     public let enabled: Bool
101 |     public let includeEmojis: Bool
102 |
103 |     public static let disabled = ReplaceCircledOrSquaredCharactersOptions(enabled: false, includeEmojis: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 |     public static let enabled = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: true)
105 |     public static let excludeEmojis = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: false)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:104:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 | /// Options for circled or squared characters replacement.
 99 | public struct ReplaceCircledOrSquaredCharactersOptions {
    |               `- note: consider making struct 'ReplaceCircledOrSquaredCharactersOptions' conform to the 'Sendable' protocol
100 |     public let enabled: Bool
101 |     public let includeEmojis: Bool
102 |
103 |     public static let disabled = ReplaceCircledOrSquaredCharactersOptions(enabled: false, includeEmojis: false)
104 |     public static let enabled = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: true)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |     public static let excludeEmojis = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: false)
106 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:105:23: warning: static property 'excludeEmojis' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 | /// Options for circled or squared characters replacement.
 99 | public struct ReplaceCircledOrSquaredCharactersOptions {
    |               `- note: consider making struct 'ReplaceCircledOrSquaredCharactersOptions' conform to the 'Sendable' protocol
100 |     public let enabled: Bool
101 |     public let includeEmojis: Bool
    :
103 |     public static let disabled = ReplaceCircledOrSquaredCharactersOptions(enabled: false, includeEmojis: false)
104 |     public static let enabled = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: true)
105 |     public static let excludeEmojis = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: false)
    |                       |- warning: static property 'excludeEmojis' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'excludeEmojis' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |
107 |     public var isEnabled: Bool { enabled }
/host/spi-builder-workspace/Sources/Yosina/Transliterators/HiraKataTransliterator.swift:22:24: warning: static property 'hiraToKataCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 20 |
 21 |     // Static cache for mapping tables
 22 |     private static var hiraToKataCache: [Character: Character]?
    |                        |- warning: static property 'hiraToKataCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hiraToKataCache' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hiraToKataCache' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |     private static var kataToHiraCache: [Character: Character]?
 24 |
/host/spi-builder-workspace/Sources/Yosina/Transliterators/HiraKataTransliterator.swift:23:24: warning: static property 'kataToHiraCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 21 |     // Static cache for mapping tables
 22 |     private static var hiraToKataCache: [Character: Character]?
 23 |     private static var kataToHiraCache: [Character: Character]?
    |                        |- warning: static property 'kataToHiraCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'kataToHiraCache' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'kataToHiraCache' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |
 25 |     public init(options: Options = Options()) {
/host/spi-builder-workspace/Sources/Yosina/Transliterators/IvsSvsBaseTransliterator.swift:36:24: warning: static property '_mappings' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 34 |
 35 |     // Lazy loaded mappings
 36 |     private static var _mappings: MappingData?
    |                        |- warning: static property '_mappings' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_mappings' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property '_mappings' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     private static let mappingsQueue = DispatchQueue(label: "com.yosina.ivs-svs-mappings")
 38 |
/host/spi-builder-workspace/Sources/Yosina/Transliterators/IvsSvsBaseTransliterator.swift:37:40: error: cannot find 'DispatchQueue' in scope
 35 |     // Lazy loaded mappings
 36 |     private static var _mappings: MappingData?
 37 |     private static let mappingsQueue = DispatchQueue(label: "com.yosina.ivs-svs-mappings")
    |                                        `- error: cannot find 'DispatchQueue' in scope
 38 |
 39 |     private struct IvsSvsBaseRecord {
[5/26] Compiling Yosina SpacesTransliterator.swift
[6/26] Compiling Yosina resource_bundle_accessor.swift
[7/26] Compiling Yosina ProlongedSoundMarksTransliterator.swift
[8/26] Compiling Yosina RadicalsTransliterator.swift
[9/26] Compiling Yosina IdeographicAnnotationsTransliterator.swift
/host/spi-builder-workspace/Sources/Yosina/Transliterators/IvsSvsBaseTransliterator.swift:36:24: warning: static property '_mappings' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 34 |
 35 |     // Lazy loaded mappings
 36 |     private static var _mappings: MappingData?
    |                        |- warning: static property '_mappings' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_mappings' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property '_mappings' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     private static let mappingsQueue = DispatchQueue(label: "com.yosina.ivs-svs-mappings")
 38 |
/host/spi-builder-workspace/Sources/Yosina/Transliterators/IvsSvsBaseTransliterator.swift:37:40: error: cannot find 'DispatchQueue' in scope
 35 |     // Lazy loaded mappings
 36 |     private static var _mappings: MappingData?
 37 |     private static let mappingsQueue = DispatchQueue(label: "com.yosina.ivs-svs-mappings")
    |                                        `- error: cannot find 'DispatchQueue' in scope
 38 |
 39 |     private struct IvsSvsBaseRecord {
[10/26] Compiling Yosina IvsSvsBaseTransliterator.swift
/host/spi-builder-workspace/Sources/Yosina/Transliterators/IvsSvsBaseTransliterator.swift:36:24: warning: static property '_mappings' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 34 |
 35 |     // Lazy loaded mappings
 36 |     private static var _mappings: MappingData?
    |                        |- warning: static property '_mappings' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_mappings' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property '_mappings' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     private static let mappingsQueue = DispatchQueue(label: "com.yosina.ivs-svs-mappings")
 38 |
/host/spi-builder-workspace/Sources/Yosina/Transliterators/IvsSvsBaseTransliterator.swift:37:40: error: cannot find 'DispatchQueue' in scope
 35 |     // Lazy loaded mappings
 36 |     private static var _mappings: MappingData?
 37 |     private static let mappingsQueue = DispatchQueue(label: "com.yosina.ivs-svs-mappings")
    |                                        `- error: cannot find 'DispatchQueue' in scope
 38 |
 39 |     private struct IvsSvsBaseRecord {
[11/26] Compiling Yosina JapaneseIterationMarksTransliterator.swift
/host/spi-builder-workspace/Sources/Yosina/Transliterators/IvsSvsBaseTransliterator.swift:36:24: warning: static property '_mappings' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 34 |
 35 |     // Lazy loaded mappings
 36 |     private static var _mappings: MappingData?
    |                        |- warning: static property '_mappings' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_mappings' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property '_mappings' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     private static let mappingsQueue = DispatchQueue(label: "com.yosina.ivs-svs-mappings")
 38 |
/host/spi-builder-workspace/Sources/Yosina/Transliterators/IvsSvsBaseTransliterator.swift:37:40: error: cannot find 'DispatchQueue' in scope
 35 |     // Lazy loaded mappings
 36 |     private static var _mappings: MappingData?
 37 |     private static let mappingsQueue = DispatchQueue(label: "com.yosina.ivs-svs-mappings")
    |                                        `- error: cannot find 'DispatchQueue' in scope
 38 |
 39 |     private struct IvsSvsBaseRecord {
[12/26] Compiling Yosina TransliteratorConfig.swift
[13/26] Compiling Yosina TransliteratorExtension.swift
[14/26] Compiling Yosina TransliteratorProtocol.swift
[15/26] Compiling Yosina CircledOrSquaredTransliterator.swift
[16/26] Compiling Yosina CombinedTransliterator.swift
[17/26] Compiling Yosina HiraKataCompositionTransliterator.swift
[18/26] Compiling Yosina HiraKataTable.swift
/host/spi-builder-workspace/Sources/Yosina/Transliterators/HiraKataTransliterator.swift:22:24: warning: static property 'hiraToKataCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 20 |
 21 |     // Static cache for mapping tables
 22 |     private static var hiraToKataCache: [Character: Character]?
    |                        |- warning: static property 'hiraToKataCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hiraToKataCache' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hiraToKataCache' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |     private static var kataToHiraCache: [Character: Character]?
 24 |
/host/spi-builder-workspace/Sources/Yosina/Transliterators/HiraKataTransliterator.swift:23:24: warning: static property 'kataToHiraCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 21 |     // Static cache for mapping tables
 22 |     private static var hiraToKataCache: [Character: Character]?
 23 |     private static var kataToHiraCache: [Character: Character]?
    |                        |- warning: static property 'kataToHiraCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'kataToHiraCache' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'kataToHiraCache' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |
 25 |     public init(options: Options = Options()) {
[19/26] Compiling Yosina HiraKataTransliterator.swift
/host/spi-builder-workspace/Sources/Yosina/Transliterators/HiraKataTransliterator.swift:22:24: warning: static property 'hiraToKataCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 20 |
 21 |     // Static cache for mapping tables
 22 |     private static var hiraToKataCache: [Character: Character]?
    |                        |- warning: static property 'hiraToKataCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hiraToKataCache' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hiraToKataCache' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |     private static var kataToHiraCache: [Character: Character]?
 24 |
/host/spi-builder-workspace/Sources/Yosina/Transliterators/HiraKataTransliterator.swift:23:24: warning: static property 'kataToHiraCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 21 |     // Static cache for mapping tables
 22 |     private static var hiraToKataCache: [Character: Character]?
 23 |     private static var kataToHiraCache: [Character: Character]?
    |                        |- warning: static property 'kataToHiraCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'kataToHiraCache' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'kataToHiraCache' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |
 25 |     public init(options: Options = Options()) {
[20/26] Compiling Yosina HyphensTransliterator.swift
/host/spi-builder-workspace/Sources/Yosina/Transliterators/HiraKataTransliterator.swift:22:24: warning: static property 'hiraToKataCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 20 |
 21 |     // Static cache for mapping tables
 22 |     private static var hiraToKataCache: [Character: Character]?
    |                        |- warning: static property 'hiraToKataCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hiraToKataCache' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hiraToKataCache' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |     private static var kataToHiraCache: [Character: Character]?
 24 |
/host/spi-builder-workspace/Sources/Yosina/Transliterators/HiraKataTransliterator.swift:23:24: warning: static property 'kataToHiraCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 21 |     // Static cache for mapping tables
 22 |     private static var hiraToKataCache: [Character: Character]?
 23 |     private static var kataToHiraCache: [Character: Character]?
    |                        |- warning: static property 'kataToHiraCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'kataToHiraCache' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'kataToHiraCache' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |
 25 |     public init(options: Options = Options()) {
[21/26] Compiling Yosina ChainedTransliterator.swift
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:10:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// Options for full-width conversion.
  6 | public struct ToFullwidthOptions {
    |               `- note: consider making struct 'ToFullwidthOptions' conform to the 'Sendable' protocol
  7 |     public let enabled: Bool
  8 |     public let u005cAsYenSign: Bool
  9 |
 10 |     public static let disabled = ToFullwidthOptions(enabled: false, u005cAsYenSign: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |     public static let enabled = ToFullwidthOptions(enabled: true, u005cAsYenSign: false)
 12 |     public static let u005cAsYenSign = ToFullwidthOptions(enabled: true, u005cAsYenSign: true)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:11:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// Options for full-width conversion.
  6 | public struct ToFullwidthOptions {
    |               `- note: consider making struct 'ToFullwidthOptions' conform to the 'Sendable' protocol
  7 |     public let enabled: Bool
  8 |     public let u005cAsYenSign: Bool
  9 |
 10 |     public static let disabled = ToFullwidthOptions(enabled: false, u005cAsYenSign: false)
 11 |     public static let enabled = ToFullwidthOptions(enabled: true, u005cAsYenSign: false)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |     public static let u005cAsYenSign = ToFullwidthOptions(enabled: true, u005cAsYenSign: true)
 13 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:12:23: warning: static property 'u005cAsYenSign' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// Options for full-width conversion.
  6 | public struct ToFullwidthOptions {
    |               `- note: consider making struct 'ToFullwidthOptions' conform to the 'Sendable' protocol
  7 |     public let enabled: Bool
  8 |     public let u005cAsYenSign: Bool
    :
 10 |     public static let disabled = ToFullwidthOptions(enabled: false, u005cAsYenSign: false)
 11 |     public static let enabled = ToFullwidthOptions(enabled: true, u005cAsYenSign: false)
 12 |     public static let u005cAsYenSign = ToFullwidthOptions(enabled: true, u005cAsYenSign: true)
    |                       |- warning: static property 'u005cAsYenSign' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'u005cAsYenSign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |
 14 |     public var isEnabled: Bool { enabled }
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:32:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | /// Options for half-width conversion.
 28 | public struct ToHalfwidthOptions {
    |               `- note: consider making struct 'ToHalfwidthOptions' conform to the 'Sendable' protocol
 29 |     public let enabled: Bool
 30 |     public let hankakuKana: Bool
 31 |
 32 |     public static let disabled = ToHalfwidthOptions(enabled: false, hankakuKana: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     public static let enabled = ToHalfwidthOptions(enabled: true, hankakuKana: false)
 34 |     public static let hankakuKana = ToHalfwidthOptions(enabled: true, hankakuKana: true)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:33:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | /// Options for half-width conversion.
 28 | public struct ToHalfwidthOptions {
    |               `- note: consider making struct 'ToHalfwidthOptions' conform to the 'Sendable' protocol
 29 |     public let enabled: Bool
 30 |     public let hankakuKana: Bool
 31 |
 32 |     public static let disabled = ToHalfwidthOptions(enabled: false, hankakuKana: false)
 33 |     public static let enabled = ToHalfwidthOptions(enabled: true, hankakuKana: false)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |     public static let hankakuKana = ToHalfwidthOptions(enabled: true, hankakuKana: true)
 35 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:34:23: warning: static property 'hankakuKana' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | /// Options for half-width conversion.
 28 | public struct ToHalfwidthOptions {
    |               `- note: consider making struct 'ToHalfwidthOptions' conform to the 'Sendable' protocol
 29 |     public let enabled: Bool
 30 |     public let hankakuKana: Bool
    :
 32 |     public static let disabled = ToHalfwidthOptions(enabled: false, hankakuKana: false)
 33 |     public static let enabled = ToHalfwidthOptions(enabled: true, hankakuKana: false)
 34 |     public static let hankakuKana = ToHalfwidthOptions(enabled: true, hankakuKana: true)
    |                       |- warning: static property 'hankakuKana' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'hankakuKana' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     public var isEnabled: Bool { enabled }
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:54:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | /// Options for IVS/SVS removal.
 50 | public struct RemoveIvsSvsOptions {
    |               `- note: consider making struct 'RemoveIvsSvsOptions' conform to the 'Sendable' protocol
 51 |     public let enabled: Bool
 52 |     public let dropAllSelectors: Bool
 53 |
 54 |     public static let disabled = RemoveIvsSvsOptions(enabled: false, dropAllSelectors: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |     public static let enabled = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: false)
 56 |     public static let dropAllSelectors = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: true)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:55:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | /// Options for IVS/SVS removal.
 50 | public struct RemoveIvsSvsOptions {
    |               `- note: consider making struct 'RemoveIvsSvsOptions' conform to the 'Sendable' protocol
 51 |     public let enabled: Bool
 52 |     public let dropAllSelectors: Bool
 53 |
 54 |     public static let disabled = RemoveIvsSvsOptions(enabled: false, dropAllSelectors: false)
 55 |     public static let enabled = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: false)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     public static let dropAllSelectors = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: true)
 57 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:56:23: warning: static property 'dropAllSelectors' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | /// Options for IVS/SVS removal.
 50 | public struct RemoveIvsSvsOptions {
    |               `- note: consider making struct 'RemoveIvsSvsOptions' conform to the 'Sendable' protocol
 51 |     public let enabled: Bool
 52 |     public let dropAllSelectors: Bool
    :
 54 |     public static let disabled = RemoveIvsSvsOptions(enabled: false, dropAllSelectors: false)
 55 |     public static let enabled = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: false)
 56 |     public static let dropAllSelectors = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: true)
    |                       |- warning: static property 'dropAllSelectors' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'dropAllSelectors' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 |
 58 |     public var isEnabled: Bool { enabled }
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:76:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 70 |
 71 | /// Options for hyphens replacement.
 72 | public struct ReplaceHyphensOptions {
    |               `- note: consider making struct 'ReplaceHyphensOptions' conform to the 'Sendable' protocol
 73 |     public let enabled: Bool
 74 |     public let precedence: [HyphensTransliterator.Precedence]?
 75 |
 76 |     public static let disabled = ReplaceHyphensOptions(enabled: false, precedence: nil)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |     public static let enabled = ReplaceHyphensOptions(
 78 |         enabled: true,
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:77:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 70 |
 71 | /// Options for hyphens replacement.
 72 | public struct ReplaceHyphensOptions {
    |               `- note: consider making struct 'ReplaceHyphensOptions' conform to the 'Sendable' protocol
 73 |     public let enabled: Bool
 74 |     public let precedence: [HyphensTransliterator.Precedence]?
 75 |
 76 |     public static let disabled = ReplaceHyphensOptions(enabled: false, precedence: nil)
 77 |     public static let enabled = ReplaceHyphensOptions(
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         enabled: true,
 79 |         precedence: [.jisx0208_90_windows, .jisx0201]
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:103:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 | /// Options for circled or squared characters replacement.
 99 | public struct ReplaceCircledOrSquaredCharactersOptions {
    |               `- note: consider making struct 'ReplaceCircledOrSquaredCharactersOptions' conform to the 'Sendable' protocol
100 |     public let enabled: Bool
101 |     public let includeEmojis: Bool
102 |
103 |     public static let disabled = ReplaceCircledOrSquaredCharactersOptions(enabled: false, includeEmojis: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 |     public static let enabled = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: true)
105 |     public static let excludeEmojis = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: false)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:104:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 | /// Options for circled or squared characters replacement.
 99 | public struct ReplaceCircledOrSquaredCharactersOptions {
    |               `- note: consider making struct 'ReplaceCircledOrSquaredCharactersOptions' conform to the 'Sendable' protocol
100 |     public let enabled: Bool
101 |     public let includeEmojis: Bool
102 |
103 |     public static let disabled = ReplaceCircledOrSquaredCharactersOptions(enabled: false, includeEmojis: false)
104 |     public static let enabled = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: true)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |     public static let excludeEmojis = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: false)
106 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:105:23: warning: static property 'excludeEmojis' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 | /// Options for circled or squared characters replacement.
 99 | public struct ReplaceCircledOrSquaredCharactersOptions {
    |               `- note: consider making struct 'ReplaceCircledOrSquaredCharactersOptions' conform to the 'Sendable' protocol
100 |     public let enabled: Bool
101 |     public let includeEmojis: Bool
    :
103 |     public static let disabled = ReplaceCircledOrSquaredCharactersOptions(enabled: false, includeEmojis: false)
104 |     public static let enabled = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: true)
105 |     public static let excludeEmojis = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: false)
    |                       |- warning: static property 'excludeEmojis' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'excludeEmojis' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |
107 |     public var isEnabled: Bool { enabled }
[22/26] Compiling Yosina TransliterationRecipe.swift
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:10:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// Options for full-width conversion.
  6 | public struct ToFullwidthOptions {
    |               `- note: consider making struct 'ToFullwidthOptions' conform to the 'Sendable' protocol
  7 |     public let enabled: Bool
  8 |     public let u005cAsYenSign: Bool
  9 |
 10 |     public static let disabled = ToFullwidthOptions(enabled: false, u005cAsYenSign: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |     public static let enabled = ToFullwidthOptions(enabled: true, u005cAsYenSign: false)
 12 |     public static let u005cAsYenSign = ToFullwidthOptions(enabled: true, u005cAsYenSign: true)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:11:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// Options for full-width conversion.
  6 | public struct ToFullwidthOptions {
    |               `- note: consider making struct 'ToFullwidthOptions' conform to the 'Sendable' protocol
  7 |     public let enabled: Bool
  8 |     public let u005cAsYenSign: Bool
  9 |
 10 |     public static let disabled = ToFullwidthOptions(enabled: false, u005cAsYenSign: false)
 11 |     public static let enabled = ToFullwidthOptions(enabled: true, u005cAsYenSign: false)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |     public static let u005cAsYenSign = ToFullwidthOptions(enabled: true, u005cAsYenSign: true)
 13 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:12:23: warning: static property 'u005cAsYenSign' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// Options for full-width conversion.
  6 | public struct ToFullwidthOptions {
    |               `- note: consider making struct 'ToFullwidthOptions' conform to the 'Sendable' protocol
  7 |     public let enabled: Bool
  8 |     public let u005cAsYenSign: Bool
    :
 10 |     public static let disabled = ToFullwidthOptions(enabled: false, u005cAsYenSign: false)
 11 |     public static let enabled = ToFullwidthOptions(enabled: true, u005cAsYenSign: false)
 12 |     public static let u005cAsYenSign = ToFullwidthOptions(enabled: true, u005cAsYenSign: true)
    |                       |- warning: static property 'u005cAsYenSign' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'u005cAsYenSign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |
 14 |     public var isEnabled: Bool { enabled }
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:32:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | /// Options for half-width conversion.
 28 | public struct ToHalfwidthOptions {
    |               `- note: consider making struct 'ToHalfwidthOptions' conform to the 'Sendable' protocol
 29 |     public let enabled: Bool
 30 |     public let hankakuKana: Bool
 31 |
 32 |     public static let disabled = ToHalfwidthOptions(enabled: false, hankakuKana: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     public static let enabled = ToHalfwidthOptions(enabled: true, hankakuKana: false)
 34 |     public static let hankakuKana = ToHalfwidthOptions(enabled: true, hankakuKana: true)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:33:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | /// Options for half-width conversion.
 28 | public struct ToHalfwidthOptions {
    |               `- note: consider making struct 'ToHalfwidthOptions' conform to the 'Sendable' protocol
 29 |     public let enabled: Bool
 30 |     public let hankakuKana: Bool
 31 |
 32 |     public static let disabled = ToHalfwidthOptions(enabled: false, hankakuKana: false)
 33 |     public static let enabled = ToHalfwidthOptions(enabled: true, hankakuKana: false)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |     public static let hankakuKana = ToHalfwidthOptions(enabled: true, hankakuKana: true)
 35 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:34:23: warning: static property 'hankakuKana' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | /// Options for half-width conversion.
 28 | public struct ToHalfwidthOptions {
    |               `- note: consider making struct 'ToHalfwidthOptions' conform to the 'Sendable' protocol
 29 |     public let enabled: Bool
 30 |     public let hankakuKana: Bool
    :
 32 |     public static let disabled = ToHalfwidthOptions(enabled: false, hankakuKana: false)
 33 |     public static let enabled = ToHalfwidthOptions(enabled: true, hankakuKana: false)
 34 |     public static let hankakuKana = ToHalfwidthOptions(enabled: true, hankakuKana: true)
    |                       |- warning: static property 'hankakuKana' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'hankakuKana' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     public var isEnabled: Bool { enabled }
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:54:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | /// Options for IVS/SVS removal.
 50 | public struct RemoveIvsSvsOptions {
    |               `- note: consider making struct 'RemoveIvsSvsOptions' conform to the 'Sendable' protocol
 51 |     public let enabled: Bool
 52 |     public let dropAllSelectors: Bool
 53 |
 54 |     public static let disabled = RemoveIvsSvsOptions(enabled: false, dropAllSelectors: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |     public static let enabled = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: false)
 56 |     public static let dropAllSelectors = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: true)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:55:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | /// Options for IVS/SVS removal.
 50 | public struct RemoveIvsSvsOptions {
    |               `- note: consider making struct 'RemoveIvsSvsOptions' conform to the 'Sendable' protocol
 51 |     public let enabled: Bool
 52 |     public let dropAllSelectors: Bool
 53 |
 54 |     public static let disabled = RemoveIvsSvsOptions(enabled: false, dropAllSelectors: false)
 55 |     public static let enabled = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: false)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     public static let dropAllSelectors = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: true)
 57 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:56:23: warning: static property 'dropAllSelectors' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | /// Options for IVS/SVS removal.
 50 | public struct RemoveIvsSvsOptions {
    |               `- note: consider making struct 'RemoveIvsSvsOptions' conform to the 'Sendable' protocol
 51 |     public let enabled: Bool
 52 |     public let dropAllSelectors: Bool
    :
 54 |     public static let disabled = RemoveIvsSvsOptions(enabled: false, dropAllSelectors: false)
 55 |     public static let enabled = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: false)
 56 |     public static let dropAllSelectors = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: true)
    |                       |- warning: static property 'dropAllSelectors' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'dropAllSelectors' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 |
 58 |     public var isEnabled: Bool { enabled }
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:76:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 70 |
 71 | /// Options for hyphens replacement.
 72 | public struct ReplaceHyphensOptions {
    |               `- note: consider making struct 'ReplaceHyphensOptions' conform to the 'Sendable' protocol
 73 |     public let enabled: Bool
 74 |     public let precedence: [HyphensTransliterator.Precedence]?
 75 |
 76 |     public static let disabled = ReplaceHyphensOptions(enabled: false, precedence: nil)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |     public static let enabled = ReplaceHyphensOptions(
 78 |         enabled: true,
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:77:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 70 |
 71 | /// Options for hyphens replacement.
 72 | public struct ReplaceHyphensOptions {
    |               `- note: consider making struct 'ReplaceHyphensOptions' conform to the 'Sendable' protocol
 73 |     public let enabled: Bool
 74 |     public let precedence: [HyphensTransliterator.Precedence]?
 75 |
 76 |     public static let disabled = ReplaceHyphensOptions(enabled: false, precedence: nil)
 77 |     public static let enabled = ReplaceHyphensOptions(
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         enabled: true,
 79 |         precedence: [.jisx0208_90_windows, .jisx0201]
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:103:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 | /// Options for circled or squared characters replacement.
 99 | public struct ReplaceCircledOrSquaredCharactersOptions {
    |               `- note: consider making struct 'ReplaceCircledOrSquaredCharactersOptions' conform to the 'Sendable' protocol
100 |     public let enabled: Bool
101 |     public let includeEmojis: Bool
102 |
103 |     public static let disabled = ReplaceCircledOrSquaredCharactersOptions(enabled: false, includeEmojis: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 |     public static let enabled = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: true)
105 |     public static let excludeEmojis = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: false)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:104:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 | /// Options for circled or squared characters replacement.
 99 | public struct ReplaceCircledOrSquaredCharactersOptions {
    |               `- note: consider making struct 'ReplaceCircledOrSquaredCharactersOptions' conform to the 'Sendable' protocol
100 |     public let enabled: Bool
101 |     public let includeEmojis: Bool
102 |
103 |     public static let disabled = ReplaceCircledOrSquaredCharactersOptions(enabled: false, includeEmojis: false)
104 |     public static let enabled = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: true)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |     public static let excludeEmojis = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: false)
106 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:105:23: warning: static property 'excludeEmojis' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 | /// Options for circled or squared characters replacement.
 99 | public struct ReplaceCircledOrSquaredCharactersOptions {
    |               `- note: consider making struct 'ReplaceCircledOrSquaredCharactersOptions' conform to the 'Sendable' protocol
100 |     public let enabled: Bool
101 |     public let includeEmojis: Bool
    :
103 |     public static let disabled = ReplaceCircledOrSquaredCharactersOptions(enabled: false, includeEmojis: false)
104 |     public static let enabled = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: true)
105 |     public static let excludeEmojis = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: false)
    |                       |- warning: static property 'excludeEmojis' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'excludeEmojis' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |
107 |     public var isEnabled: Bool { enabled }
[23/26] Compiling Yosina TransliteratorChar.swift
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:10:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// Options for full-width conversion.
  6 | public struct ToFullwidthOptions {
    |               `- note: consider making struct 'ToFullwidthOptions' conform to the 'Sendable' protocol
  7 |     public let enabled: Bool
  8 |     public let u005cAsYenSign: Bool
  9 |
 10 |     public static let disabled = ToFullwidthOptions(enabled: false, u005cAsYenSign: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |     public static let enabled = ToFullwidthOptions(enabled: true, u005cAsYenSign: false)
 12 |     public static let u005cAsYenSign = ToFullwidthOptions(enabled: true, u005cAsYenSign: true)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:11:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// Options for full-width conversion.
  6 | public struct ToFullwidthOptions {
    |               `- note: consider making struct 'ToFullwidthOptions' conform to the 'Sendable' protocol
  7 |     public let enabled: Bool
  8 |     public let u005cAsYenSign: Bool
  9 |
 10 |     public static let disabled = ToFullwidthOptions(enabled: false, u005cAsYenSign: false)
 11 |     public static let enabled = ToFullwidthOptions(enabled: true, u005cAsYenSign: false)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |     public static let u005cAsYenSign = ToFullwidthOptions(enabled: true, u005cAsYenSign: true)
 13 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:12:23: warning: static property 'u005cAsYenSign' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// Options for full-width conversion.
  6 | public struct ToFullwidthOptions {
    |               `- note: consider making struct 'ToFullwidthOptions' conform to the 'Sendable' protocol
  7 |     public let enabled: Bool
  8 |     public let u005cAsYenSign: Bool
    :
 10 |     public static let disabled = ToFullwidthOptions(enabled: false, u005cAsYenSign: false)
 11 |     public static let enabled = ToFullwidthOptions(enabled: true, u005cAsYenSign: false)
 12 |     public static let u005cAsYenSign = ToFullwidthOptions(enabled: true, u005cAsYenSign: true)
    |                       |- warning: static property 'u005cAsYenSign' is not concurrency-safe because non-'Sendable' type 'ToFullwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'u005cAsYenSign' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |
 14 |     public var isEnabled: Bool { enabled }
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:32:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | /// Options for half-width conversion.
 28 | public struct ToHalfwidthOptions {
    |               `- note: consider making struct 'ToHalfwidthOptions' conform to the 'Sendable' protocol
 29 |     public let enabled: Bool
 30 |     public let hankakuKana: Bool
 31 |
 32 |     public static let disabled = ToHalfwidthOptions(enabled: false, hankakuKana: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     public static let enabled = ToHalfwidthOptions(enabled: true, hankakuKana: false)
 34 |     public static let hankakuKana = ToHalfwidthOptions(enabled: true, hankakuKana: true)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:33:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | /// Options for half-width conversion.
 28 | public struct ToHalfwidthOptions {
    |               `- note: consider making struct 'ToHalfwidthOptions' conform to the 'Sendable' protocol
 29 |     public let enabled: Bool
 30 |     public let hankakuKana: Bool
 31 |
 32 |     public static let disabled = ToHalfwidthOptions(enabled: false, hankakuKana: false)
 33 |     public static let enabled = ToHalfwidthOptions(enabled: true, hankakuKana: false)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |     public static let hankakuKana = ToHalfwidthOptions(enabled: true, hankakuKana: true)
 35 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:34:23: warning: static property 'hankakuKana' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | /// Options for half-width conversion.
 28 | public struct ToHalfwidthOptions {
    |               `- note: consider making struct 'ToHalfwidthOptions' conform to the 'Sendable' protocol
 29 |     public let enabled: Bool
 30 |     public let hankakuKana: Bool
    :
 32 |     public static let disabled = ToHalfwidthOptions(enabled: false, hankakuKana: false)
 33 |     public static let enabled = ToHalfwidthOptions(enabled: true, hankakuKana: false)
 34 |     public static let hankakuKana = ToHalfwidthOptions(enabled: true, hankakuKana: true)
    |                       |- warning: static property 'hankakuKana' is not concurrency-safe because non-'Sendable' type 'ToHalfwidthOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'hankakuKana' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     public var isEnabled: Bool { enabled }
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:54:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | /// Options for IVS/SVS removal.
 50 | public struct RemoveIvsSvsOptions {
    |               `- note: consider making struct 'RemoveIvsSvsOptions' conform to the 'Sendable' protocol
 51 |     public let enabled: Bool
 52 |     public let dropAllSelectors: Bool
 53 |
 54 |     public static let disabled = RemoveIvsSvsOptions(enabled: false, dropAllSelectors: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |     public static let enabled = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: false)
 56 |     public static let dropAllSelectors = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: true)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:55:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | /// Options for IVS/SVS removal.
 50 | public struct RemoveIvsSvsOptions {
    |               `- note: consider making struct 'RemoveIvsSvsOptions' conform to the 'Sendable' protocol
 51 |     public let enabled: Bool
 52 |     public let dropAllSelectors: Bool
 53 |
 54 |     public static let disabled = RemoveIvsSvsOptions(enabled: false, dropAllSelectors: false)
 55 |     public static let enabled = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: false)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     public static let dropAllSelectors = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: true)
 57 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:56:23: warning: static property 'dropAllSelectors' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | /// Options for IVS/SVS removal.
 50 | public struct RemoveIvsSvsOptions {
    |               `- note: consider making struct 'RemoveIvsSvsOptions' conform to the 'Sendable' protocol
 51 |     public let enabled: Bool
 52 |     public let dropAllSelectors: Bool
    :
 54 |     public static let disabled = RemoveIvsSvsOptions(enabled: false, dropAllSelectors: false)
 55 |     public static let enabled = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: false)
 56 |     public static let dropAllSelectors = RemoveIvsSvsOptions(enabled: true, dropAllSelectors: true)
    |                       |- warning: static property 'dropAllSelectors' is not concurrency-safe because non-'Sendable' type 'RemoveIvsSvsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'dropAllSelectors' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 |
 58 |     public var isEnabled: Bool { enabled }
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:76:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 70 |
 71 | /// Options for hyphens replacement.
 72 | public struct ReplaceHyphensOptions {
    |               `- note: consider making struct 'ReplaceHyphensOptions' conform to the 'Sendable' protocol
 73 |     public let enabled: Bool
 74 |     public let precedence: [HyphensTransliterator.Precedence]?
 75 |
 76 |     public static let disabled = ReplaceHyphensOptions(enabled: false, precedence: nil)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |     public static let enabled = ReplaceHyphensOptions(
 78 |         enabled: true,
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:77:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 70 |
 71 | /// Options for hyphens replacement.
 72 | public struct ReplaceHyphensOptions {
    |               `- note: consider making struct 'ReplaceHyphensOptions' conform to the 'Sendable' protocol
 73 |     public let enabled: Bool
 74 |     public let precedence: [HyphensTransliterator.Precedence]?
 75 |
 76 |     public static let disabled = ReplaceHyphensOptions(enabled: false, precedence: nil)
 77 |     public static let enabled = ReplaceHyphensOptions(
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceHyphensOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         enabled: true,
 79 |         precedence: [.jisx0208_90_windows, .jisx0201]
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:103:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 | /// Options for circled or squared characters replacement.
 99 | public struct ReplaceCircledOrSquaredCharactersOptions {
    |               `- note: consider making struct 'ReplaceCircledOrSquaredCharactersOptions' conform to the 'Sendable' protocol
100 |     public let enabled: Bool
101 |     public let includeEmojis: Bool
102 |
103 |     public static let disabled = ReplaceCircledOrSquaredCharactersOptions(enabled: false, includeEmojis: false)
    |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'disabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 |     public static let enabled = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: true)
105 |     public static let excludeEmojis = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: false)
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:104:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 | /// Options for circled or squared characters replacement.
 99 | public struct ReplaceCircledOrSquaredCharactersOptions {
    |               `- note: consider making struct 'ReplaceCircledOrSquaredCharactersOptions' conform to the 'Sendable' protocol
100 |     public let enabled: Bool
101 |     public let includeEmojis: Bool
102 |
103 |     public static let disabled = ReplaceCircledOrSquaredCharactersOptions(enabled: false, includeEmojis: false)
104 |     public static let enabled = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: true)
    |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'enabled' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |     public static let excludeEmojis = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: false)
106 |
/host/spi-builder-workspace/Sources/Yosina/TransliterationRecipe.swift:105:23: warning: static property 'excludeEmojis' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 | /// Options for circled or squared characters replacement.
 99 | public struct ReplaceCircledOrSquaredCharactersOptions {
    |               `- note: consider making struct 'ReplaceCircledOrSquaredCharactersOptions' conform to the 'Sendable' protocol
100 |     public let enabled: Bool
101 |     public let includeEmojis: Bool
    :
103 |     public static let disabled = ReplaceCircledOrSquaredCharactersOptions(enabled: false, includeEmojis: false)
104 |     public static let enabled = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: true)
105 |     public static let excludeEmojis = ReplaceCircledOrSquaredCharactersOptions(enabled: true, includeEmojis: false)
    |                       |- warning: static property 'excludeEmojis' is not concurrency-safe because non-'Sendable' type 'ReplaceCircledOrSquaredCharactersOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'excludeEmojis' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |
107 |     public var isEnabled: Bool { enabled }
[24/26] Compiling Yosina Jisx0201AndAlikeTransliterator.swift
[25/26] Compiling Yosina KanjiOldNewTransliterator.swift
[26/26] Compiling Yosina MathematicalAlphanumericsTransliterator.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:276d66a16377d3ee059b2e3429cbc1154d9f01e42871e5d702fd5d8b9044d93d
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/22] Compiling Yosina IdeographicAnnotationsTransliterator.swift
/host/spi-builder-workspace/Sources/Yosina/Transliterators/IvsSvsBaseTransliterator.swift:37:40: error: cannot find 'DispatchQueue' in scope
 35 |     // Lazy loaded mappings
 36 |     private static var _mappings: MappingData?
 37 |     private static let mappingsQueue = DispatchQueue(label: "com.yosina.ivs-svs-mappings")
    |                                        `- error: cannot find 'DispatchQueue' in scope
 38 |
 39 |     private struct IvsSvsBaseRecord {
[3/22] Compiling Yosina IvsSvsBaseTransliterator.swift
/host/spi-builder-workspace/Sources/Yosina/Transliterators/IvsSvsBaseTransliterator.swift:37:40: error: cannot find 'DispatchQueue' in scope
 35 |     // Lazy loaded mappings
 36 |     private static var _mappings: MappingData?
 37 |     private static let mappingsQueue = DispatchQueue(label: "com.yosina.ivs-svs-mappings")
    |                                        `- error: cannot find 'DispatchQueue' in scope
 38 |
 39 |     private struct IvsSvsBaseRecord {
[4/22] Compiling Yosina JapaneseIterationMarksTransliterator.swift
/host/spi-builder-workspace/Sources/Yosina/Transliterators/IvsSvsBaseTransliterator.swift:37:40: error: cannot find 'DispatchQueue' in scope
 35 |     // Lazy loaded mappings
 36 |     private static var _mappings: MappingData?
 37 |     private static let mappingsQueue = DispatchQueue(label: "com.yosina.ivs-svs-mappings")
    |                                        `- error: cannot find 'DispatchQueue' in scope
 38 |
 39 |     private struct IvsSvsBaseRecord {
[5/22] Compiling Yosina ProlongedSoundMarksTransliterator.swift
[6/22] Compiling Yosina RadicalsTransliterator.swift
[7/24] Compiling Yosina SpacesTransliterator.swift
[8/24] Compiling Yosina resource_bundle_accessor.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[9/24] Emitting module Yosina
/host/spi-builder-workspace/Sources/Yosina/Transliterators/IvsSvsBaseTransliterator.swift:37:40: error: cannot find 'DispatchQueue' in scope
 35 |     // Lazy loaded mappings
 36 |     private static var _mappings: MappingData?
 37 |     private static let mappingsQueue = DispatchQueue(label: "com.yosina.ivs-svs-mappings")
    |                                        `- error: cannot find 'DispatchQueue' in scope
 38 |
 39 |     private struct IvsSvsBaseRecord {
[10/24] Compiling Yosina ChainedTransliterator.swift
[11/24] Compiling Yosina TransliterationRecipe.swift
[12/24] Compiling Yosina TransliteratorChar.swift
[13/24] Compiling Yosina CircledOrSquaredTransliterator.swift
[14/24] Compiling Yosina CombinedTransliterator.swift
[15/24] Compiling Yosina HiraKataCompositionTransliterator.swift
[16/24] Compiling Yosina HiraKataTable.swift
[17/24] Compiling Yosina HiraKataTransliterator.swift
[18/24] Compiling Yosina HyphensTransliterator.swift
[19/24] Compiling Yosina TransliteratorConfig.swift
[20/24] Compiling Yosina TransliteratorExtension.swift
[21/24] Compiling Yosina TransliteratorProtocol.swift
[22/24] Compiling Yosina Jisx0201AndAlikeTransliterator.swift
[23/24] Compiling Yosina KanjiOldNewTransliterator.swift
[24/24] Compiling Yosina MathematicalAlphanumericsTransliterator.swift
BUILD FAILURE 6.1 wasm