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 0.6.1 (1e3bbc), with Swift 6.0 for Linux on 12 Nov 2024 19:47:18 UTC.

Swift 6 data race errors: 46

Build Command

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

Build Log

 2 | import ArgumentParser
 3 |
 4 | extension FileFormat: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'FileFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 5 |     var argument: String {
 6 |         switch self {
[362/379] Compiling localizer Configure+Set.swift
/host/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     struct Set: AsyncParsableCommand {
 7 |
 8 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |             commandName: "set",
10 |             abstract: "Sets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 6 |     struct Set: AsyncParsableCommand {
 7 |
 8 |         static var configuration: CommandConfiguration = .init(
   |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |             commandName: "set",
10 |             abstract: "Sets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure.swift:6:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | struct Configure: AsyncParsableCommand {
 5 |
 6 |     static var configuration: CommandConfiguration = .init(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |         commandName: "configure",
 8 |         abstract: "Displays or alters the command configuration details.",
/host/spi-builder-workspace/Sources/localizer/Configure.swift:6:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 4 | struct Configure: AsyncParsableCommand {
 5 |
 6 |     static var configuration: CommandConfiguration = .init(
   |                                                       `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 7 |         commandName: "configure",
 8 |         abstract: "Displays or alters the command configuration details.",
[363/379] Compiling localizer Configure.swift
/host/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     struct Set: AsyncParsableCommand {
 7 |
 8 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |             commandName: "set",
10 |             abstract: "Sets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 6 |     struct Set: AsyncParsableCommand {
 7 |
 8 |         static var configuration: CommandConfiguration = .init(
   |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |             commandName: "set",
10 |             abstract: "Sets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure.swift:6:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | struct Configure: AsyncParsableCommand {
 5 |
 6 |     static var configuration: CommandConfiguration = .init(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |         commandName: "configure",
 8 |         abstract: "Displays or alters the command configuration details.",
/host/spi-builder-workspace/Sources/localizer/Configure.swift:6:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 4 | struct Configure: AsyncParsableCommand {
 5 |
 6 |     static var configuration: CommandConfiguration = .init(
   |                                                       `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 7 |         commandName: "configure",
 8 |         abstract: "Displays or alters the command configuration details.",
[364/379] Compiling localizer Preview.swift
/host/spi-builder-workspace/Sources/localizer/Preview.swift:8:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 | struct Preview: AsyncParsableCommand {
 7 |
 8 |     static var configuration: CommandConfiguration = .init(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |         commandName: "preview",
10 |         abstract: "Displays the localizations found in a translation file.",
/host/spi-builder-workspace/Sources/localizer/Preview.swift:8:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 6 | struct Preview: AsyncParsableCommand {
 7 |
 8 |     static var configuration: CommandConfiguration = .init(
   |                                                       `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |         commandName: "preview",
10 |         abstract: "Displays the localizations found in a translation file.",
/host/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
/host/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 |
/host/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
/host/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 |
/host/spi-builder-workspace/Sources/localizer/localizer.swift:5:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 |
 4 | @main struct Command: AsyncParsableCommand {
 5 |     static var configuration: CommandConfiguration = {
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |         try? Configuration.load(.default)
 7 |
/host/spi-builder-workspace/Sources/localizer/localizer.swift:8:17: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 6 |         try? Configuration.load(.default)
 7 |
 8 |         return .init(
   |                 `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |             commandName: "localizer",
10 |             abstract: "Utility for interacting with Android 'strings.xml', Apple 'Localizable.strings', and Web '*.json' localization files.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/host/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)
/host/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 |
/host/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 |             """,
/host/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 |
[365/379] Compiling localizer localizer.swift
/host/spi-builder-workspace/Sources/localizer/Preview.swift:8:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 | struct Preview: AsyncParsableCommand {
 7 |
 8 |     static var configuration: CommandConfiguration = .init(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |         commandName: "preview",
10 |         abstract: "Displays the localizations found in a translation file.",
/host/spi-builder-workspace/Sources/localizer/Preview.swift:8:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 6 | struct Preview: AsyncParsableCommand {
 7 |
 8 |     static var configuration: CommandConfiguration = .init(
   |                                                       `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |         commandName: "preview",
10 |         abstract: "Displays the localizations found in a translation file.",
/host/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
/host/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 |
/host/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
/host/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 |
/host/spi-builder-workspace/Sources/localizer/localizer.swift:5:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 |
 4 | @main struct Command: AsyncParsableCommand {
 5 |     static var configuration: CommandConfiguration = {
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |         try? Configuration.load(.default)
 7 |
/host/spi-builder-workspace/Sources/localizer/localizer.swift:8:17: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 6 |         try? Configuration.load(.default)
 7 |
 8 |         return .init(
   |                 `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |             commandName: "localizer",
10 |             abstract: "Utility for interacting with Android 'strings.xml', Apple 'Localizable.strings', and Web '*.json' localization files.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/host/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)
/host/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 |
/host/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 |             """,
/host/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 |
[366/379] Emitting module localizer
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | extension Catalog {
  6 |     struct Delete: AsyncParsableCommand {
  7 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |             commandName: "delete",
  9 |             abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  5 | extension Catalog {
  6 |     struct Delete: AsyncParsableCommand {
  7 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  8 |             commandName: "delete",
  9 |             abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectEntity: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 26 |     struct ProjectEntity: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 29 |             commandName: "project",
 30 |             abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 65 |     struct ExpressionEntity: CatalogCommand {
 66 |
 67 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |             commandName: "expression",
 69 |             abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 65 |     struct ExpressionEntity: CatalogCommand {
 66 |
 67 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 68 |             commandName: "expression",
 69 |             abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     struct TranslationEntity: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |             commandName: "translation",
 98 |             abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 94 |     struct TranslationEntity: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 97 |             commandName: "translation",
 98 |             abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |     struct Export: CatalogCommand {
  9 |
 10 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |             commandName: "export",
 12 |             abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  8 |     struct Export: CatalogCommand {
  9 |
 10 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 11 |             commandName: "export",
 12 |             abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Generate: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "generate",
13 |             abstract: "Generate a viewable document using the strings catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |     struct Generate: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 |             commandName: "generate",
13 |             abstract: "Generate a viewable document using the strings catalog.",
/host/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]")
/host/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 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Import: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "import",
13 |             abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |     struct Import: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 |             commandName: "import",
13 |             abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Insert: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "insert",
 10 |             abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  6 | extension Catalog {
  7 |     struct Insert: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  9 |             commandName: "insert",
 10 |             abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |             commandName: "project",
 31 |             abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:29:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 30 |             commandName: "project",
 31 |             abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:88:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 |         @Option(help: "The default/development language code.")
 88 |         var defaultLanguage: LanguageCode = .default
    |                                              `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 |         @Option(help: "Contextual information that guides translators.")
/host/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 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:69:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 67 |     struct ExpressionCommand: CatalogCommand {
 68 |
 69 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |             commandName: "expression",
 71 |             abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:69:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 67 |     struct ExpressionCommand: CatalogCommand {
 68 |
 69 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 70 |             commandName: "expression",
 71 |             abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:134:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
132 |     struct TranslationCommand: CatalogCommand {
133 |
134 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 |             commandName: "translation",
136 |             abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:134:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
132 |     struct TranslationCommand: CatalogCommand {
133 |
134 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
135 |             commandName: "translation",
136 |             abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Query: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "query",
 10 |             abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  6 | extension Catalog {
  7 |     struct Query: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  9 |             commandName: "query",
 10 |             abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectCommand: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 26 |     struct ProjectCommand: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 29 |             commandName: "project",
 30 |             abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 |     struct ExpressionCommand: CatalogCommand {
 82 |
 83 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 |             commandName: "expression",
 85 |             abstract: "Query for expressions in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 81 |     struct ExpressionCommand: CatalogCommand {
 82 |
 83 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 84 |             commandName: "expression",
 85 |             abstract: "Query for expressions in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Update: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "update",
 10 |             abstract: "Update a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  6 | extension Catalog {
  7 |     struct Update: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  9 |             commandName: "update",
 10 |             abstract: "Update a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |             commandName: "project",
 31 |             abstract: "Update a Project in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 30 |             commandName: "project",
 31 |             abstract: "Update a Project in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     struct ExpressionCommand: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |             commandName: "expression",
 98 |             abstract: "Update an Expression in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 94 |     struct ExpressionCommand: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 97 |             commandName: "expression",
 98 |             abstract: "Update an Expression in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 |     struct TranslationCommand: CatalogCommand {
195 |
196 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 |             commandName: "translation",
198 |             abstract: "Update a Translation in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
194 |     struct TranslationCommand: CatalogCommand {
195 |
196 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
197 |             commandName: "translation",
198 |             abstract: "Update a Translation in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:36:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 34 |     }
 35 |
 36 |     static var configuration: CommandConfiguration = .init(
    |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |         commandName: "catalog",
 38 |         abstract: "Interact with the translation catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:36:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 34 |     }
 35 |
 36 |     static var configuration: CommandConfiguration = .init(
    |                                                       `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 37 |         commandName: "catalog",
 38 |         abstract: "Interact with the translation catalog.",
/host/spi-builder-workspace/Sources/localizer/Configure+Get.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |     struct Get: AsyncParsableCommand {
 6 |
 7 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |             commandName: "get",
 9 |             abstract: "Gets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure+Get.swift:7:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 5 |     struct Get: AsyncParsableCommand {
 6 |
 7 |         static var configuration: CommandConfiguration = .init(
   |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 8 |             commandName: "get",
 9 |             abstract: "Gets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     struct Set: AsyncParsableCommand {
 7 |
 8 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |             commandName: "set",
10 |             abstract: "Sets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 6 |     struct Set: AsyncParsableCommand {
 7 |
 8 |         static var configuration: CommandConfiguration = .init(
   |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |             commandName: "set",
10 |             abstract: "Sets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure.swift:6:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | struct Configure: AsyncParsableCommand {
 5 |
 6 |     static var configuration: CommandConfiguration = .init(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |         commandName: "configure",
 8 |         abstract: "Displays or alters the command configuration details.",
/host/spi-builder-workspace/Sources/localizer/Configure.swift:6:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 4 | struct Configure: AsyncParsableCommand {
 5 |
 6 |     static var configuration: CommandConfiguration = .init(
   |                                                       `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 7 |         commandName: "configure",
 8 |         abstract: "Displays or alters the command configuration details.",
/host/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:5:1: warning: extension declares a conformance of imported type 'LanguageCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
 3 | import ArgumentParser
 4 |
 5 | extension LanguageCode: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'LanguageCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 | extension RegionCode: ExpressibleByArgument {}
 7 | extension ScriptCode: ExpressibleByArgument {}
/host/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:6:1: warning: extension declares a conformance of imported type 'RegionCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
 4 |
 5 | extension LanguageCode: ExpressibleByArgument {}
 6 | extension RegionCode: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'RegionCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 | extension ScriptCode: ExpressibleByArgument {}
 8 | extension UUID: ExpressibleByArgument {
/host/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:7:1: warning: extension declares a conformance of imported type 'ScriptCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
 5 | extension LanguageCode: ExpressibleByArgument {}
 6 | extension RegionCode: ExpressibleByArgument {}
 7 | extension ScriptCode: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'ScriptCode' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'LocaleSupport' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 | extension UUID: ExpressibleByArgument {
 9 |     public init?(argument: String) {
/host/spi-builder-workspace/Sources/localizer/Extensions/Arguments.swift:8:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
 6 | extension RegionCode: ExpressibleByArgument {}
 7 | extension ScriptCode: ExpressibleByArgument {}
 8 | extension UUID: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 9 |     public init?(argument: String) {
10 |         self.init(uuidString: argument)
/host/spi-builder-workspace/Sources/localizer/Extensions/FileFormat+localizer.swift:4:1: warning: extension declares a conformance of imported type 'FileFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
 2 | import ArgumentParser
 3 |
 4 | extension FileFormat: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'FileFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 5 |     var argument: String {
 6 |         switch self {
/host/spi-builder-workspace/Sources/localizer/Extensions/RenderFormat+localizer.swift:4:1: warning: extension declares a conformance of imported type 'RenderFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
2 | import ArgumentParser
3 |
4 | extension RenderFormat: ExpressibleByArgument {
  | |- warning: extension declares a conformance of imported type 'RenderFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
5 | }
6 |
/host/spi-builder-workspace/Sources/localizer/Preview.swift:8:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 | struct Preview: AsyncParsableCommand {
 7 |
 8 |     static var configuration: CommandConfiguration = .init(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |         commandName: "preview",
10 |         abstract: "Displays the localizations found in a translation file.",
/host/spi-builder-workspace/Sources/localizer/Preview.swift:8:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 6 | struct Preview: AsyncParsableCommand {
 7 |
 8 |     static var configuration: CommandConfiguration = .init(
   |                                                       `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |         commandName: "preview",
10 |         abstract: "Displays the localizations found in a translation file.",
/host/spi-builder-workspace/Sources/localizer/localizer.swift:5:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 |
 4 | @main struct Command: AsyncParsableCommand {
 5 |     static var configuration: CommandConfiguration = {
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |         try? Configuration.load(.default)
 7 |
/host/spi-builder-workspace/Sources/localizer/localizer.swift:8:17: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 6 |         try? Configuration.load(.default)
 7 |
 8 |         return .init(
   |                 `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |             commandName: "localizer",
10 |             abstract: "Utility for interacting with Android 'strings.xml', Apple 'Localizable.strings', and Web '*.json' localization files.",
/host/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)
/host/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 |
/host/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 |             """,
/host/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 |
[367/379] Compiling localizer Catalog+Delete.swift
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | extension Catalog {
  6 |     struct Delete: AsyncParsableCommand {
  7 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |             commandName: "delete",
  9 |             abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  5 | extension Catalog {
  6 |     struct Delete: AsyncParsableCommand {
  7 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  8 |             commandName: "delete",
  9 |             abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectEntity: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 26 |     struct ProjectEntity: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 29 |             commandName: "project",
 30 |             abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 65 |     struct ExpressionEntity: CatalogCommand {
 66 |
 67 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |             commandName: "expression",
 69 |             abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 65 |     struct ExpressionEntity: CatalogCommand {
 66 |
 67 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 68 |             commandName: "expression",
 69 |             abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     struct TranslationEntity: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |             commandName: "translation",
 98 |             abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 94 |     struct TranslationEntity: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 97 |             commandName: "translation",
 98 |             abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |     struct Export: CatalogCommand {
  9 |
 10 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |             commandName: "export",
 12 |             abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  8 |     struct Export: CatalogCommand {
  9 |
 10 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 11 |             commandName: "export",
 12 |             abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Generate: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "generate",
13 |             abstract: "Generate a viewable document using the strings catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |     struct Generate: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 |             commandName: "generate",
13 |             abstract: "Generate a viewable document using the strings catalog.",
[368/379] Compiling localizer Catalog+Export.swift
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | extension Catalog {
  6 |     struct Delete: AsyncParsableCommand {
  7 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |             commandName: "delete",
  9 |             abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  5 | extension Catalog {
  6 |     struct Delete: AsyncParsableCommand {
  7 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  8 |             commandName: "delete",
  9 |             abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectEntity: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 26 |     struct ProjectEntity: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 29 |             commandName: "project",
 30 |             abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 65 |     struct ExpressionEntity: CatalogCommand {
 66 |
 67 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |             commandName: "expression",
 69 |             abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 65 |     struct ExpressionEntity: CatalogCommand {
 66 |
 67 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 68 |             commandName: "expression",
 69 |             abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     struct TranslationEntity: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |             commandName: "translation",
 98 |             abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 94 |     struct TranslationEntity: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 97 |             commandName: "translation",
 98 |             abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |     struct Export: CatalogCommand {
  9 |
 10 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |             commandName: "export",
 12 |             abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  8 |     struct Export: CatalogCommand {
  9 |
 10 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 11 |             commandName: "export",
 12 |             abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Generate: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "generate",
13 |             abstract: "Generate a viewable document using the strings catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |     struct Generate: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 |             commandName: "generate",
13 |             abstract: "Generate a viewable document using the strings catalog.",
[369/379] Compiling localizer Catalog+Generate.swift
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | extension Catalog {
  6 |     struct Delete: AsyncParsableCommand {
  7 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |             commandName: "delete",
  9 |             abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  5 | extension Catalog {
  6 |     struct Delete: AsyncParsableCommand {
  7 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  8 |             commandName: "delete",
  9 |             abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectEntity: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 26 |     struct ProjectEntity: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 29 |             commandName: "project",
 30 |             abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 65 |     struct ExpressionEntity: CatalogCommand {
 66 |
 67 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |             commandName: "expression",
 69 |             abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 65 |     struct ExpressionEntity: CatalogCommand {
 66 |
 67 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 68 |             commandName: "expression",
 69 |             abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     struct TranslationEntity: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |             commandName: "translation",
 98 |             abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 94 |     struct TranslationEntity: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 97 |             commandName: "translation",
 98 |             abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |     struct Export: CatalogCommand {
  9 |
 10 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |             commandName: "export",
 12 |             abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  8 |     struct Export: CatalogCommand {
  9 |
 10 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 11 |             commandName: "export",
 12 |             abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Generate: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "generate",
13 |             abstract: "Generate a viewable document using the strings catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |     struct Generate: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 |             commandName: "generate",
13 |             abstract: "Generate a viewable document using the strings catalog.",
[370/379] Compiling localizer FileManager+localizer.swift
/host/spi-builder-workspace/Sources/localizer/Extensions/RenderFormat+localizer.swift:4:1: warning: extension declares a conformance of imported type 'RenderFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
2 | import ArgumentParser
3 |
4 | extension RenderFormat: ExpressibleByArgument {
  | |- warning: extension declares a conformance of imported type 'RenderFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
5 | }
6 |
[371/379] Compiling localizer RenderFormat+localizer.swift
/host/spi-builder-workspace/Sources/localizer/Extensions/RenderFormat+localizer.swift:4:1: warning: extension declares a conformance of imported type 'RenderFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
2 | import ArgumentParser
3 |
4 | extension RenderFormat: ExpressibleByArgument {
  | |- warning: extension declares a conformance of imported type 'RenderFormat' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TranslationCatalogIO' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
5 | }
6 |
[372/379] Compiling localizer Catalog+Import.swift
/host/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]")
/host/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 |
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Import: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "import",
13 |             abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |     struct Import: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 |             commandName: "import",
13 |             abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Insert: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "insert",
 10 |             abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  6 | extension Catalog {
  7 |     struct Insert: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  9 |             commandName: "insert",
 10 |             abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |             commandName: "project",
 31 |             abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:29:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 30 |             commandName: "project",
 31 |             abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:88:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 |         @Option(help: "The default/development language code.")
 88 |         var defaultLanguage: LanguageCode = .default
    |                                              `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 |         @Option(help: "Contextual information that guides translators.")
/host/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 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:69:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 67 |     struct ExpressionCommand: CatalogCommand {
 68 |
 69 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |             commandName: "expression",
 71 |             abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:69:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 67 |     struct ExpressionCommand: CatalogCommand {
 68 |
 69 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 70 |             commandName: "expression",
 71 |             abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:134:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
132 |     struct TranslationCommand: CatalogCommand {
133 |
134 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 |             commandName: "translation",
136 |             abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:134:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
132 |     struct TranslationCommand: CatalogCommand {
133 |
134 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
135 |             commandName: "translation",
136 |             abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Query: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "query",
 10 |             abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  6 | extension Catalog {
  7 |     struct Query: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  9 |             commandName: "query",
 10 |             abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectCommand: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 26 |     struct ProjectCommand: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 29 |             commandName: "project",
 30 |             abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 |     struct ExpressionCommand: CatalogCommand {
 82 |
 83 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 |             commandName: "expression",
 85 |             abstract: "Query for expressions in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 81 |     struct ExpressionCommand: CatalogCommand {
 82 |
 83 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 84 |             commandName: "expression",
 85 |             abstract: "Query for expressions in the catalog.",
[373/379] Compiling localizer Catalog+Insert.swift
/host/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]")
/host/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 |
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Import: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "import",
13 |             abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |     struct Import: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 |             commandName: "import",
13 |             abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Insert: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "insert",
 10 |             abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  6 | extension Catalog {
  7 |     struct Insert: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  9 |             commandName: "insert",
 10 |             abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |             commandName: "project",
 31 |             abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:29:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 30 |             commandName: "project",
 31 |             abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:88:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 |         @Option(help: "The default/development language code.")
 88 |         var defaultLanguage: LanguageCode = .default
    |                                              `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 |         @Option(help: "Contextual information that guides translators.")
/host/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 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:69:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 67 |     struct ExpressionCommand: CatalogCommand {
 68 |
 69 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |             commandName: "expression",
 71 |             abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:69:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 67 |     struct ExpressionCommand: CatalogCommand {
 68 |
 69 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 70 |             commandName: "expression",
 71 |             abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:134:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
132 |     struct TranslationCommand: CatalogCommand {
133 |
134 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 |             commandName: "translation",
136 |             abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:134:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
132 |     struct TranslationCommand: CatalogCommand {
133 |
134 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
135 |             commandName: "translation",
136 |             abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Query: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "query",
 10 |             abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  6 | extension Catalog {
  7 |     struct Query: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  9 |             commandName: "query",
 10 |             abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectCommand: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 26 |     struct ProjectCommand: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 29 |             commandName: "project",
 30 |             abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 |     struct ExpressionCommand: CatalogCommand {
 82 |
 83 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 |             commandName: "expression",
 85 |             abstract: "Query for expressions in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 81 |     struct ExpressionCommand: CatalogCommand {
 82 |
 83 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 84 |             commandName: "expression",
 85 |             abstract: "Query for expressions in the catalog.",
[374/379] Compiling localizer Catalog+Query.swift
/host/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]")
/host/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 |
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     struct Import: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |             commandName: "import",
13 |             abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 9 |     struct Import: CatalogCommand {
10 |
11 |         static var configuration: CommandConfiguration = .init(
   |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 |             commandName: "import",
13 |             abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Insert: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "insert",
 10 |             abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  6 | extension Catalog {
  7 |     struct Insert: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  9 |             commandName: "insert",
 10 |             abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |             commandName: "project",
 31 |             abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:29:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 30 |             commandName: "project",
 31 |             abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:88:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 |         @Option(help: "The default/development language code.")
 88 |         var defaultLanguage: LanguageCode = .default
    |                                              `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 |         @Option(help: "Contextual information that guides translators.")
/host/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 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:69:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 67 |     struct ExpressionCommand: CatalogCommand {
 68 |
 69 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |             commandName: "expression",
 71 |             abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:69:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 67 |     struct ExpressionCommand: CatalogCommand {
 68 |
 69 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 70 |             commandName: "expression",
 71 |             abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:134:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
132 |     struct TranslationCommand: CatalogCommand {
133 |
134 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 |             commandName: "translation",
136 |             abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:134:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
132 |     struct TranslationCommand: CatalogCommand {
133 |
134 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
135 |             commandName: "translation",
136 |             abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Query: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "query",
 10 |             abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  6 | extension Catalog {
  7 |     struct Query: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  9 |             commandName: "query",
 10 |             abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |     struct ProjectCommand: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |             commandName: "project",
 30 |             abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 26 |     struct ProjectCommand: CatalogCommand {
 27 |
 28 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 29 |             commandName: "project",
 30 |             abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 |     struct ExpressionCommand: CatalogCommand {
 82 |
 83 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 |             commandName: "expression",
 85 |             abstract: "Query for expressions in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 81 |     struct ExpressionCommand: CatalogCommand {
 82 |
 83 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 84 |             commandName: "expression",
 85 |             abstract: "Query for expressions in the catalog.",
[375/379] Compiling localizer Catalog+Update.swift
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Update: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "update",
 10 |             abstract: "Update a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  6 | extension Catalog {
  7 |     struct Update: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  9 |             commandName: "update",
 10 |             abstract: "Update a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |             commandName: "project",
 31 |             abstract: "Update a Project in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 30 |             commandName: "project",
 31 |             abstract: "Update a Project in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     struct ExpressionCommand: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |             commandName: "expression",
 98 |             abstract: "Update an Expression in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 94 |     struct ExpressionCommand: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 97 |             commandName: "expression",
 98 |             abstract: "Update an Expression in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 |     struct TranslationCommand: CatalogCommand {
195 |
196 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 |             commandName: "translation",
198 |             abstract: "Update a Translation in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
194 |     struct TranslationCommand: CatalogCommand {
195 |
196 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
197 |             commandName: "translation",
198 |             abstract: "Update a Translation in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:36:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 34 |     }
 35 |
 36 |     static var configuration: CommandConfiguration = .init(
    |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |         commandName: "catalog",
 38 |         abstract: "Interact with the translation catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:36:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 34 |     }
 35 |
 36 |     static var configuration: CommandConfiguration = .init(
    |                                                       `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 37 |         commandName: "catalog",
 38 |         abstract: "Interact with the translation catalog.",
[376/379] Compiling localizer Catalog.swift
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | extension Catalog {
  7 |     struct Update: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |             commandName: "update",
 10 |             abstract: "Update a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  6 | extension Catalog {
  7 |     struct Update: AsyncParsableCommand {
  8 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
  9 |             commandName: "update",
 10 |             abstract: "Update a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |         case filesystem
 12 |
 13 |         static var `default`: Storage = .sqlite
    |                    |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     }
 15 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |             commandName: "project",
 31 |             abstract: "Update a Project in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 27 |     struct ProjectCommand: CatalogCommand {
 28 |
 29 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 30 |             commandName: "project",
 31 |             abstract: "Update a Project in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 94 |     struct ExpressionCommand: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |             commandName: "expression",
 98 |             abstract: "Update an Expression in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 94 |     struct ExpressionCommand: CatalogCommand {
 95 |
 96 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 97 |             commandName: "expression",
 98 |             abstract: "Update an Expression in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 |     struct TranslationCommand: CatalogCommand {
195 |
196 |         static var configuration: CommandConfiguration = .init(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 |             commandName: "translation",
198 |             abstract: "Update a Translation in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
194 |     struct TranslationCommand: CatalogCommand {
195 |
196 |         static var configuration: CommandConfiguration = .init(
    |                                                           `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
197 |             commandName: "translation",
198 |             abstract: "Update a Translation in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:36:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 34 |     }
 35 |
 36 |     static var configuration: CommandConfiguration = .init(
    |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |         commandName: "catalog",
 38 |         abstract: "Interact with the translation catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:36:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 34 |     }
 35 |
 36 |     static var configuration: CommandConfiguration = .init(
    |                                                       `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
 37 |         commandName: "catalog",
 38 |         abstract: "Interact with the translation catalog.",
[377/380] Wrapping AST for localizer for debugging
[378/380] Write Objects.LinkFileList
[379/380] Linking localizer
Build complete! (79.05s)
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
    {
      "identity" : "localesupport",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.5.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/richardpiazza/LocaleSupport.git"
    },
    {
      "identity" : "asyncplus",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.3.2",
            "upper_bound" : "0.4.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/richardpiazza/AsyncPlus.git"
    },
    {
      "identity" : "statement",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.7.2",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/richardpiazza/Statement.git"
    },
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser.git"
    },
    {
      "identity" : "xmlcoder",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.15.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/CoreOffice/XMLCoder.git"
    },
    {
      "identity" : "plot",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.11.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/JohnSundell/Plot.git"
    },
    {
      "identity" : "htmlstring",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "6.0.0",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/alexisakers/HTMLString.git"
    },
    {
      "identity" : "sqlite.swift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.14.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/stephencelis/SQLite.swift.git"
    }
  ],
  "manifest_display_name" : "TranslationCatalog",
  "name" : "TranslationCatalog",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "15.0"
    },
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "TranslationCatalog",
      "targets" : [
        "TranslationCatalog",
        "TranslationCatalogIO",
        "TranslationCatalogSQLite",
        "TranslationCatalogFilesystem"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "localizer",
      "targets" : [
        "localizer"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "localizer",
      "module_type" : "SwiftTarget",
      "name" : "localizer",
      "path" : "Sources/localizer",
      "product_dependencies" : [
        "LocaleSupport",
        "ArgumentParser"
      ],
      "product_memberships" : [
        "localizer"
      ],
      "sources" : [
        "Catalog+Delete.swift",
        "Catalog+Export.swift",
        "Catalog+Generate.swift",
        "Catalog+Import.swift",
        "Catalog+Insert.swift",
        "Catalog+Query.swift",
        "Catalog+Update.swift",
        "Catalog.swift",
        "Configuration.swift",
        "Configure+Get.swift",
        "Configure+Set.swift",
        "Configure.swift",
        "Extensions/Arguments.swift",
        "Extensions/FileFormat+localizer.swift",
        "Extensions/FileManager+localizer.swift",
        "Extensions/RenderFormat+localizer.swift",
        "Preview.swift",
        "localizer.swift"
      ],
      "target_dependencies" : [
        "TranslationCatalog",
        "TranslationCatalogIO",
        "TranslationCatalogSQLite",
        "TranslationCatalogFilesystem"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "TranslationCatalogTests",
      "module_type" : "SwiftTarget",
      "name" : "TranslationCatalogTests",
      "path" : "Tests/TranslationCatalogTests",
      "product_dependencies" : [
        "LocaleSupport"
      ],
      "sources" : [
        "Extensions/Catalog+DeleteAssertions.swift",
        "Extensions/Catalog+InsertAssertions.swift",
        "Extensions/Catalog+QueryAssertions.swift",
        "Extensions/Catalog+UpdateAssertions.swift",
        "FilesystemEmptyCatalogTests.swift",
        "FilesystemQueryCatalogTests.swift",
        "SQLiteEmptyCatalogTests.swift",
        "SQLiteQueryCatalogTests.swift",
        "XMLEscapingTests.swift"
      ],
      "target_dependencies" : [
        "TranslationCatalog",
        "TranslationCatalogIO",
        "TranslationCatalogFilesystem",
        "TranslationCatalogSQLite"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TranslationCatalogSQLite",
      "module_type" : "SwiftTarget",
      "name" : "TranslationCatalogSQLite",
      "path" : "Sources/TranslationCatalogSQLite",
      "product_dependencies" : [
        "LocaleSupport",
        "Statement",
        "StatementSQLite",
        "SQLite"
      ],
      "product_memberships" : [
        "TranslationCatalog",
        "localizer"
      ],
      "sources" : [
        "Entities/ExpressionEntity.swift",
        "Entities/ProjectEntity.swift",
        "Entities/ProjectExpressionEntity.swift",
        "Entities/TranslationEntity.swift",
        "SQLite+Query.swift",
        "SQLite+Schema.swift",
        "SQLiteCatalog+AssociatedTypes.swift",
        "SQLiteCatalog.swift",
        "SQLiteStatement+Expression.swift",
        "SQLiteStatement+Project.swift",
        "SQLiteStatement+ProjectExpression.swift",
        "SQLiteStatement+Translation.swift",
        "SQLiteStmt+Entities.swift"
      ],
      "target_dependencies" : [
        "TranslationCatalog"
      ],
      "type" : "library"
    },
    {
      "c99name" : "TranslationCatalogIO",
      "module_type" : "SwiftTarget",
      "name" : "TranslationCatalogIO",
      "path" : "Sources/TranslationCatalogIO",
      "product_dependencies" : [
        "AsyncPlus",
        "XMLCoder",
        "Plot",
        "HTMLString"
      ],
      "product_memberships" : [
        "TranslationCatalog",
        "localizer"
      ],
      "sources" : [
        "ExpressionDecoder.swift",
        "ExpressionEncoder.swift",
        "ExpressionImporter.swift",
        "ExpressionRenderer.swift",
        "Extensions/Dictionary+AppleStrings.swift",
        "Extensions/Expression+IO.swift",
        "Extensions/Plot+IO.swift",
        "Extensions/Translation+IO.swift",
        "Extensions/XML+Expression.swift",
        "FileFormat.swift",
        "Internal/Resource.swift",
        "Internal/StringsXml.swift",
        "MarkdownTable.swift",
        "RenderFormat.swift"
      ],
      "target_dependencies" : [
        "TranslationCatalog"
      ],
      "type" : "library"
    },
    {
      "c99name" : "TranslationCatalogFilesystem",
      "module_type" : "SwiftTarget",
      "name" : "TranslationCatalogFilesystem",
      "path" : "Sources/TranslationCatalogFilesystem",
      "product_dependencies" : [
        "LocaleSupport"
      ],
      "product_memberships" : [
        "TranslationCatalog",
        "localizer"
      ],
      "sources" : [
        "Documents/Document.swift",
        "Documents/ExpressionDocument.swift",
        "Documents/ProjectDocument.swift",
        "Documents/TranslationDocument.swift",
        "FilesystemCatalog.swift"
      ],
      "target_dependencies" : [
        "TranslationCatalog"
      ],
      "type" : "library"
    },
    {
      "c99name" : "TranslationCatalog",
      "module_type" : "SwiftTarget",
      "name" : "TranslationCatalog",
      "path" : "Sources/TranslationCatalog",
      "product_dependencies" : [
        "LocaleSupport"
      ],
      "product_memberships" : [
        "TranslationCatalog",
        "localizer"
      ],
      "sources" : [
        "Catalog.swift",
        "CatalogError.swift",
        "CatalogQuery.swift",
        "CatalogUpdate.swift",
        "Expression.swift",
        "LocaleRepresentable.swift",
        "Project.swift",
        "Translation.swift",
        "UUID+defaults.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "LocalizerTests",
      "module_type" : "SwiftTarget",
      "name" : "LocalizerTests",
      "path" : "Tests/LocalizerTests",
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/File.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/Import1.strings",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/Import2.strings",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/Localizable.strings",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/Strings.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/test_multi_language.sqlite",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/test_single_project_entity.sqlite",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/LocalizerTests/StructuredResources",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "CatalogDeleteProjectTests.swift",
        "CatalogExportTests.swift",
        "CatalogGenerateTests.swift",
        "Extensions/Process+LocalizerProcess.swift",
        "FilesystemCatalogImportTests.swift",
        "FilesystemTestCase.swift",
        "LocalizerTests.swift",
        "PreviewTests.swift",
        "_LocalizerTestCase.swift"
      ],
      "target_dependencies" : [
        "localizer"
      ],
      "type" : "test"
    }
  ],
  "tools_version" : "5.6"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.