The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Yosina, reference main (7bbb83), with Swift 6.1 for Android on 21 Apr 2026 07:11:12 UTC.

Swift 6 data race errors: 17

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/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:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -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

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:         android
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-3":/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:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -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
android-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d37fe7b8fba27dae59fb1d9d7dfa86b38b41ffb3975924aad6f05cb4cc3de131
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest
Building for debugging...
[0/3] Copying ivs_svs_base.data
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[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 |
[5/24] 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 }
[6/24] 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 }
[7/24] 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 }
[8/26] Compiling Yosina ProlongedSoundMarksTransliterator.swift
[9/26] Compiling Yosina RadicalsTransliterator.swift
[10/26] Compiling Yosina CircledOrSquaredTransliterator.swift
[11/26] Compiling Yosina CombinedTransliterator.swift
[12/26] Compiling Yosina HiraKataCompositionTransliterator.swift
[13/26] Compiling Yosina TransliteratorConfig.swift
[14/26] Compiling Yosina TransliteratorExtension.swift
[15/26] Compiling Yosina TransliteratorProtocol.swift
[16/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()) {
[17/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()) {
[18/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()) {
[19/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 |
[20/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 |
[21/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 |
[22/26] Compiling Yosina Jisx0201AndAlikeTransliterator.swift
[23/26] Compiling Yosina KanjiOldNewTransliterator.swift
[24/26] Compiling Yosina MathematicalAlphanumericsTransliterator.swift
[25/26] Compiling Yosina SpacesTransliterator.swift
[26/26] Compiling Yosina resource_bundle_accessor.swift
Build complete! (27.46s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Yosina",
  "name" : "Yosina",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "17.0"
    },
    {
      "name" : "watchos",
      "version" : "10.0"
    }
  ],
  "products" : [
    {
      "name" : "Yosina",
      "targets" : [
        "Yosina"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "YosinaTests",
      "module_type" : "SwiftTarget",
      "name" : "YosinaTests",
      "path" : "Tests/YosinaTests",
      "sources" : [
        "CircledOrSquaredTests.swift",
        "CombinedTests.swift",
        "HiraKataCompositionTests.swift",
        "HiraKataTests.swift",
        "HyphensTests.swift",
        "IvsSvsBaseTests.swift",
        "JapaneseIterationMarksTests.swift",
        "Jisx0201AndAlikeTests.swift",
        "ProlongedSoundMarksTests.swift",
        "SpacesTests.swift",
        "TransliterationRecipeTests.swift"
      ],
      "target_dependencies" : [
        "Yosina"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Yosina",
      "module_type" : "SwiftTarget",
      "name" : "Yosina",
      "path" : "Sources/Yosina",
      "product_memberships" : [
        "Yosina"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/Yosina/Resources/ivs_svs_base.data",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "ChainedTransliterator.swift",
        "TransliterationRecipe.swift",
        "TransliteratorChar.swift",
        "TransliteratorConfig.swift",
        "TransliteratorExtension.swift",
        "TransliteratorProtocol.swift",
        "Transliterators/CircledOrSquaredTransliterator.swift",
        "Transliterators/CombinedTransliterator.swift",
        "Transliterators/HiraKataCompositionTransliterator.swift",
        "Transliterators/HiraKataTable.swift",
        "Transliterators/HiraKataTransliterator.swift",
        "Transliterators/HyphensTransliterator.swift",
        "Transliterators/IdeographicAnnotationsTransliterator.swift",
        "Transliterators/IvsSvsBaseTransliterator.swift",
        "Transliterators/JapaneseIterationMarksTransliterator.swift",
        "Transliterators/Jisx0201AndAlikeTransliterator.swift",
        "Transliterators/KanjiOldNewTransliterator.swift",
        "Transliterators/MathematicalAlphanumericsTransliterator.swift",
        "Transliterators/ProlongedSoundMarksTransliterator.swift",
        "Transliterators/RadicalsTransliterator.swift",
        "Transliterators/SpacesTransliterator.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
android-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d37fe7b8fba27dae59fb1d9d7dfa86b38b41ffb3975924aad6f05cb4cc3de131
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest
Done.