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 (fba598), with Swift 6.1 for macOS (SPM) on 1 May 2025 04:02:29 UTC.

Swift 6 data race errors: 48

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

[62/265] Emitting module LocaleSupport
[63/265] Compiling ArgumentParser ParserError.swift
[64/265] Compiling ArgumentParser SplitArguments.swift
[65/265] Compiling ArgumentParser DumpHelpGenerator.swift
[66/265] Compiling ArgumentParser HelpCommand.swift
[67/265] Compiling ArgumentParser ParsableArguments.swift
[68/265] Compiling Statement LogicalPredicate.swift
[69/265] Compiling Statement Segment.swift
[76/265] Compiling LocaleSupport LocaleSupportError.swift
[77/265] Compiling LocaleSupport LocalizedStringConvertible.swift
[78/265] Compiling LocaleSupport Locale+LocaleSupport.swift
[79/265] Compiling LocaleSupport LanguageCode.swift
[88/265] Emitting module ArgumentParser
[91/265] Compiling ArgumentParser MessageInfo.swift
[92/265] Compiling ArgumentParser UsageGenerator.swift
[93/265] Compiling ArgumentParser CollectionExtensions.swift
[100/265] Compiling Plot ElementRenderingBuffer.swift
[101/265] Compiling Plot ElementWrapper.swift
[102/265] Compiling Plot Environment.swift
[103/265] Compiling Plot ModifiedComponent.swift
[104/265] Compiling Plot Renderer.swift
[105/265] Compiling Plot String+Escaping.swift
[113/265] Emitting module XMLCoder
[119/265] Compiling HTMLString Mappings.swift
[120/265] Compiling HTMLString NSString+HTMLString.swift
[121/265] Compiling AsyncPlus PassthroughAsyncThrowingSequence.swift
[122/265] Compiling AsyncPlus PassthroughAsyncThrowingSubject.swift
[123/265] Emitting module AsyncPlus
[124/265] Compiling AsyncPlus CurrentValueAsyncSubject.swift
[125/271] Emitting module Plot
[128/275] Compiling ArgumentParser HelpGenerator.swift
[130/275] Compiling Plot PodcastMediaType.swift
[131/275] Compiling Plot PodcastType.swift
[132/275] Compiling Plot RSS.swift
[133/275] Compiling Plot RSSAttributes.swift
[138/275] Compiling XMLCoder XMLEncoderImplementation.swift
[139/275] Compiling XMLCoder XMLEncodingStorage.swift
[140/275] Compiling XMLCoder XMLKeyedEncodingContainer.swift
[141/275] Compiling XMLCoder XMLReferencingEncoder.swift
[142/275] Compiling XMLCoder XMLUnkeyedEncodingContainer.swift
[143/275] Compiling Plot TwitterCardType.swift
[144/275] Compiling Plot URLRepresentable.swift
[145/275] Compiling Plot XML.swift
[172/275] Compiling HTMLString HTMLString.swift
[173/275] Emitting module HTMLString
[184/275] Compiling AsyncPlus CurrentValueAsyncThrowingSubject.swift
[185/275] Compiling AsyncPlus PassthroughAsyncSequence.swift
[186/275] Compiling AsyncPlus PassthroughAsyncSubject.swift
[198/275] Compiling ArgumentParser CompletionKind.swift
[199/275] Compiling ArgumentParser Errors.swift
[232/275] Compiling SQLite Schema.swift
[233/275] Compiling SQLite Setter.swift
[260/294] Compiling TranslationCatalog LocaleRepresentable.swift
[261/294] Compiling TranslationCatalog UUID+TranslationCatalog.swift
[262/294] Compiling TranslationCatalog Project.swift
[263/294] Compiling TranslationCatalog Translation.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Translation.swift:22:39: 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 |         id: UUID = .zero,
21 |         expressionId: Expression.ID = .zero,
22 |         languageCode: 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
23 |         scriptCode: ScriptCode? = nil,
24 |         regionCode: RegionCode? = 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/TranslationCatalog/Translation.swift:61:39: 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
59 |         uuid: UUID,
60 |         expressionID: Expression.ID = .zero,
61 |         languageCode: 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
62 |         scriptCode: ScriptCode? = nil,
63 |         regionCode: RegionCode? = 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 |
[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: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 Expression.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Expression.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 |         key: String = "",
 28 |         name: String = "",
 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 |         context: 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/TranslationCatalog/Expression.swift:86: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
 84 |         key: String = "",
 85 |         name: String = "",
 86 |         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
 87 |         context: String? = nil,
 88 |         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 |
[268/294] Compiling TranslationCatalog CatalogQuery.swift
[269/294] Emitting module TranslationCatalog
/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: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: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 |         key: String = "",
 28 |         name: String = "",
 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 |         context: 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/TranslationCatalog/Expression.swift:86: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
 84 |         key: String = "",
 85 |         name: String = "",
 86 |         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
 87 |         context: String? = nil,
 88 |         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/TranslationCatalog/Translation.swift:22:39: 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 |         id: UUID = .zero,
21 |         expressionId: Expression.ID = .zero,
22 |         languageCode: 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
23 |         scriptCode: ScriptCode? = nil,
24 |         regionCode: RegionCode? = 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/TranslationCatalog/Translation.swift:61:39: 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
59 |         uuid: UUID,
60 |         expressionID: Expression.ID = .zero,
61 |         languageCode: 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
62 |         scriptCode: ScriptCode? = nil,
63 |         regionCode: RegionCode? = 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 |
[270/294] Compiling StatementSQLite InsertContext.swift
[271/294] Compiling StatementSQLite JoinContext.swift
[272/294] Compiling StatementSQLite FromContext.swift
[273/294] Compiling StatementSQLite HavingContext.swift
[274/295] Compiling StatementSQLite DeleteContext.swift
[275/295] Compiling StatementSQLite Field+SQLite.swift
[276/295] Compiling StatementSQLite SQLiteStatement.swift
[277/295] Compiling StatementSQLite Segment+SQLite.swift
[278/295] Compiling StatementSQLite LimitContext.swift
[279/295] Compiling StatementSQLite OrderContext.swift
[280/295] Compiling StatementSQLite SelectContext.swift
[281/295] Compiling StatementSQLite SetContext.swift
[282/295] Compiling StatementSQLite UpdateContext.swift
[283/295] Compiling StatementSQLite ValuesContext.swift
[284/295] Compiling StatementSQLite DataType+SQLite.swift
[285/295] Compiling StatementSQLite DataTypeConvertible+SQLite.swift
[289/295] Emitting module StatementSQLite
[290/295] Compiling StatementSQLite AlterTableContext.swift
[291/295] Compiling StatementSQLite CreateContext.swift
[292/315] Compiling StatementSQLite WhereContext.swift
[293/328] 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 |
[294/329] Emitting module TranslationCatalogFilesystem
[295/329] Compiling TranslationCatalogIO Plot+IO.swift
[296/329] Compiling TranslationCatalogIO Translation+IO.swift
[297/329] Compiling TranslationCatalogIO MarkdownTable.swift
[298/329] Compiling TranslationCatalogIO XML+Expression.swift
[299/329] 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 |
[300/329] Compiling TranslationCatalogIO FileFormat.swift
[301/329] Compiling TranslationCatalogSQLite ProjectExpressionEntity.swift
[302/329] Compiling TranslationCatalogSQLite TranslationEntity.swift
[303/329] Compiling TranslationCatalogSQLite ExpressionEntity.swift
[304/329] Compiling TranslationCatalogSQLite ProjectEntity.swift
[305/329] Compiling TranslationCatalogSQLite SQLite+Query.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 |
[306/329] Compiling TranslationCatalogSQLite SQLite+Schema.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 |
[307/329] 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 |
[308/329] Compiling TranslationCatalogIO RenderFormat.swift
[309/329] Compiling TranslationCatalogSQLite SQLiteStatement+Project.swift
[310/329] Compiling TranslationCatalogSQLite SQLiteStatement+ProjectExpression.swift
[311/329] Compiling TranslationCatalogSQLite SQLiteStatement+Translation.swift
[312/330] Compiling TranslationCatalogSQLite SQLiteStatement+Expression.swift
[313/330] 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: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
   |                `- 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: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
   |                `- 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: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
   |                `- 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: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
   |                `- 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 {
/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: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
   |                `- 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: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
   |                `- 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/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: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
   |                `- 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: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
   |                `- 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: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
   |                `- 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: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
   |                `- 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/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: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
   |                `- 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: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
   |                `- 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"]! }
[320/330] 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 |
[321/330] 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 {
[322/330] Compiling TranslationCatalogSQLite SQLiteCatalog.swift
[323/330] Compiling TranslationCatalogFilesystem TranslationDocument.swift
[324/330] Compiling TranslationCatalogFilesystem Document.swift
[325/330] Compiling TranslationCatalogFilesystem FilesystemCatalog.swift
[326/330] Compiling TranslationCatalogFilesystem ExpressionDocument.swift
[327/330] Compiling TranslationCatalogFilesystem ProjectDocument.swift
[328/348] Compiling localizer Arguments.swift
[329/348] Compiling localizer FileFormat+localizer.swift
[330/348] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- 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 |
[331/348] Compiling localizer FileManager+localizer.swift
[332/348] Compiling localizer RenderFormat+localizer.swift
[333/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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |             commandName: "get",
 9 |             abstract: "Gets configuration parameters.",
[334/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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |             commandName: "get",
 9 |             abstract: "Gets configuration parameters.",
[335/349] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- 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 |
[336/349] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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+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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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:30: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
 28 |     struct ProjectCommand: CatalogCommand {
 29 |
 30 |         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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |             commandName: "project",
 32 |             abstract: "Add a Project to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:89: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
 87 |
 88 |         @Option(help: "The default/development language code.")
 89 |         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
 90 |
 91 |         @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:70: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
 68 |     struct ExpressionCommand: CatalogCommand {
 69 |
 70 |         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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 71 |             commandName: "expression",
 72 |             abstract: "Add an Expression to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:133: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
131 |     struct TranslationCommand: CatalogCommand {
132 |
133 |         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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |             commandName: "translation",
135 |             abstract: "Add a Translation to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:185: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
183 |     struct KeyValueCommand: CatalogCommand {
184 |
185 |         static var configuration: CommandConfiguration = 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |             commandName: "key-value",
187 |             abstract: "Quickly add a Expression=Translation pairing 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                    `- 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.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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- 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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- 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 |
[337/349] Compiling localizer Catalog+Generate.swift
/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- 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.",
[338/349] Compiling localizer Catalog+Import.swift
/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- 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.",
[339/349] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                    `- 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.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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |         commandName: "catalog",
 38 |         abstract: "Interact with the translation catalog.",
[340/349] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                    `- 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.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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |         commandName: "catalog",
 38 |         abstract: "Interact with the translation catalog.",
[341/349] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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+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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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.",
[342/349] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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+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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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.",
[343/349] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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:30: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
 28 |     struct ProjectCommand: CatalogCommand {
 29 |
 30 |         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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |             commandName: "project",
 32 |             abstract: "Add a Project to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:89: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
 87 |
 88 |         @Option(help: "The default/development language code.")
 89 |         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
 90 |
 91 |         @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:70: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
 68 |     struct ExpressionCommand: CatalogCommand {
 69 |
 70 |         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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 71 |             commandName: "expression",
 72 |             abstract: "Add an Expression to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:133: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
131 |     struct TranslationCommand: CatalogCommand {
132 |
133 |         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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |             commandName: "translation",
135 |             abstract: "Add a Translation to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:185: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
183 |     struct KeyValueCommand: CatalogCommand {
184 |
185 |         static var configuration: CommandConfiguration = 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |             commandName: "key-value",
187 |             abstract: "Quickly add a Expression=Translation pairing to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:216:35: 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
214 |                 key: key,
215 |                 name: key,
216 |                 defaultLanguage: .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
217 |                 context: nil,
218 |                 feature: 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/localizer/Catalog+Insert.swift:227: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
225 |                 id: .zero,
226 |                 expressionId: expressionId,
227 |                 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
228 |                 scriptCode: nil,
229 |                 regionCode: 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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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.",
[344/349] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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:30: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
 28 |     struct ProjectCommand: CatalogCommand {
 29 |
 30 |         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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |             commandName: "project",
 32 |             abstract: "Add a Project to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:89: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
 87 |
 88 |         @Option(help: "The default/development language code.")
 89 |         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
 90 |
 91 |         @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:70: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
 68 |     struct ExpressionCommand: CatalogCommand {
 69 |
 70 |         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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 71 |             commandName: "expression",
 72 |             abstract: "Add an Expression to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:133: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
131 |     struct TranslationCommand: CatalogCommand {
132 |
133 |         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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |             commandName: "translation",
135 |             abstract: "Add a Translation to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:185: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
183 |     struct KeyValueCommand: CatalogCommand {
184 |
185 |         static var configuration: CommandConfiguration = 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |             commandName: "key-value",
187 |             abstract: "Quickly add a Expression=Translation pairing to the catalog.",
/Users/admin/builder/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:216:35: 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
214 |                 key: key,
215 |                 name: key,
216 |                 defaultLanguage: .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
217 |                 context: nil,
218 |                 feature: 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/localizer/Catalog+Insert.swift:227: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
225 |                 id: .zero,
226 |                 expressionId: expressionId,
227 |                 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
228 |                 scriptCode: nil,
229 |                 regionCode: 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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |                    `- 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.",
[345/349] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- 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.",
[346/349] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- 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.",
[346/349] Write Objects.LinkFileList
[347/349] Linking localizer
[348/349] Applying localizer
Build complete! (18.71s)
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
    {
      "identity" : "localesupport",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.6.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+TranslationCatalog.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.8"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/richardpiazza/translationcatalog/main
Repository:               richardpiazza/TranslationCatalog
Swift version used:       6.1
Target:                   TranslationCatalog
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            release/6.2 -> FETCH_HEAD
 * [new branch]      release/6.2 -> origin/release/6.2
HEAD is now at 8799b69 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'TranslationCatalog'...
Finished extracting symbol information for 'TranslationCatalog'. (3.32s)
Building documentation for 'TranslationCatalog'...
Finished building documentation for 'TranslationCatalog' (0.18s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/translationcatalog/main
Updating https://github.com/alexisakers/HTMLString.git
Updating https://github.com/stephencelis/SQLite.swift.git
Updating https://github.com/apple/swift-argument-parser
Updating https://github.com/richardpiazza/Statement.git
Updating https://github.com/richardpiazza/AsyncPlus.git
Updating https://github.com/richardpiazza/LocaleSupport.git
Updating https://github.com/CoreOffice/XMLCoder.git
Updated https://github.com/richardpiazza/AsyncPlus.git (0.44s)
Updating https://github.com/JohnSundell/Plot.git
Updated https://github.com/richardpiazza/LocaleSupport.git (0.47s)
Updated https://github.com/CoreOffice/XMLCoder.git (0.47s)
Updated https://github.com/richardpiazza/Statement.git (0.47s)
Updated https://github.com/alexisakers/HTMLString.git (0.48s)
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Updated https://github.com/stephencelis/SQLite.swift.git (0.55s)
Updated https://github.com/apple/swift-argument-parser (0.55s)
Updated https://github.com/JohnSundell/Plot.git (0.44s)
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.44s)
Computing version for https://github.com/stephencelis/SQLite.swift.git
Computed https://github.com/stephencelis/SQLite.swift.git at 0.14.1 (1.55s)
Computing version for https://github.com/alexisakers/HTMLString.git
Computed https://github.com/alexisakers/HTMLString.git at 6.0.1 (0.57s)
Computing version for https://github.com/JohnSundell/Plot.git
Computed https://github.com/JohnSundell/Plot.git at 0.11.0 (0.57s)
Computing version for https://github.com/CoreOffice/XMLCoder.git
Computed https://github.com/CoreOffice/XMLCoder.git at 0.17.1 (0.57s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.2.0 (0.61s)
Computing version for https://github.com/richardpiazza/Statement.git
Computed https://github.com/richardpiazza/Statement.git at 0.7.2 (0.60s)
Computing version for https://github.com/richardpiazza/AsyncPlus.git
Computed https://github.com/richardpiazza/AsyncPlus.git at 0.3.2 (0.46s)
Computing version for https://github.com/richardpiazza/LocaleSupport.git
Computed https://github.com/richardpiazza/LocaleSupport.git at 0.6.0 (0.44s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.54s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.78s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.39s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/7] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit Identifier.swift
[7/53] Compiling SymbolKit KindIdentifier.swift
[8/53] Compiling SymbolKit Location.swift
[9/53] Compiling SymbolKit Mutability.swift
[10/57] Compiling SymbolKit SemanticVersion.swift
[11/57] Compiling SymbolKit AccessControl.swift
[12/57] Compiling SymbolKit Availability.swift
[13/57] Compiling SymbolKit AvailabilityItem.swift
[14/57] Compiling SymbolKit Domain.swift
[15/57] Emitting module SymbolKit
[16/57] Compiling SymbolKit Relationship.swift
[17/57] Compiling SymbolKit RelationshipKind.swift
[18/57] Compiling SymbolKit SourceOrigin.swift
[19/57] Compiling SymbolKit GenericConstraints.swift
[20/57] Compiling SymbolKit Swift.swift
[21/57] Compiling SymbolKit GenericConstraint.swift
[22/57] Compiling SymbolKit GenericParameter.swift
[23/57] Compiling SymbolKit Generics.swift
[24/57] Compiling SymbolKit Namespace.swift
[25/57] Compiling SymbolKit SourceRange.swift
[26/57] Compiling SymbolKit Metadata.swift
[27/57] Compiling SymbolKit Module.swift
[28/57] Compiling SymbolKit OperatingSystem.swift
[29/57] Compiling SymbolKit Platform.swift
[30/57] Compiling SymbolKit Mixin+Equals.swift
[31/57] Compiling SymbolKit Mixin+Hash.swift
[32/57] Compiling SymbolKit Mixin.swift
[33/57] Compiling SymbolKit LineList.swift
[34/57] Compiling SymbolKit Position.swift
[35/57] Compiling SymbolKit Names.swift
[36/57] Compiling SymbolKit SPI.swift
[37/57] Compiling SymbolKit Snippet.swift
[38/57] Compiling SymbolKit Extension.swift
[39/57] Compiling SymbolKit DeclarationFragments.swift
[40/57] Compiling SymbolKit Fragment.swift
[41/57] Compiling SymbolKit FragmentKind.swift
[42/57] Compiling SymbolKit FunctionParameter.swift
[43/57] Compiling SymbolKit FunctionSignature.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets Snippet.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.89s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/9] Compiling LocaleSupport LocalizedStringConvertible.swift
[3/9] Compiling LocaleSupport LocaleSupportError.swift
[4/9] Compiling LocaleSupport LocaleSupportConfiguration.swift
[5/9] Compiling LocaleSupport Locale+LocaleSupport.swift
[6/9] Compiling LocaleSupport RegionCode.swift
[7/9] Compiling LocaleSupport ScriptCode.swift
[8/9] Compiling LocaleSupport LanguageCode.swift
[9/9] Emitting module LocaleSupport
[10/19] Compiling TranslationCatalog UUID+TranslationCatalog.swift
[11/19] Compiling TranslationCatalog Translation.swift
[12/19] Compiling TranslationCatalog Project.swift
[13/19] Compiling TranslationCatalog LocaleRepresentable.swift
[14/19] Compiling TranslationCatalog CatalogError.swift
[15/19] Compiling TranslationCatalog CatalogUpdate.swift
[16/19] Compiling TranslationCatalog CatalogQuery.swift
[17/19] Compiling TranslationCatalog Catalog.swift
[18/19] Emitting module TranslationCatalog
[19/19] Compiling TranslationCatalog Expression.swift
Build of target: 'TranslationCatalog' complete! (1.32s)
Target:                   TranslationCatalogIO
Extracting symbol information for 'TranslationCatalogIO'...
Finished extracting symbol information for 'TranslationCatalogIO'. (2.57s)
Building documentation for 'TranslationCatalogIO'...
Finished building documentation for 'TranslationCatalogIO' (0.07s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/translationcatalog/main
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
Build of product 'snippet-extract' complete! (0.39s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/118] Emitting module AsyncPlus
[3/118] Compiling HTMLString NSString+HTMLString.swift
[4/118] Compiling AsyncPlus PassthroughAsyncSubject.swift
[5/118] Compiling AsyncPlus PassthroughAsyncThrowingSequence.swift
[6/118] Compiling AsyncPlus CurrentValueAsyncThrowingSubject.swift
[7/118] Compiling AsyncPlus PassthroughAsyncSequence.swift
[8/118] Compiling AsyncPlus CurrentValueAsyncSubject.swift
[9/118] Compiling AsyncPlus PassthroughAsyncThrowingSubject.swift
[10/118] Emitting module HTMLString
[11/118] Compiling HTMLString Mappings.swift
[12/118] Compiling HTMLString HTMLString.swift
[13/118] Compiling Plot XMLAttributes.swift
[14/118] Compiling Plot XMLElements.swift
[15/118] Compiling Plot AnyAttribute.swift
[16/118] Compiling Plot AnyElement.swift
[17/118] Compiling Plot AnyEnvironmentValue.swift
[18/118] Compiling Plot AnyNode.swift
[19/118] Compiling Plot SiteMap.swift
[20/118] Compiling Plot SiteMapChangeFrequency.swift
[21/118] Compiling Plot SiteMapElements.swift
[22/118] Compiling Plot TwitterCardType.swift
[23/118] Compiling Plot URLRepresentable.swift
[24/118] Compiling Plot XML.swift
[25/124] Compiling Plot Attribute.swift
[26/124] Compiling Plot Component.swift
[27/124] Compiling Plot ComponentAttributes.swift
[28/124] Compiling Plot ComponentBuilder.swift
[29/124] Compiling Plot ComponentContainer.swift
[30/124] Compiling Plot ComponentGroup.swift
[31/124] Compiling Plot ControlFlow.swift
[32/124] Compiling Plot PodcastMediaType.swift
[33/124] Compiling Plot PodcastType.swift
[34/124] Compiling Plot RSS.swift
[35/124] Compiling Plot RSSAttributes.swift
[36/124] Compiling Plot RSSElements.swift
[37/124] Compiling Plot Renderable.swift
[38/124] Compiling Plot Optional+Component.swift
[39/124] Compiling Plot PodcastAttributes.swift
[40/124] Compiling Plot PodcastComponents.swift
[41/124] Compiling Plot PodcastElements.swift
[42/124] Compiling Plot PodcastEpisodeType.swift
[43/124] Compiling Plot PodcastFeed.swift
[46/124] Compiling Plot Document.swift
[47/124] Compiling Plot DocumentEncoding.swift
[48/124] Compiling Plot Element.swift
[54/124] Compiling Plot ElementClosingMode.swift
[55/124] Compiling Plot ElementComponent.swift
[56/124] Compiling Plot ElementDefinition.swift
[57/124] Compiling Plot EmptyComponent.swift
[58/124] Compiling Plot EnvironmentKey.swift
[59/129] Compiling Plot EnvironmentValue.swift
[60/129] Compiling Plot HTML.swift
[61/129] Compiling Plot HTMLAnchorRelationship.swift
[62/129] Compiling Plot HTMLAnchorTarget.swift
[63/129] Compiling Plot HTMLAttributes.swift
[64/129] Compiling Plot HTMLAudioFormat.swift
[65/129] Compiling Plot HTMLButtonType.swift
[66/129] Compiling Plot HTMLComponents.swift
[67/129] Compiling Plot HTMLElements.swift
[68/129] Compiling Plot HTMLFormContentType.swift
[69/129] Compiling Plot HTMLFormMethod.swift
[70/129] Compiling Plot HTMLInputType.swift
[71/129] Compiling Plot HTMLLinkRelationship.swift
[72/129] Compiling Plot HTMLListStyle.swift
[73/129] Compiling Plot HTMLVideoFormat.swift
[74/129] Emitting module XMLCoder
[75/129] Emitting module Plot
[78/129] Compiling Plot HTMLViewportWidthMode.swift
[79/129] Compiling Plot Indentation.swift
[80/129] Compiling Plot Language.swift
[81/129] Compiling Plot Node.swift
[82/129] Compiling Plot NodeConvertible.swift
[88/129] Compiling Plot ElementRenderingBuffer.swift
[89/129] Compiling Plot ElementWrapper.swift
[90/129] Compiling Plot Environment.swift
[91/129] Compiling Plot ModifiedComponent.swift
[92/129] Compiling Plot Renderer.swift
[93/129] Compiling Plot String+Escaping.swift
[115/129] Compiling XMLCoder XMLEncoderImplementation.swift
[116/129] Compiling XMLCoder XMLEncodingStorage.swift
[117/129] Compiling XMLCoder XMLKeyedEncodingContainer.swift
[118/129] Compiling XMLCoder XMLReferencingEncoder.swift
[119/129] Compiling XMLCoder XMLUnkeyedEncodingContainer.swift
[130/143] Compiling TranslationCatalogIO Resource.swift
[131/143] Compiling TranslationCatalogIO StringsXml.swift
[132/144] Compiling TranslationCatalogIO FileFormat.swift
[133/144] Compiling TranslationCatalogIO MarkdownTable.swift
[134/144] Compiling TranslationCatalogIO Plot+IO.swift
[135/144] Compiling TranslationCatalogIO Translation+IO.swift
[136/144] Compiling TranslationCatalogIO ExpressionImporter.swift
[137/144] Compiling TranslationCatalogIO ExpressionRenderer.swift
[138/144] Compiling TranslationCatalogIO XML+Expression.swift
[139/144] Compiling TranslationCatalogIO ExpressionDecoder.swift
[140/144] Compiling TranslationCatalogIO ExpressionEncoder.swift
[141/144] Emitting module TranslationCatalogIO
[142/144] Compiling TranslationCatalogIO Dictionary+AppleStrings.swift
[143/144] Compiling TranslationCatalogIO Expression+IO.swift
[144/144] Compiling TranslationCatalogIO RenderFormat.swift
Build of target: 'TranslationCatalogIO' complete! (2.44s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/main/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/main/linkable-paths.json
Target:                   TranslationCatalogFilesystem
Extracting symbol information for 'TranslationCatalogFilesystem'...
Finished extracting symbol information for 'TranslationCatalogFilesystem'. (1.19s)
Building documentation for 'TranslationCatalogFilesystem'...
Finished building documentation for 'TranslationCatalogFilesystem' (0.06s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/translationcatalog/main
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
Build of product 'snippet-extract' complete! (0.40s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/7] Compiling TranslationCatalogFilesystem TranslationDocument.swift
[3/7] Compiling TranslationCatalogFilesystem FilesystemCatalog.swift
[4/7] Emitting module TranslationCatalogFilesystem
[5/7] Compiling TranslationCatalogFilesystem ExpressionDocument.swift
[6/7] Compiling TranslationCatalogFilesystem ProjectDocument.swift
[7/7] Compiling TranslationCatalogFilesystem Document.swift
Build of target: 'TranslationCatalogFilesystem' complete! (1.08s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/main/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/main/linkable-paths.json
Target:                   TranslationCatalogSQLite
Extracting symbol information for 'TranslationCatalogSQLite'...
Finished extracting symbol information for 'TranslationCatalogSQLite'. (2.89s)
Building documentation for 'TranslationCatalogSQLite'...
Finished building documentation for 'TranslationCatalogSQLite' (0.08s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/translationcatalog/main
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
Build of product 'snippet-extract' complete! (0.37s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/60] Compiling SQLite Connection+Attach.swift
[3/60] Compiling SQLite Value.swift
[4/60] Compiling SQLite Cipher.swift
[5/62] Compiling SQLite Backup.swift
[6/62] Compiling SQLite Blob.swift
[7/62] Compiling SQLite Connection+Aggregation.swift
[8/62] Compiling SQLite SchemaReader.swift
[9/62] Compiling SQLite CoreFunctions.swift
[10/62] Compiling SQLite CustomFunctions.swift
[11/62] Emitting module Statement
[12/62] Compiling SQLite RTree.swift
[13/62] Compiling SQLite Foundation.swift
[14/62] Compiling SQLite Helpers.swift
[15/62] Compiling SQLite Statement.swift
[16/62] Compiling SQLite URIQueryParameter.swift
[17/62] Compiling SQLite Connection+Schema.swift
[18/62] Compiling SQLite SchemaChanger.swift
[19/62] Compiling SQLite SchemaDefinitions.swift
[20/62] Compiling SQLite FTS4.swift
[21/62] Compiling SQLite FTS5.swift
[22/62] Compiling SQLite Result.swift
[23/62] Compiling SQLite SQLiteFeature.swift
[24/62] Compiling SQLite SQLiteVersion.swift
[25/62] Compiling SQLite Connection+Pragmas.swift
[26/62] Compiling SQLite Connection.swift
[27/62] Compiling SQLite Errors.swift
[28/62] Compiling Statement LogicalPredicate.swift
[29/62] Compiling Statement Segment.swift
[42/84] Emitting module SQLite
[43/84] Compiling StatementSQLite UpdateContext.swift
[44/84] Compiling StatementSQLite ValuesContext.swift
[45/84] Compiling StatementSQLite InsertContext.swift
[46/84] Compiling StatementSQLite JoinContext.swift
[47/84] Compiling StatementSQLite SQLiteStatement.swift
[48/84] Compiling StatementSQLite Segment+SQLite.swift
[49/84] Compiling StatementSQLite LimitContext.swift
[50/84] Compiling StatementSQLite OrderContext.swift
[51/84] Compiling StatementSQLite SelectContext.swift
[52/84] Compiling StatementSQLite SetContext.swift
[53/85] Emitting module StatementSQLite
[54/85] Compiling StatementSQLite DeleteContext.swift
[55/85] Compiling StatementSQLite Field+SQLite.swift
[56/85] Compiling StatementSQLite FromContext.swift
[57/85] Compiling StatementSQLite HavingContext.swift
[58/85] Compiling StatementSQLite AlterTableContext.swift
[59/85] Compiling StatementSQLite CreateContext.swift
[60/85] Compiling StatementSQLite DataType+SQLite.swift
[61/85] Compiling StatementSQLite DataTypeConvertible+SQLite.swift
[62/85] Compiling StatementSQLite WhereContext.swift
[77/85] Compiling SQLite Expression.swift
[78/85] Compiling SQLite Operators.swift
[79/85] Compiling SQLite Query+with.swift
[81/85] Compiling SQLite Coding.swift
[82/85] Compiling SQLite Collation.swift
[83/85] Compiling SQLite Query.swift
[84/85] Compiling SQLite Schema.swift
[85/85] Compiling SQLite Setter.swift
[86/98] Compiling TranslationCatalogSQLite ExpressionEntity.swift
[87/98] Compiling TranslationCatalogSQLite ProjectEntity.swift
[88/98] Emitting module TranslationCatalogSQLite
[89/98] Compiling TranslationCatalogSQLite ProjectExpressionEntity.swift
[90/98] Compiling TranslationCatalogSQLite TranslationEntity.swift
[91/99] Compiling TranslationCatalogSQLite SQLiteStatement+Project.swift
[92/99] Compiling TranslationCatalogSQLite SQLite+Query.swift
[93/99] Compiling TranslationCatalogSQLite SQLite+Schema.swift
[94/99] Compiling TranslationCatalogSQLite SQLiteStatement+ProjectExpression.swift
[95/99] Compiling TranslationCatalogSQLite SQLiteStatement+Translation.swift
[96/99] Compiling TranslationCatalogSQLite SQLiteCatalog+AssociatedTypes.swift
[97/99] Compiling TranslationCatalogSQLite SQLiteStatement+Expression.swift
[98/99] Compiling TranslationCatalogSQLite SQLiteCatalog.swift
[99/99] Compiling TranslationCatalogSQLite SQLiteStmt+Entities.swift
Build of target: 'TranslationCatalogSQLite' complete! (2.76s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/main/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/main/linkable-paths.json
Target:                   localizer
Extracting symbol information for 'localizer'...
Finished extracting symbol information for 'localizer'. (2.64s)
Building documentation for 'localizer'...
Finished building documentation for 'localizer' (0.47s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/translationcatalog/main
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
Build of product 'snippet-extract' complete! (0.37s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/3] Emitting module ArgumentParserToolInfo
[3/3] Compiling ArgumentParserToolInfo ToolInfo.swift
[4/41] Emitting module ArgumentParser
[5/45] Compiling ArgumentParser BashCompletionsGenerator.swift
[6/45] Compiling ArgumentParser CompletionsGenerator.swift
[7/45] Compiling ArgumentParser FishCompletionsGenerator.swift
[8/45] Compiling ArgumentParser ZshCompletionsGenerator.swift
[9/45] Compiling ArgumentParser Argument.swift
[10/45] Compiling ArgumentParser ParsableArguments.swift
[11/45] Compiling ArgumentParser ParsableArgumentsValidation.swift
[12/45] Compiling ArgumentParser ParsableCommand.swift
[13/45] Compiling ArgumentParser ArgumentDecoder.swift
[14/45] Compiling ArgumentParser ParserError.swift
[15/45] Compiling ArgumentParser SplitArguments.swift
[16/45] Compiling ArgumentParser DumpHelpGenerator.swift
[17/45] Compiling ArgumentParser HelpCommand.swift
[18/45] Compiling ArgumentParser InputOrigin.swift
[19/45] Compiling ArgumentParser Name.swift
[20/45] Compiling ArgumentParser Parsed.swift
[21/45] Compiling ArgumentParser ParsedValues.swift
[22/45] Compiling ArgumentParser Platform.swift
[23/45] Compiling ArgumentParser SequenceExtensions.swift
[24/45] Compiling ArgumentParser StringExtensions.swift
[25/45] Compiling ArgumentParser Tree.swift
[26/45] Compiling ArgumentParser HelpGenerator.swift
[27/45] Compiling ArgumentParser MessageInfo.swift
[28/45] Compiling ArgumentParser UsageGenerator.swift
[29/45] Compiling ArgumentParser CollectionExtensions.swift
[30/45] Compiling ArgumentParser Flag.swift
[31/45] Compiling ArgumentParser NameSpecification.swift
[32/45] Compiling ArgumentParser Option.swift
[33/45] Compiling ArgumentParser OptionGroup.swift
[34/45] Compiling ArgumentParser AsyncParsableCommand.swift
[35/45] Compiling ArgumentParser CommandConfiguration.swift
[36/45] Compiling ArgumentParser EnumerableFlag.swift
[37/45] Compiling ArgumentParser ExpressibleByArgument.swift
[38/45] Compiling ArgumentParser ArgumentHelp.swift
[39/45] Compiling ArgumentParser ArgumentVisibility.swift
[40/45] Compiling ArgumentParser CompletionKind.swift
[41/45] Compiling ArgumentParser Errors.swift
[42/45] Compiling ArgumentParser ArgumentDefinition.swift
[43/45] Compiling ArgumentParser ArgumentSet.swift
[44/45] Compiling ArgumentParser CommandParser.swift
[45/45] Compiling ArgumentParser InputKey.swift
[46/63] Compiling localizer Preview.swift
[47/63] Compiling localizer Arguments.swift
[48/63] Compiling localizer FileFormat+localizer.swift
[49/63] Compiling localizer Catalog+Generate.swift
[50/63] Compiling localizer Catalog+Import.swift
[51/63] Compiling localizer FileManager+localizer.swift
[52/63] Compiling localizer RenderFormat+localizer.swift
[53/63] Compiling localizer Configuration.swift
[54/63] Compiling localizer Configure+Get.swift
[55/63] Compiling localizer Configure+Set.swift
[56/63] Compiling localizer Configure.swift
[57/63] Compiling localizer Catalog+Update.swift
[58/63] Compiling localizer Catalog.swift
[59/64] Compiling localizer Catalog+Delete.swift
[60/64] Compiling localizer Catalog+Export.swift
[61/64] Emitting module localizer
[62/64] Compiling localizer Catalog+Insert.swift
[63/64] Compiling localizer Catalog+Query.swift
[64/64] Compiling localizer localizer.swift
Build of target: 'localizer' complete! (2.46s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/main/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/main/linkable-paths.json
    2498
15	/Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/translationcatalog/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/richardpiazza/translationcatalog/main
File count: 2498
Doc size:   15.0MB
Preparing doc bundle ...
Uploading prod-richardpiazza-translationcatalog-main-80336982.zip to s3://spi-docs-inbox/prod-richardpiazza-translationcatalog-main-80336982.zip
Copying... [10%]
Copying... [21%]
Copying... [31%]
Copying... [41%]
Copying... [51%]
Copying... [62%]
Copying... [70%]
Copying... [80%]
Copying... [91%]
Copying... [100%]
Done.