The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of TranslationCatalog, reference main (1e3bbc), with Swift 6.0 for macOS (SPM) on 4 Nov 2024 08:47:13 UTC.

Swift 6 data race errors: 50

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

 6 |
 7 | public enum GenericProjectQuery: CatalogQuery {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:4:10: warning: associated value 'expressionExistingWithID' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Expression'; this is an error in the Swift 6 language mode
 2 |     case badQuery(CatalogQuery)
 3 |     case dataTypeConversion(String? = nil)
 4 |     case expressionExistingWithID(Expression.ID, Expression)
   |          `- warning: associated value 'expressionExistingWithID' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Expression'; this is an error in the Swift 6 language mode
 5 |     case expressionExistingWithKey(String, Expression)
 6 |     case expressionID(Expression.ID)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Expression.swift:7:15: note: consider making struct 'Expression' conform to the 'Sendable' protocol
 5 | ///
 6 | /// - note: Expressions can exist outside the context of a Project and a single expression can be associated with multiple projects.
 7 | public struct Expression {
   |               `- note: consider making struct 'Expression' conform to the 'Sendable' protocol
 8 |     /// Identifier that universally identifies this `Expression`
 9 |     public var uuid: UUID
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:5:10: warning: associated value 'expressionExistingWithKey' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Expression'; this is an error in the Swift 6 language mode
 3 |     case dataTypeConversion(String? = nil)
 4 |     case expressionExistingWithID(Expression.ID, Expression)
 5 |     case expressionExistingWithKey(String, Expression)
   |          `- warning: associated value 'expressionExistingWithKey' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Expression'; this is an error in the Swift 6 language mode
 6 |     case expressionID(Expression.ID)
 7 |     case projectExistingWithID(Project.ID, Project)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Expression.swift:7:15: note: consider making struct 'Expression' conform to the 'Sendable' protocol
 5 | ///
 6 | /// - note: Expressions can exist outside the context of a Project and a single expression can be associated with multiple projects.
 7 | public struct Expression {
   |               `- note: consider making struct 'Expression' conform to the 'Sendable' protocol
 8 |     /// Identifier that universally identifies this `Expression`
 9 |     public var uuid: UUID
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:7:10: warning: associated value 'projectExistingWithID' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Project'; this is an error in the Swift 6 language mode
 5 |     case expressionExistingWithKey(String, Expression)
 6 |     case expressionID(Expression.ID)
 7 |     case projectExistingWithID(Project.ID, Project)
   |          `- warning: associated value 'projectExistingWithID' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Project'; this is an error in the Swift 6 language mode
 8 |     case projectID(Project.ID)
 9 |     case translationExistingWithID(Translation.ID, Translation)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Project.swift:4:15: note: consider making struct 'Project' conform to the 'Sendable' protocol
 2 |
 3 | /// A grouping of `Expression`s used for a common purpose, such as an application or service.
 4 | public struct Project {
   |               `- note: consider making struct 'Project' conform to the 'Sendable' protocol
 5 |     /// Identifier that universally identifies this `Project`
 6 |     public var uuid: UUID
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:9:10: warning: associated value 'translationExistingWithID' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Translation'; this is an error in the Swift 6 language mode
 7 |     case projectExistingWithID(Project.ID, Project)
 8 |     case projectID(Project.ID)
 9 |     case translationExistingWithID(Translation.ID, Translation)
   |          `- warning: associated value 'translationExistingWithID' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Translation'; this is an error in the Swift 6 language mode
10 |     case translationExistingWithValue(String, Translation)
11 |     case translationID(Translation.ID)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Translation.swift:5:15: note: consider making struct 'Translation' conform to the 'Sendable' protocol
 3 |
 4 | /// A specific language/region variation of an `Expression`.
 5 | public struct Translation {
   |               `- note: consider making struct 'Translation' conform to the 'Sendable' protocol
 6 |     /// Identifier that universally identifies this `Translation`
 7 |     public var uuid: UUID
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:10:10: warning: associated value 'translationExistingWithValue' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Translation'; this is an error in the Swift 6 language mode
 8 |     case projectID(Project.ID)
 9 |     case translationExistingWithID(Translation.ID, Translation)
10 |     case translationExistingWithValue(String, Translation)
   |          `- warning: associated value 'translationExistingWithValue' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Translation'; this is an error in the Swift 6 language mode
11 |     case translationID(Translation.ID)
12 |     case unhandledQuery(CatalogQuery)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Translation.swift:5:15: note: consider making struct 'Translation' conform to the 'Sendable' protocol
 3 |
 4 | /// A specific language/region variation of an `Expression`.
 5 | public struct Translation {
   |               `- note: consider making struct 'Translation' conform to the 'Sendable' protocol
 6 |     /// Identifier that universally identifies this `Translation`
 7 |     public var uuid: UUID
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:12:10: warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
10 |     case translationExistingWithValue(String, Translation)
11 |     case translationID(Translation.ID)
12 |     case unhandledQuery(CatalogQuery)
   |          `- warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
13 |     case unhandledUpdate(CatalogUpdate)
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 3 |
 4 | /// Associated parameters for performing query operations
 5 | public protocol CatalogQuery {}
   |                 `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 6 |
 7 | public enum GenericProjectQuery: CatalogQuery {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:13:10: warning: associated value 'unhandledUpdate' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
11 |     case translationID(Translation.ID)
12 |     case unhandledQuery(CatalogQuery)
13 |     case unhandledUpdate(CatalogUpdate)
   |          `- warning: associated value 'unhandledUpdate' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogUpdate.swift:5:17: note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
 3 |
 4 | /// Associated parameters when performing update operations
 5 | public protocol CatalogUpdate {}
   |                 `- note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
 6 |
 7 | public enum GenericProjectUpdate: CatalogUpdate {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Expression.swift:25:107: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
23 |     public var translations: [Translation]
24 |
25 |     public init(uuid: UUID = .zero, key: String = "", name: String = "", defaultLanguage: LanguageCode = .default, context: String? = nil, feature: String? = nil, translations: [Translation] = []) {
   |                                                                                                           `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
26 |         self.uuid = uuid
27 |         self.key = key
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Translation.swift:19:104: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 |     public var value: String
18 |
19 |     public init(uuid: UUID = .zero, expressionID: Expression.ID = .zero, languageCode: LanguageCode = .default, scriptCode: ScriptCode? = nil, regionCode: RegionCode? = nil, value: String = "") {
   |                                                                                                        `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
20 |         self.uuid = uuid
21 |         self.expressionID = expressionID
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
[264/294] Compiling TranslationCatalog CatalogUpdate.swift
[265/294] Compiling TranslationCatalog Catalog.swift
[266/294] Compiling TranslationCatalog CatalogError.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:2:10: warning: associated value 'badQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
 1 | public enum CatalogError: Error {
 2 |     case badQuery(CatalogQuery)
   |          `- warning: associated value 'badQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
 3 |     case dataTypeConversion(String? = nil)
 4 |     case expressionExistingWithID(Expression.ID, Expression)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 3 |
 4 | /// Associated parameters for performing query operations
 5 | public protocol CatalogQuery {}
   |                 `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 6 |
 7 | public enum GenericProjectQuery: CatalogQuery {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:4:10: warning: associated value 'expressionExistingWithID' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Expression'; this is an error in the Swift 6 language mode
 2 |     case badQuery(CatalogQuery)
 3 |     case dataTypeConversion(String? = nil)
 4 |     case expressionExistingWithID(Expression.ID, Expression)
   |          `- warning: associated value 'expressionExistingWithID' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Expression'; this is an error in the Swift 6 language mode
 5 |     case expressionExistingWithKey(String, Expression)
 6 |     case expressionID(Expression.ID)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Expression.swift:7:15: note: consider making struct 'Expression' conform to the 'Sendable' protocol
 5 | ///
 6 | /// - note: Expressions can exist outside the context of a Project and a single expression can be associated with multiple projects.
 7 | public struct Expression {
   |               `- note: consider making struct 'Expression' conform to the 'Sendable' protocol
 8 |     /// Identifier that universally identifies this `Expression`
 9 |     public var uuid: UUID
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:5:10: warning: associated value 'expressionExistingWithKey' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Expression'; this is an error in the Swift 6 language mode
 3 |     case dataTypeConversion(String? = nil)
 4 |     case expressionExistingWithID(Expression.ID, Expression)
 5 |     case expressionExistingWithKey(String, Expression)
   |          `- warning: associated value 'expressionExistingWithKey' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Expression'; this is an error in the Swift 6 language mode
 6 |     case expressionID(Expression.ID)
 7 |     case projectExistingWithID(Project.ID, Project)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Expression.swift:7:15: note: consider making struct 'Expression' conform to the 'Sendable' protocol
 5 | ///
 6 | /// - note: Expressions can exist outside the context of a Project and a single expression can be associated with multiple projects.
 7 | public struct Expression {
   |               `- note: consider making struct 'Expression' conform to the 'Sendable' protocol
 8 |     /// Identifier that universally identifies this `Expression`
 9 |     public var uuid: UUID
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:7:10: warning: associated value 'projectExistingWithID' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Project'; this is an error in the Swift 6 language mode
 5 |     case expressionExistingWithKey(String, Expression)
 6 |     case expressionID(Expression.ID)
 7 |     case projectExistingWithID(Project.ID, Project)
   |          `- warning: associated value 'projectExistingWithID' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Project'; this is an error in the Swift 6 language mode
 8 |     case projectID(Project.ID)
 9 |     case translationExistingWithID(Translation.ID, Translation)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Project.swift:4:15: note: consider making struct 'Project' conform to the 'Sendable' protocol
 2 |
 3 | /// A grouping of `Expression`s used for a common purpose, such as an application or service.
 4 | public struct Project {
   |               `- note: consider making struct 'Project' conform to the 'Sendable' protocol
 5 |     /// Identifier that universally identifies this `Project`
 6 |     public var uuid: UUID
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:9:10: warning: associated value 'translationExistingWithID' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Translation'; this is an error in the Swift 6 language mode
 7 |     case projectExistingWithID(Project.ID, Project)
 8 |     case projectID(Project.ID)
 9 |     case translationExistingWithID(Translation.ID, Translation)
   |          `- warning: associated value 'translationExistingWithID' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Translation'; this is an error in the Swift 6 language mode
10 |     case translationExistingWithValue(String, Translation)
11 |     case translationID(Translation.ID)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Translation.swift:5:15: note: consider making struct 'Translation' conform to the 'Sendable' protocol
 3 |
 4 | /// A specific language/region variation of an `Expression`.
 5 | public struct Translation {
   |               `- note: consider making struct 'Translation' conform to the 'Sendable' protocol
 6 |     /// Identifier that universally identifies this `Translation`
 7 |     public var uuid: UUID
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:10:10: warning: associated value 'translationExistingWithValue' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Translation'; this is an error in the Swift 6 language mode
 8 |     case projectID(Project.ID)
 9 |     case translationExistingWithID(Translation.ID, Translation)
10 |     case translationExistingWithValue(String, Translation)
   |          `- warning: associated value 'translationExistingWithValue' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'Translation'; this is an error in the Swift 6 language mode
11 |     case translationID(Translation.ID)
12 |     case unhandledQuery(CatalogQuery)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Translation.swift:5:15: note: consider making struct 'Translation' conform to the 'Sendable' protocol
 3 |
 4 | /// A specific language/region variation of an `Expression`.
 5 | public struct Translation {
   |               `- note: consider making struct 'Translation' conform to the 'Sendable' protocol
 6 |     /// Identifier that universally identifies this `Translation`
 7 |     public var uuid: UUID
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:12:10: warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
10 |     case translationExistingWithValue(String, Translation)
11 |     case translationID(Translation.ID)
12 |     case unhandledQuery(CatalogQuery)
   |          `- warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
13 |     case unhandledUpdate(CatalogUpdate)
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 3 |
 4 | /// Associated parameters for performing query operations
 5 | public protocol CatalogQuery {}
   |                 `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 6 |
 7 | public enum GenericProjectQuery: CatalogQuery {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:13:10: warning: associated value 'unhandledUpdate' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
11 |     case translationID(Translation.ID)
12 |     case unhandledQuery(CatalogQuery)
13 |     case unhandledUpdate(CatalogUpdate)
   |          `- warning: associated value 'unhandledUpdate' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogUpdate.swift:5:17: note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
 3 |
 4 | /// Associated parameters when performing update operations
 5 | public protocol CatalogUpdate {}
   |                 `- note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
 6 |
 7 | public enum GenericProjectUpdate: CatalogUpdate {
[267/294] Compiling TranslationCatalog CatalogQuery.swift
[268/294] Compiling TranslationCatalog Expression.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Expression.swift:25:107: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
23 |     public var translations: [Translation]
24 |
25 |     public init(uuid: UUID = .zero, key: String = "", name: String = "", defaultLanguage: LanguageCode = .default, context: String? = nil, feature: String? = nil, translations: [Translation] = []) {
   |                                                                                                           `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
26 |         self.uuid = uuid
27 |         self.key = key
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
[269/294] Compiling StatementSQLite WhereContext.swift
[270/294] Emitting module StatementSQLite
[289/300] Emitting module TranslationCatalogFilesystem
[290/314] Compiling TranslationCatalogIO FileFormat.swift
[291/315] Compiling TranslationCatalogFilesystem TranslationDocument.swift
[292/315] Compiling TranslationCatalogFilesystem Document.swift
[293/315] Compiling TranslationCatalogFilesystem ExpressionDocument.swift
[294/315] Compiling TranslationCatalogFilesystem ProjectDocument.swift
[295/315] Compiling TranslationCatalogFilesystem FilesystemCatalog.swift
[296/315] Compiling TranslationCatalogIO XML+Expression.swift
[297/315] Compiling TranslationCatalogIO Plot+IO.swift
[298/315] Compiling TranslationCatalogIO Translation+IO.swift
[299/315] Compiling TranslationCatalogIO StringsXml.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Internal/StringsXml.swift:28:55: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
26 |
27 | extension StringsXml {
28 |     func expressions(defaultLanguage: LanguageCode = .default, language: LanguageCode, script: ScriptCode?, region: RegionCode?) -> [TranslationCatalog.Expression] {
   |                                                       `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
29 |         return resources.map { $0.expression(uuid: .zero, defaultLanguage: defaultLanguage, language: language, script: script, region: region) }
30 |     }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
[300/315] Compiling TranslationCatalogIO Resource.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Internal/Resource.swift:29:42: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
27 |     func expression(
28 |         uuid: Expression.ID,
29 |         defaultLanguage: LanguageCode = .default,
   |                                          `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
30 |         comment: String? = nil,
31 |         feature: String? = nil,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
[301/315] Compiling TranslationCatalogIO MarkdownTable.swift
[302/315] Compiling TranslationCatalogIO ExpressionImporter.swift
[303/315] Compiling TranslationCatalogIO ExpressionRenderer.swift
[304/315] Emitting module TranslationCatalogIO
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Extensions/Dictionary+AppleStrings.swift:56:42: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
54 |
55 |     func expressions(
56 |         defaultLanguage: LanguageCode = .default,
   |                                          `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
57 |         comment: String? = nil,
58 |         feature: String? = nil,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Internal/Resource.swift:29:42: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
27 |     func expression(
28 |         uuid: Expression.ID,
29 |         defaultLanguage: LanguageCode = .default,
   |                                          `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
30 |         comment: String? = nil,
31 |         feature: String? = nil,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Internal/StringsXml.swift:28:55: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
26 |
27 | extension StringsXml {
28 |     func expressions(defaultLanguage: LanguageCode = .default, language: LanguageCode, script: ScriptCode?, region: RegionCode?) -> [TranslationCatalog.Expression] {
   |                                                       `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
29 |         return resources.map { $0.expression(uuid: .zero, defaultLanguage: defaultLanguage, language: language, script: script, region: region) }
30 |     }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
[305/315] Compiling TranslationCatalogIO ExpressionDecoder.swift
[306/315] Compiling TranslationCatalogIO ExpressionEncoder.swift
[307/315] Compiling TranslationCatalogIO Dictionary+AppleStrings.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Extensions/Dictionary+AppleStrings.swift:56:42: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
54 |
55 |     func expressions(
56 |         defaultLanguage: LanguageCode = .default,
   |                                          `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
57 |         comment: String? = nil,
58 |         feature: String? = nil,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
[308/315] Compiling TranslationCatalogIO Expression+IO.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Extensions/Dictionary+AppleStrings.swift:56:42: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
54 |
55 |     func expressions(
56 |         defaultLanguage: LanguageCode = .default,
   |                                          `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
57 |         comment: String? = nil,
58 |         feature: String? = nil,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
[309/315] Compiling TranslationCatalogIO RenderFormat.swift
[313/328] Compiling TranslationCatalogSQLite SQLiteStatement+Translation.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/TranslationEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | import Foundation
 5 |
 6 | struct TranslationEntity: Entity {
   |        `- note: consider making struct 'TranslationEntity' conform to the 'Sendable' protocol
 7 |
 8 |     static let identifier: String = "translation"
   :
25 |
26 | extension TranslationEntity {
27 |     static let entity = TranslationEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     static var id: Attribute { entity["id"]! }
29 |     static var uuid: Attribute { entity["uuid"]! }
[314/329] Compiling TranslationCatalogSQLite SQLiteStatement+Expression.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ExpressionEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | import Foundation
 5 |
 6 | struct ExpressionEntity: Entity {
   |        `- note: consider making struct 'ExpressionEntity' conform to the 'Sendable' protocol
 7 |
 8 |     static let identifier: String = "expression"
   :
25 |
26 | extension ExpressionEntity {
27 |     static let entity = ExpressionEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     static var id: Attribute { entity["id"]! }
29 |     static var uuid: Attribute { entity["uuid"]! }
[315/329] Compiling TranslationCatalogSQLite SQLiteStatement+ProjectExpression.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectExpressionEntity.swift:15:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import TranslationCatalog
 3 |
 4 | struct ProjectExpressionEntity: Entity {
   |        `- note: consider making struct 'ProjectExpressionEntity' conform to the 'Sendable' protocol
 5 |
 6 |     static let identifier: String = "project_expression"
   :
13 |
14 | extension ProjectExpressionEntity {
15 |     static let entity = ProjectExpressionEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var projectID: Attribute { entity["project_id"]! }
17 |     static var expressionID: Attribute { entity["expression_id"]! }
[316/329] Compiling TranslationCatalogSQLite SQLiteStatement+Project.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectEntity.swift:18:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 3 | import Foundation
 4 |
 5 | struct ProjectEntity: Entity, Identifiable {
   |        `- note: consider making struct 'ProjectEntity' conform to the 'Sendable' protocol
 6 |
 7 |     static let identifier: String = "project"
   :
16 |
17 | extension ProjectEntity {
18 |     static let entity = ProjectEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     static var id: Attribute { entity["id"]! }
20 |     static var uuid: Attribute { entity["uuid"]! }
[317/329] Compiling TranslationCatalogSQLite SQLiteStmt+Entities.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteStmt+Entities.swift:51:75: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 |     func languageCode(position: Int) -> LanguageCode {
 51 |         return LanguageCode(rawValue: columnText(position: position)) ?? .default
    |                                                                           `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 52 |     }
 53 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
[318/329] Compiling TranslationCatalogSQLite SQLite+Query.swift
[319/329] Compiling TranslationCatalogSQLite SQLite+Schema.swift
[320/329] Compiling TranslationCatalogSQLite SQLiteCatalog+AssociatedTypes.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:12:14: warning: associated value 'invalidAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
 10 |
 11 |         @available(*, deprecated, renamed: "CatalogError.unhandledUpdate()")
 12 |         case invalidAction(CatalogUpdate)
    |              `- warning: associated value 'invalidAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
 13 |         @available(*, deprecated, renamed: "CatalogError.badQuery()")
 14 |         case invalidQuery(CatalogQuery)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogUpdate.swift:5:17: note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
 3 |
 4 | /// Associated parameters when performing update operations
 5 | public protocol CatalogUpdate {}
   |                 `- note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
 6 |
 7 | public enum GenericProjectUpdate: CatalogUpdate {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TranslationCatalog'
  1 | import Foundation
  2 | import LocaleSupport
  3 | import TranslationCatalog
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TranslationCatalog'
  4 |
  5 | public extension SQLiteCatalog {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:14:14: warning: associated value 'invalidQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
 12 |         case invalidAction(CatalogUpdate)
 13 |         @available(*, deprecated, renamed: "CatalogError.badQuery()")
 14 |         case invalidQuery(CatalogQuery)
    |              `- warning: associated value 'invalidQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
 15 |         @available(*, deprecated, renamed: "CatalogError.projectID()")
 16 |         case invalidProjectID(Project.ID)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 3 |
 4 | /// Associated parameters for performing query operations
 5 | public protocol CatalogQuery {}
   |                 `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 6 |
 7 | public enum GenericProjectQuery: CatalogQuery {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:28:14: warning: associated value 'unhandledAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
 26 |         case existingTranslationWithID(TranslationCatalog.Translation.ID)
 27 |         @available(*, deprecated, renamed: "CatalogError.unhandledUpdate()")
 28 |         case unhandledAction(CatalogUpdate)
    |              `- warning: associated value 'unhandledAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
 29 |         @available(*, deprecated, renamed: "CatalogError.dataTypeConversion()")
 30 |         case unhandledConversion
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogUpdate.swift:5:17: note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
 3 |
 4 | /// Associated parameters when performing update operations
 5 | public protocol CatalogUpdate {}
   |                 `- note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
 6 |
 7 | public enum GenericProjectUpdate: CatalogUpdate {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:32:14: warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
 30 |         case unhandledConversion
 31 |         @available(*, deprecated, renamed: "CatalogError.unhandledQuery()")
 32 |         case unhandledQuery(CatalogQuery)
    |              `- warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
 33 |     }
 34 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 3 |
 4 | /// Associated parameters for performing query operations
 5 | public protocol CatalogQuery {}
   |                 `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 6 |
 7 | public enum GenericProjectQuery: CatalogQuery {
[321/329] Compiling TranslationCatalogSQLite ProjectExpressionEntity.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectExpressionEntity.swift:15:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import TranslationCatalog
 3 |
 4 | struct ProjectExpressionEntity: Entity {
   |        `- note: consider making struct 'ProjectExpressionEntity' conform to the 'Sendable' protocol
 5 |
 6 |     static let identifier: String = "project_expression"
   :
13 |
14 | extension ProjectExpressionEntity {
15 |     static let entity = ProjectExpressionEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var projectID: Attribute { entity["project_id"]! }
17 |     static var expressionID: Attribute { entity["expression_id"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/TranslationEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | import Foundation
 5 |
 6 | struct TranslationEntity: Entity {
   |        `- note: consider making struct 'TranslationEntity' conform to the 'Sendable' protocol
 7 |
 8 |     static let identifier: String = "translation"
   :
25 |
26 | extension TranslationEntity {
27 |     static let entity = TranslationEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     static var id: Attribute { entity["id"]! }
29 |     static var uuid: Attribute { entity["uuid"]! }
[322/329] Compiling TranslationCatalogSQLite TranslationEntity.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectExpressionEntity.swift:15:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import TranslationCatalog
 3 |
 4 | struct ProjectExpressionEntity: Entity {
   |        `- note: consider making struct 'ProjectExpressionEntity' conform to the 'Sendable' protocol
 5 |
 6 |     static let identifier: String = "project_expression"
   :
13 |
14 | extension ProjectExpressionEntity {
15 |     static let entity = ProjectExpressionEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var projectID: Attribute { entity["project_id"]! }
17 |     static var expressionID: Attribute { entity["expression_id"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/TranslationEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | import Foundation
 5 |
 6 | struct TranslationEntity: Entity {
   |        `- note: consider making struct 'TranslationEntity' conform to the 'Sendable' protocol
 7 |
 8 |     static let identifier: String = "translation"
   :
25 |
26 | extension TranslationEntity {
27 |     static let entity = TranslationEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     static var id: Attribute { entity["id"]! }
29 |     static var uuid: Attribute { entity["uuid"]! }
[323/329] Emitting module TranslationCatalogSQLite
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ExpressionEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | import Foundation
 5 |
 6 | struct ExpressionEntity: Entity {
   |        `- note: consider making struct 'ExpressionEntity' conform to the 'Sendable' protocol
 7 |
 8 |     static let identifier: String = "expression"
   :
25 |
26 | extension ExpressionEntity {
27 |     static let entity = ExpressionEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     static var id: Attribute { entity["id"]! }
29 |     static var uuid: Attribute { entity["uuid"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectEntity.swift:18:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 3 | import Foundation
 4 |
 5 | struct ProjectEntity: Entity, Identifiable {
   |        `- note: consider making struct 'ProjectEntity' conform to the 'Sendable' protocol
 6 |
 7 |     static let identifier: String = "project"
   :
16 |
17 | extension ProjectEntity {
18 |     static let entity = ProjectEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     static var id: Attribute { entity["id"]! }
20 |     static var uuid: Attribute { entity["uuid"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectExpressionEntity.swift:15:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import TranslationCatalog
 3 |
 4 | struct ProjectExpressionEntity: Entity {
   |        `- note: consider making struct 'ProjectExpressionEntity' conform to the 'Sendable' protocol
 5 |
 6 |     static let identifier: String = "project_expression"
   :
13 |
14 | extension ProjectExpressionEntity {
15 |     static let entity = ProjectExpressionEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var projectID: Attribute { entity["project_id"]! }
17 |     static var expressionID: Attribute { entity["expression_id"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/TranslationEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | import Foundation
 5 |
 6 | struct TranslationEntity: Entity {
   |        `- note: consider making struct 'TranslationEntity' conform to the 'Sendable' protocol
 7 |
 8 |     static let identifier: String = "translation"
   :
25 |
26 | extension TranslationEntity {
27 |     static let entity = TranslationEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     static var id: Attribute { entity["id"]! }
29 |     static var uuid: Attribute { entity["uuid"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:12:14: warning: associated value 'invalidAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
 10 |
 11 |         @available(*, deprecated, renamed: "CatalogError.unhandledUpdate()")
 12 |         case invalidAction(CatalogUpdate)
    |              `- warning: associated value 'invalidAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
 13 |         @available(*, deprecated, renamed: "CatalogError.badQuery()")
 14 |         case invalidQuery(CatalogQuery)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogUpdate.swift:5:17: note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
 3 |
 4 | /// Associated parameters when performing update operations
 5 | public protocol CatalogUpdate {}
   |                 `- note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
 6 |
 7 | public enum GenericProjectUpdate: CatalogUpdate {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TranslationCatalog'
  1 | import Foundation
  2 | import LocaleSupport
  3 | import TranslationCatalog
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TranslationCatalog'
  4 |
  5 | public extension SQLiteCatalog {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:14:14: warning: associated value 'invalidQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
 12 |         case invalidAction(CatalogUpdate)
 13 |         @available(*, deprecated, renamed: "CatalogError.badQuery()")
 14 |         case invalidQuery(CatalogQuery)
    |              `- warning: associated value 'invalidQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
 15 |         @available(*, deprecated, renamed: "CatalogError.projectID()")
 16 |         case invalidProjectID(Project.ID)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 3 |
 4 | /// Associated parameters for performing query operations
 5 | public protocol CatalogQuery {}
   |                 `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 6 |
 7 | public enum GenericProjectQuery: CatalogQuery {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:28:14: warning: associated value 'unhandledAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
 26 |         case existingTranslationWithID(TranslationCatalog.Translation.ID)
 27 |         @available(*, deprecated, renamed: "CatalogError.unhandledUpdate()")
 28 |         case unhandledAction(CatalogUpdate)
    |              `- warning: associated value 'unhandledAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
 29 |         @available(*, deprecated, renamed: "CatalogError.dataTypeConversion()")
 30 |         case unhandledConversion
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogUpdate.swift:5:17: note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
 3 |
 4 | /// Associated parameters when performing update operations
 5 | public protocol CatalogUpdate {}
   |                 `- note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
 6 |
 7 | public enum GenericProjectUpdate: CatalogUpdate {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:32:14: warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
 30 |         case unhandledConversion
 31 |         @available(*, deprecated, renamed: "CatalogError.unhandledQuery()")
 32 |         case unhandledQuery(CatalogQuery)
    |              `- warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
 33 |     }
 34 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 3 |
 4 | /// Associated parameters for performing query operations
 5 | public protocol CatalogQuery {}
   |                 `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
 6 |
 7 | public enum GenericProjectQuery: CatalogQuery {
[324/329] Compiling TranslationCatalogSQLite ExpressionEntity.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ExpressionEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | import Foundation
 5 |
 6 | struct ExpressionEntity: Entity {
   |        `- note: consider making struct 'ExpressionEntity' conform to the 'Sendable' protocol
 7 |
 8 |     static let identifier: String = "expression"
   :
25 |
26 | extension ExpressionEntity {
27 |     static let entity = ExpressionEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     static var id: Attribute { entity["id"]! }
29 |     static var uuid: Attribute { entity["uuid"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectEntity.swift:18:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 3 | import Foundation
 4 |
 5 | struct ProjectEntity: Entity, Identifiable {
   |        `- note: consider making struct 'ProjectEntity' conform to the 'Sendable' protocol
 6 |
 7 |     static let identifier: String = "project"
   :
16 |
17 | extension ProjectEntity {
18 |     static let entity = ProjectEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     static var id: Attribute { entity["id"]! }
20 |     static var uuid: Attribute { entity["uuid"]! }
[325/329] Compiling TranslationCatalogSQLite ProjectEntity.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ExpressionEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | import Foundation
 5 |
 6 | struct ExpressionEntity: Entity {
   |        `- note: consider making struct 'ExpressionEntity' conform to the 'Sendable' protocol
 7 |
 8 |     static let identifier: String = "expression"
   :
25 |
26 | extension ExpressionEntity {
27 |     static let entity = ExpressionEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     static var id: Attribute { entity["id"]! }
29 |     static var uuid: Attribute { entity["uuid"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectEntity.swift:18:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
 3 | import Foundation
 4 |
 5 | struct ProjectEntity: Entity, Identifiable {
   |        `- note: consider making struct 'ProjectEntity' conform to the 'Sendable' protocol
 6 |
 7 |     static let identifier: String = "project"
   :
16 |
17 | extension ProjectEntity {
18 |     static let entity = ProjectEntity()
   |                |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'entity' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     static var id: Attribute { entity["id"]! }
20 |     static var uuid: Attribute { entity["uuid"]! }
[326/329] Compiling TranslationCatalogSQLite SQLiteCatalog.swift
[327/347] Compiling localizer Preview.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Preview.swift:8:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 | struct Preview: AsyncParsableCommand {
 7 |
 8 |     static var configuration: CommandConfiguration = .init(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |         commandName: "preview",
10 |         abstract: "Displays the localizations found in a translation file.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Preview.swift:35:117: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
33 |         let url = try FileManager.default.url(for: input)
34 |         let data = try Data(contentsOf: url)
35 |         let expressions = try ExpressionDecoder.decodeExpressions(from: data, fileFormat: format, defaultLanguage: .default, languageCode: .default, scriptCode: nil, regionCode: nil)
   |                                                                                                                     `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
36 |
37 |         expressions.sorted(by: { $0.name < $1.name }).forEach { (expression) in
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Preview.swift:35:141: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
33 |         let url = try FileManager.default.url(for: input)
34 |         let data = try Data(contentsOf: url)
35 |         let expressions = try ExpressionDecoder.decodeExpressions(from: data, fileFormat: format, defaultLanguage: .default, languageCode: .default, scriptCode: nil, regionCode: nil)
   |                                                                                                                                             `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
36 |
37 |         expressions.sorted(by: { $0.name < $1.name }).forEach { (expression) in
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
[328/347] Compiling localizer FileManager+localizer.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/RenderFormat+localizer.swift:4:1: warning: extension declares a conformance of imported type 'RenderFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
2 | import ArgumentParser
3 |
4 | extension RenderFormat: ExpressibleByArgument {
  | |- warning: extension declares a conformance of imported type 'RenderFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
5 | }
6 |
[329/347] Compiling localizer RenderFormat+localizer.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/RenderFormat+localizer.swift:4:1: warning: extension declares a conformance of imported type 'RenderFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
2 | import ArgumentParser
3 |
4 | extension RenderFormat: ExpressibleByArgument {
  | |- warning: extension declares a conformance of imported type 'RenderFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
5 | }
6 |
[330/348] Compiling localizer Configuration.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configuration.swift:10:32: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |     init() {
10 |         defaultLanguageCode = .default
   |                                `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
11 |         defaultRegionCode = .default
12 |         defaultStorage = .default
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configuration.swift:11:30: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 9 |     init() {
10 |         defaultLanguageCode = .default
11 |         defaultRegionCode = .default
   |                              `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 |         defaultStorage = .default
13 |     }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 |     case ZW
261 |
262 |     public static var `default`: Self = .US
    |                       `- note: static property declared here
263 | }
264 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configuration.swift:17:114: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |     init(from decoder: Decoder) throws {
16 |         let container = try decoder.container(keyedBy: CodingKeys.self)
17 |         defaultLanguageCode = try container.decodeIfPresent(LanguageCode.self, forKey: .defaultLanguageCode) ?? .default
   |                                                                                                                  `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
18 |         defaultRegionCode = try container.decodeIfPresent(RegionCode.self, forKey: .defaultRegionCode) ?? .default
19 |         defaultStorage = try container.decodeIfPresent(Catalog.Storage.self, forKey: .defaultStorage) ?? .default
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configuration.swift:18:108: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 |         let container = try decoder.container(keyedBy: CodingKeys.self)
17 |         defaultLanguageCode = try container.decodeIfPresent(LanguageCode.self, forKey: .defaultLanguageCode) ?? .default
18 |         defaultRegionCode = try container.decodeIfPresent(RegionCode.self, forKey: .defaultRegionCode) ?? .default
   |                                                                                                            `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 |         defaultStorage = try container.decodeIfPresent(Catalog.Storage.self, forKey: .defaultStorage) ?? .default
20 |     }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 |     case ZW
261 |
262 |     public static var `default`: Self = .US
    |                       `- note: static property declared here
263 | }
264 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configuration.swift:43:22: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
41 |
42 |     static func load(_ configuration: Configuration) throws {
43 |         LanguageCode.default = configuration.defaultLanguageCode
   |                      `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
44 |         RegionCode.default = configuration.defaultRegionCode
45 |         Catalog.Storage.default = configuration.defaultStorage
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configuration.swift:44:20: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
42 |     static func load(_ configuration: Configuration) throws {
43 |         LanguageCode.default = configuration.defaultLanguageCode
44 |         RegionCode.default = configuration.defaultRegionCode
   |                    `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
45 |         Catalog.Storage.default = configuration.defaultStorage
46 |     }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 |     case ZW
261 |
262 |     public static var `default`: Self = .US
    |                       `- note: static property declared here
263 | }
264 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configure+Get.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |     struct Get: AsyncParsableCommand {
 6 |
 7 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |             commandName: "get",
 9 |             abstract: "Gets configuration parameters.",
[331/348] Compiling localizer Configure+Get.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configuration.swift:10:32: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |     init() {
10 |         defaultLanguageCode = .default
   |                                `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
11 |         defaultRegionCode = .default
12 |         defaultStorage = .default
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configuration.swift:11:30: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 9 |     init() {
10 |         defaultLanguageCode = .default
11 |         defaultRegionCode = .default
   |                              `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 |         defaultStorage = .default
13 |     }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 |     case ZW
261 |
262 |     public static var `default`: Self = .US
    |                       `- note: static property declared here
263 | }
264 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configuration.swift:17:114: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |     init(from decoder: Decoder) throws {
16 |         let container = try decoder.container(keyedBy: CodingKeys.self)
17 |         defaultLanguageCode = try container.decodeIfPresent(LanguageCode.self, forKey: .defaultLanguageCode) ?? .default
   |                                                                                                                  `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
18 |         defaultRegionCode = try container.decodeIfPresent(RegionCode.self, forKey: .defaultRegionCode) ?? .default
19 |         defaultStorage = try container.decodeIfPresent(Catalog.Storage.self, forKey: .defaultStorage) ?? .default
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configuration.swift:18:108: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 |         let container = try decoder.container(keyedBy: CodingKeys.self)
17 |         defaultLanguageCode = try container.decodeIfPresent(LanguageCode.self, forKey: .defaultLanguageCode) ?? .default
18 |         defaultRegionCode = try container.decodeIfPresent(RegionCode.self, forKey: .defaultRegionCode) ?? .default
   |                                                                                                            `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 |         defaultStorage = try container.decodeIfPresent(Catalog.Storage.self, forKey: .defaultStorage) ?? .default
20 |     }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 |     case ZW
261 |
262 |     public static var `default`: Self = .US
    |                       `- note: static property declared here
263 | }
264 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configuration.swift:43:22: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
41 |
42 |     static func load(_ configuration: Configuration) throws {
43 |         LanguageCode.default = configuration.defaultLanguageCode
   |                      `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
44 |         RegionCode.default = configuration.defaultRegionCode
45 |         Catalog.Storage.default = configuration.defaultStorage
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configuration.swift:44:20: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
42 |     static func load(_ configuration: Configuration) throws {
43 |         LanguageCode.default = configuration.defaultLanguageCode
44 |         RegionCode.default = configuration.defaultRegionCode
   |                    `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
45 |         Catalog.Storage.default = configuration.defaultStorage
46 |     }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 |     case ZW
261 |
262 |     public static var `default`: Self = .US
    |                       `- note: static property declared here
263 | }
264 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configure+Get.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |     struct Get: AsyncParsableCommand {
 6 |
 7 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |             commandName: "get",
 9 |             abstract: "Gets configuration parameters.",
[332/348] Compiling localizer Arguments.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:5:1: warning: extension declares a conformance of imported type 'LanguageCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
 3 | import ArgumentParser
 4 |
 5 | extension LanguageCode: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'LanguageCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 | extension RegionCode: ExpressibleByArgument {}
 7 | extension ScriptCode: ExpressibleByArgument {}
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:6:1: warning: extension declares a conformance of imported type 'RegionCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
 4 |
 5 | extension LanguageCode: ExpressibleByArgument {}
 6 | extension RegionCode: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'RegionCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 | extension ScriptCode: ExpressibleByArgument {}
 8 | extension UUID: ExpressibleByArgument {
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:7:1: warning: extension declares a conformance of imported type 'ScriptCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
 5 | extension LanguageCode: ExpressibleByArgument {}
 6 | extension RegionCode: ExpressibleByArgument {}
 7 | extension ScriptCode: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'ScriptCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 | extension UUID: ExpressibleByArgument {
 9 |     public init?(argument: String) {
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:8:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 6 | extension RegionCode: ExpressibleByArgument {}
 7 | extension ScriptCode: ExpressibleByArgument {}
 8 | extension UUID: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 9 |     public init?(argument: String) {
10 |         self.init(uuidString: argument)
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/FileFormat+localizer.swift:4:1: warning: extension declares a conformance of imported type 'FileFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
 2 | import ArgumentParser
 3 |
 4 | extension FileFormat: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'FileFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 5 |     var argument: String {
 6 |         switch self {
[333/348] Compiling localizer FileFormat+localizer.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:5:1: warning: extension declares a conformance of imported type 'LanguageCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
 3 | import ArgumentParser
 4 |
 5 | extension LanguageCode: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'LanguageCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 | extension RegionCode: ExpressibleByArgument {}
 7 | extension ScriptCode: ExpressibleByArgument {}
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:6:1: warning: extension declares a conformance of imported type 'RegionCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
 4 |
 5 | extension LanguageCode: ExpressibleByArgument {}
 6 | extension RegionCode: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'RegionCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 | extension ScriptCode: ExpressibleByArgument {}
 8 | extension UUID: ExpressibleByArgument {
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:7:1: warning: extension declares a conformance of imported type 'ScriptCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
 5 | extension LanguageCode: ExpressibleByArgument {}
 6 | extension RegionCode: ExpressibleByArgument {}
 7 | extension ScriptCode: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'ScriptCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 | extension UUID: ExpressibleByArgument {
 9 |     public init?(argument: String) {
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:8:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 6 | extension RegionCode: ExpressibleByArgument {}
 7 | extension ScriptCode: ExpressibleByArgument {}
 8 | extension UUID: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 9 |     public init?(argument: String) {
10 |         self.init(uuidString: argument)
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/FileFormat+localizer.swift:4:1: warning: extension declares a conformance of imported type 'FileFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
 2 | import ArgumentParser
 3 |
 4 | extension FileFormat: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'FileFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 5 |     var argument: String {
 6 |         switch self {
[334/348] Compiling localizer Configure+Set.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     struct Set: AsyncParsableCommand {
 7 |
 8 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |             commandName: "set",
10 |             abstract: "Sets configuration parameters.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configure.swift:6:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | struct Configure: AsyncParsableCommand {
 5 |
 6 |     static var configuration: CommandConfiguration = .init(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |         commandName: "configure",
 8 |         abstract: "Displays or alters the command configuration details.",
[335/348] Compiling localizer Configure.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     struct Set: AsyncParsableCommand {
 7 |
 8 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |             commandName: "set",
10 |             abstract: "Sets configuration parameters.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configure.swift:6:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | struct Configure: AsyncParsableCommand {
 5 |
 6 |     static var configuration: CommandConfiguration = .init(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |         commandName: "configure",
 8 |         abstract: "Displays or alters the command configuration details.",
[336/348] Compiling localizer localizer.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/localizer.swift:5:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 |
 4 | @main struct Command: AsyncParsableCommand {
 5 |     static var configuration: CommandConfiguration = {
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |         try? Configuration.load(.default)
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/localizer.swift:13:51: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
11 |             usage: nil,
12 |             discussion: """
13 |             Default Language Code: \(LanguageCode.default.rawValue)
   |                                                   `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |             Default Region Code: \(RegionCode.default.rawValue)
15 |             Default Storage: \(Catalog.Storage.default.rawValue)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/localizer.swift:14:47: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 |             discussion: """
13 |             Default Language Code: \(LanguageCode.default.rawValue)
14 |             Default Region Code: \(RegionCode.default.rawValue)
   |                                               `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |             Default Storage: \(Catalog.Storage.default.rawValue)
16 |             """,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 |     case ZW
261 |
262 |     public static var `default`: Self = .US
    |                       `- note: static property declared here
263 | }
264 |
[337/348] Compiling localizer Catalog+Insert.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Insert: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "insert",
 10 |             abstract: "Adds a single entity to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |             commandName: "project",
 31 |             abstract: "Add a Project to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:88:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 |         @Option(help: "The default/development language code.")
 88 |         var defaultLanguage: LanguageCode = .default
    |                                              `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 |         @Option(help: "Contextual information that guides translators.")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:69:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 67 |     struct ExpressionCommand: CatalogCommand {
 68 |
 69 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |             commandName: "expression",
 71 |             abstract: "Add an Expression to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:134:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
132 |     struct TranslationCommand: CatalogCommand {
133 |
134 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 |             commandName: "translation",
136 |             abstract: "Add a Translation to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Query: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "query",
 10 |             abstract: "Perform queries against the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectCommand: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Query for projects in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 |     struct ExpressionCommand: CatalogCommand {
 82 |
 83 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 |             commandName: "expression",
 85 |             abstract: "Query for expressions in the catalog.",
[338/348] Compiling localizer Catalog+Query.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Insert: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "insert",
 10 |             abstract: "Adds a single entity to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |             commandName: "project",
 31 |             abstract: "Add a Project to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:88:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 |         @Option(help: "The default/development language code.")
 88 |         var defaultLanguage: LanguageCode = .default
    |                                              `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 |         @Option(help: "Contextual information that guides translators.")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:69:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 67 |     struct ExpressionCommand: CatalogCommand {
 68 |
 69 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |             commandName: "expression",
 71 |             abstract: "Add an Expression to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:134:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
132 |     struct TranslationCommand: CatalogCommand {
133 |
134 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 |             commandName: "translation",
136 |             abstract: "Add a Translation to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Query: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "query",
 10 |             abstract: "Perform queries against the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectCommand: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Query for projects in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 |     struct ExpressionCommand: CatalogCommand {
 82 |
 83 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 |             commandName: "expression",
 85 |             abstract: "Query for expressions in the catalog.",
[339/348] Compiling localizer Catalog+Generate.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Generate: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "generate",
13 |             abstract: "Generate a viewable document using the strings catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:41:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
39 |
40 |         @Option(help: "The 'default' Language for the expressions being imported.")
41 |         var defaultLanguage: LanguageCode = .default
   |                                              `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
42 |
43 |         @Option(help: "Storage mechanism used to persist the catalog. [sqlite, filesystem]")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Import: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "import",
13 |             abstract: "Imports a translation file into the catalog.",
[340/348] Compiling localizer Catalog+Import.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Generate: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "generate",
13 |             abstract: "Generate a viewable document using the strings catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:41:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
39 |
40 |         @Option(help: "The 'default' Language for the expressions being imported.")
41 |         var defaultLanguage: LanguageCode = .default
   |                                              `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
42 |
43 |         @Option(help: "Storage mechanism used to persist the catalog. [sqlite, filesystem]")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Import: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "import",
13 |             abstract: "Imports a translation file into the catalog.",
[341/348] Compiling localizer Catalog+Update.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Update: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "update",
 10 |             abstract: "Update a single entity in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |             commandName: "project",
 31 |             abstract: "Update a Project in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     struct ExpressionCommand: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |             commandName: "expression",
 98 |             abstract: "Update an Expression in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 |     struct TranslationCommand: CatalogCommand {
195 |
196 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 |             commandName: "translation",
198 |             abstract: "Update a Translation in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:36:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 34 |     }
 35 |
 36 |     static var configuration: CommandConfiguration = .init(
    |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |         commandName: "catalog",
 38 |         abstract: "Interact with the translation catalog.",
[342/348] Compiling localizer Catalog.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Update: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "update",
 10 |             abstract: "Update a single entity in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |             commandName: "project",
 31 |             abstract: "Update a Project in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     struct ExpressionCommand: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |             commandName: "expression",
 98 |             abstract: "Update an Expression in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 |     struct TranslationCommand: CatalogCommand {
195 |
196 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 |             commandName: "translation",
198 |             abstract: "Update a Translation in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:36:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 34 |     }
 35 |
 36 |     static var configuration: CommandConfiguration = .init(
    |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |         commandName: "catalog",
 38 |         abstract: "Interact with the translation catalog.",
[343/348] Emitting module localizer
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | extension Catalog {
  6 |     struct Delete: AsyncParsableCommand {
  7 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |             commandName: "delete",
  9 |             abstract: "Remove a single entity in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectEntity: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Delete a Project from the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 65 |     struct ExpressionEntity: CatalogCommand {
 66 |
 67 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |             commandName: "expression",
 69 |             abstract: "Delete a Expression from the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     struct TranslationEntity: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |             commandName: "translation",
 98 |             abstract: "Delete a Translation from the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |     struct Export: CatalogCommand {
  9 |
 10 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |             commandName: "export",
 12 |             abstract: "Export a translation file using the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Generate: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "generate",
13 |             abstract: "Generate a viewable document using the strings catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:41:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
39 |
40 |         @Option(help: "The 'default' Language for the expressions being imported.")
41 |         var defaultLanguage: LanguageCode = .default
   |                                              `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
42 |
43 |         @Option(help: "Storage mechanism used to persist the catalog. [sqlite, filesystem]")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Import: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "import",
13 |             abstract: "Imports a translation file into the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Insert: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "insert",
 10 |             abstract: "Adds a single entity to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |             commandName: "project",
 31 |             abstract: "Add a Project to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:88:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 |         @Option(help: "The default/development language code.")
 88 |         var defaultLanguage: LanguageCode = .default
    |                                              `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 |         @Option(help: "Contextual information that guides translators.")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:69:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 67 |     struct ExpressionCommand: CatalogCommand {
 68 |
 69 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |             commandName: "expression",
 71 |             abstract: "Add an Expression to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:134:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
132 |     struct TranslationCommand: CatalogCommand {
133 |
134 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 |             commandName: "translation",
136 |             abstract: "Add a Translation to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Query: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "query",
 10 |             abstract: "Perform queries against the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectCommand: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Query for projects in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 |     struct ExpressionCommand: CatalogCommand {
 82 |
 83 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 |             commandName: "expression",
 85 |             abstract: "Query for expressions in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Update: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "update",
 10 |             abstract: "Update a single entity in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |             commandName: "project",
 31 |             abstract: "Update a Project in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     struct ExpressionCommand: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |             commandName: "expression",
 98 |             abstract: "Update an Expression in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 |     struct TranslationCommand: CatalogCommand {
195 |
196 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 |             commandName: "translation",
198 |             abstract: "Update a Translation in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:36:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 34 |     }
 35 |
 36 |     static var configuration: CommandConfiguration = .init(
    |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |         commandName: "catalog",
 38 |         abstract: "Interact with the translation catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configure+Get.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |     struct Get: AsyncParsableCommand {
 6 |
 7 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |             commandName: "get",
 9 |             abstract: "Gets configuration parameters.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     struct Set: AsyncParsableCommand {
 7 |
 8 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |             commandName: "set",
10 |             abstract: "Sets configuration parameters.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Configure.swift:6:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | struct Configure: AsyncParsableCommand {
 5 |
 6 |     static var configuration: CommandConfiguration = .init(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |         commandName: "configure",
 8 |         abstract: "Displays or alters the command configuration details.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:5:1: warning: extension declares a conformance of imported type 'LanguageCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
 3 | import ArgumentParser
 4 |
 5 | extension LanguageCode: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'LanguageCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 | extension RegionCode: ExpressibleByArgument {}
 7 | extension ScriptCode: ExpressibleByArgument {}
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:6:1: warning: extension declares a conformance of imported type 'RegionCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
 4 |
 5 | extension LanguageCode: ExpressibleByArgument {}
 6 | extension RegionCode: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'RegionCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 | extension ScriptCode: ExpressibleByArgument {}
 8 | extension UUID: ExpressibleByArgument {
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:7:1: warning: extension declares a conformance of imported type 'ScriptCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
 5 | extension LanguageCode: ExpressibleByArgument {}
 6 | extension RegionCode: ExpressibleByArgument {}
 7 | extension ScriptCode: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'ScriptCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 | extension UUID: ExpressibleByArgument {
 9 |     public init?(argument: String) {
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:8:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 6 | extension RegionCode: ExpressibleByArgument {}
 7 | extension ScriptCode: ExpressibleByArgument {}
 8 | extension UUID: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 9 |     public init?(argument: String) {
10 |         self.init(uuidString: argument)
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/FileFormat+localizer.swift:4:1: warning: extension declares a conformance of imported type 'FileFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
 2 | import ArgumentParser
 3 |
 4 | extension FileFormat: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'FileFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 5 |     var argument: String {
 6 |         switch self {
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Extensions/RenderFormat+localizer.swift:4:1: warning: extension declares a conformance of imported type 'RenderFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
2 | import ArgumentParser
3 |
4 | extension RenderFormat: ExpressibleByArgument {
  | |- warning: extension declares a conformance of imported type 'RenderFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
5 | }
6 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Preview.swift:8:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 | struct Preview: AsyncParsableCommand {
 7 |
 8 |     static var configuration: CommandConfiguration = .init(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |         commandName: "preview",
10 |         abstract: "Displays the localizations found in a translation file.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/localizer.swift:5:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 |
 4 | @main struct Command: AsyncParsableCommand {
 5 |     static var configuration: CommandConfiguration = {
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |         try? Configuration.load(.default)
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/localizer.swift:13:51: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
11 |             usage: nil,
12 |             discussion: """
13 |             Default Language Code: \(LanguageCode.default.rawValue)
   |                                                   `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |             Default Region Code: \(RegionCode.default.rawValue)
15 |             Default Storage: \(Catalog.Storage.default.rawValue)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 |     case zza
601 |
602 |     public static var `default`: Self = .en
    |                       `- note: static property declared here
603 | }
604 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/localizer.swift:14:47: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 |             discussion: """
13 |             Default Language Code: \(LanguageCode.default.rawValue)
14 |             Default Region Code: \(RegionCode.default.rawValue)
   |                                               `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |             Default Storage: \(Catalog.Storage.default.rawValue)
16 |             """,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 |     case ZW
261 |
262 |     public static var `default`: Self = .US
    |                       `- note: static property declared here
263 | }
264 |
[344/348] Compiling localizer Catalog+Delete.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | extension Catalog {
  6 |     struct Delete: AsyncParsableCommand {
  7 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |             commandName: "delete",
  9 |             abstract: "Remove a single entity in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectEntity: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Delete a Project from the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 65 |     struct ExpressionEntity: CatalogCommand {
 66 |
 67 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |             commandName: "expression",
 69 |             abstract: "Delete a Expression from the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     struct TranslationEntity: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |             commandName: "translation",
 98 |             abstract: "Delete a Translation from the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |     struct Export: CatalogCommand {
  9 |
 10 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |             commandName: "export",
 12 |             abstract: "Export a translation file using the catalog.",
[345/348] Compiling localizer Catalog+Export.swift
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | extension Catalog {
  6 |     struct Delete: AsyncParsableCommand {
  7 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |             commandName: "delete",
  9 |             abstract: "Remove a single entity in the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectEntity: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Delete a Project from the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 65 |     struct ExpressionEntity: CatalogCommand {
 66 |
 67 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |             commandName: "expression",
 69 |             abstract: "Delete a Expression from the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     struct TranslationEntity: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |             commandName: "translation",
 98 |             abstract: "Delete a Translation from the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |     struct Export: CatalogCommand {
  9 |
 10 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |             commandName: "export",
 12 |             abstract: "Export a translation file using the catalog.",
[345/348] Write Objects.LinkFileList
[346/348] Linking localizer
[347/348] Applying localizer
Build complete! (44.66s)
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
    {
      "identity" : "localesupport",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.5.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/richardpiazza/LocaleSupport.git"
    },
    {
      "identity" : "asyncplus",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.3.2",
            "upper_bound" : "0.4.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/richardpiazza/AsyncPlus.git"
    },
    {
      "identity" : "statement",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.7.2",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/richardpiazza/Statement.git"
    },
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser.git"
    },
    {
      "identity" : "xmlcoder",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.15.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/CoreOffice/XMLCoder.git"
    },
    {
      "identity" : "plot",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.11.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/JohnSundell/Plot.git"
    },
    {
      "identity" : "htmlstring",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "6.0.0",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/alexisakers/HTMLString.git"
    },
    {
      "identity" : "sqlite.swift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.14.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/stephencelis/SQLite.swift.git"
    }
  ],
  "manifest_display_name" : "TranslationCatalog",
  "name" : "TranslationCatalog",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "15.0"
    },
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "TranslationCatalog",
      "targets" : [
        "TranslationCatalog",
        "TranslationCatalogIO",
        "TranslationCatalogSQLite",
        "TranslationCatalogFilesystem"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "localizer",
      "targets" : [
        "localizer"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "localizer",
      "module_type" : "SwiftTarget",
      "name" : "localizer",
      "path" : "Sources/localizer",
      "product_dependencies" : [
        "LocaleSupport",
        "ArgumentParser"
      ],
      "product_memberships" : [
        "localizer"
      ],
      "sources" : [
        "Catalog+Delete.swift",
        "Catalog+Export.swift",
        "Catalog+Generate.swift",
        "Catalog+Import.swift",
        "Catalog+Insert.swift",
        "Catalog+Query.swift",
        "Catalog+Update.swift",
        "Catalog.swift",
        "Configuration.swift",
        "Configure+Get.swift",
        "Configure+Set.swift",
        "Configure.swift",
        "Extensions/Arguments.swift",
        "Extensions/FileFormat+localizer.swift",
        "Extensions/FileManager+localizer.swift",
        "Extensions/RenderFormat+localizer.swift",
        "Preview.swift",
        "localizer.swift"
      ],
      "target_dependencies" : [
        "TranslationCatalog",
        "TranslationCatalogIO",
        "TranslationCatalogSQLite",
        "TranslationCatalogFilesystem"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "TranslationCatalogTests",
      "module_type" : "SwiftTarget",
      "name" : "TranslationCatalogTests",
      "path" : "Tests/TranslationCatalogTests",
      "product_dependencies" : [
        "LocaleSupport"
      ],
      "sources" : [
        "Extensions/Catalog+DeleteAssertions.swift",
        "Extensions/Catalog+InsertAssertions.swift",
        "Extensions/Catalog+QueryAssertions.swift",
        "Extensions/Catalog+UpdateAssertions.swift",
        "FilesystemEmptyCatalogTests.swift",
        "FilesystemQueryCatalogTests.swift",
        "SQLiteEmptyCatalogTests.swift",
        "SQLiteQueryCatalogTests.swift",
        "XMLEscapingTests.swift"
      ],
      "target_dependencies" : [
        "TranslationCatalog",
        "TranslationCatalogIO",
        "TranslationCatalogFilesystem",
        "TranslationCatalogSQLite"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TranslationCatalogSQLite",
      "module_type" : "SwiftTarget",
      "name" : "TranslationCatalogSQLite",
      "path" : "Sources/TranslationCatalogSQLite",
      "product_dependencies" : [
        "LocaleSupport",
        "Statement",
        "StatementSQLite",
        "SQLite"
      ],
      "product_memberships" : [
        "TranslationCatalog",
        "localizer"
      ],
      "sources" : [
        "Entities/ExpressionEntity.swift",
        "Entities/ProjectEntity.swift",
        "Entities/ProjectExpressionEntity.swift",
        "Entities/TranslationEntity.swift",
        "SQLite+Query.swift",
        "SQLite+Schema.swift",
        "SQLiteCatalog+AssociatedTypes.swift",
        "SQLiteCatalog.swift",
        "SQLiteStatement+Expression.swift",
        "SQLiteStatement+Project.swift",
        "SQLiteStatement+ProjectExpression.swift",
        "SQLiteStatement+Translation.swift",
        "SQLiteStmt+Entities.swift"
      ],
      "target_dependencies" : [
        "TranslationCatalog"
      ],
      "type" : "library"
    },
    {
      "c99name" : "TranslationCatalogIO",
      "module_type" : "SwiftTarget",
      "name" : "TranslationCatalogIO",
      "path" : "Sources/TranslationCatalogIO",
      "product_dependencies" : [
        "AsyncPlus",
        "XMLCoder",
        "Plot",
        "HTMLString"
      ],
      "product_memberships" : [
        "TranslationCatalog",
        "localizer"
      ],
      "sources" : [
        "ExpressionDecoder.swift",
        "ExpressionEncoder.swift",
        "ExpressionImporter.swift",
        "ExpressionRenderer.swift",
        "Extensions/Dictionary+AppleStrings.swift",
        "Extensions/Expression+IO.swift",
        "Extensions/Plot+IO.swift",
        "Extensions/Translation+IO.swift",
        "Extensions/XML+Expression.swift",
        "FileFormat.swift",
        "Internal/Resource.swift",
        "Internal/StringsXml.swift",
        "MarkdownTable.swift",
        "RenderFormat.swift"
      ],
      "target_dependencies" : [
        "TranslationCatalog"
      ],
      "type" : "library"
    },
    {
      "c99name" : "TranslationCatalogFilesystem",
      "module_type" : "SwiftTarget",
      "name" : "TranslationCatalogFilesystem",
      "path" : "Sources/TranslationCatalogFilesystem",
      "product_dependencies" : [
        "LocaleSupport"
      ],
      "product_memberships" : [
        "TranslationCatalog",
        "localizer"
      ],
      "sources" : [
        "Documents/Document.swift",
        "Documents/ExpressionDocument.swift",
        "Documents/ProjectDocument.swift",
        "Documents/TranslationDocument.swift",
        "FilesystemCatalog.swift"
      ],
      "target_dependencies" : [
        "TranslationCatalog"
      ],
      "type" : "library"
    },
    {
      "c99name" : "TranslationCatalog",
      "module_type" : "SwiftTarget",
      "name" : "TranslationCatalog",
      "path" : "Sources/TranslationCatalog",
      "product_dependencies" : [
        "LocaleSupport"
      ],
      "product_memberships" : [
        "TranslationCatalog",
        "localizer"
      ],
      "sources" : [
        "Catalog.swift",
        "CatalogError.swift",
        "CatalogQuery.swift",
        "CatalogUpdate.swift",
        "Expression.swift",
        "LocaleRepresentable.swift",
        "Project.swift",
        "Translation.swift",
        "UUID+defaults.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "LocalizerTests",
      "module_type" : "SwiftTarget",
      "name" : "LocalizerTests",
      "path" : "Tests/LocalizerTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/File.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/Import1.strings",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/Import2.strings",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/Localizable.strings",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/Strings.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/test_multi_language.sqlite",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/test_single_project_entity.sqlite",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/StructuredResources",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "CatalogDeleteProjectTests.swift",
        "CatalogExportTests.swift",
        "CatalogGenerateTests.swift",
        "Extensions/Process+LocalizerProcess.swift",
        "FilesystemCatalogImportTests.swift",
        "FilesystemTestCase.swift",
        "LocalizerTests.swift",
        "PreviewTests.swift",
        "_LocalizerTestCase.swift"
      ],
      "target_dependencies" : [
        "localizer"
      ],
      "type" : "test"
    }
  ],
  "tools_version" : "5.6"
}
Done.