This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 XibLoc with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 11

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/happn-app/XibLoc.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/happn-app/XibLoc
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 575dfae Relax the tokens validation
Cloned https://github.com/happn-app/XibLoc.git
Revision (git rev-parse @):
575dfaef781b378e84be0144bae4a4ccb9f45a5e
SUCCESS checkout https://github.com/happn-app/XibLoc.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/happn-app/XibLoc.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-6F35C1178C84523A.txt
[4/7] Emitting module Logging
[5/7] Compiling Logging LogHandler.swift
[6/7] Compiling Logging Logging.swift
[7/7] Compiling Logging Locks.swift
[8/42] Emitting module XibLoc
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:73:20: warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
   |                    |- warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2AttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2AttrStrAttributes' 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
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:74:20: warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
   |                    |- warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2NSAttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2NSAttrStrAttributes' 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
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:68:20: warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
66 | 	}()
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
   |                    |- warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultEscapeToken' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultEscapeToken' 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
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
70 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:69:20: warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
   |                    |- warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultPluralityDefinition' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultPluralityDefinition' 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 |
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:75:20: warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
   |                    |- warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultBoldAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultBoldAttrsChangesDescription' 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
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
77 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:76:20: warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
   |                    |- warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultItalicAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultItalicAttrsChangesDescription' 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
77 | #endif
78 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:56:20: warning: static property 'defaultNumberFormatterForInts' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
54 | 	}()
55 |
56 | 	public static var defaultNumberFormatterForInts: NumberFormatter = {
   |                    |- warning: static property 'defaultNumberFormatterForInts' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultNumberFormatterForInts' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultNumberFormatterForInts' 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
57 | 		let f = NumberFormatter()
58 | 		f.numberStyle = .none
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:62:20: warning: static property 'defaultNumberFormatterForFloats' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
60 | 	}()
61 |
62 | 	public static var defaultNumberFormatterForFloats: NumberFormatter = {
   |                    |- warning: static property 'defaultNumberFormatterForFloats' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultNumberFormatterForFloats' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultNumberFormatterForFloats' 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
63 | 		let f = NumberFormatter()
64 | 		f.numberStyle = .decimal
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:87:20: warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
85 | 	 - Important: Do **not** modify the objects in this cache. The property should
86 | 	  only be modified if needed when your app starts, to customize the cache. */
87 | 	public static var cache: NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>? = {
   |                    |- warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'cache' 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
88 | 		let c = NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>()
89 | 		c.countLimit = 1500
[9/45] Compiling XibLoc PluralValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
[10/45] Compiling XibLoc PluralityDefinition.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
[11/45] Compiling XibLoc PluralityDefinitionZone.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
[12/45] Compiling XibLoc PluralityDefinitionZoneValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
[13/45] Compiling XibLoc MultipleWordsTokens.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:73:20: warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
   |                    |- warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2AttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2AttrStrAttributes' 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
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:74:20: warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
   |                    |- warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2NSAttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2NSAttrStrAttributes' 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
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
[14/45] Compiling XibLoc OneWordTokens.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:73:20: warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
   |                    |- warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2AttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2AttrStrAttributes' 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
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:74:20: warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
   |                    |- warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2NSAttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2NSAttrStrAttributes' 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
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
[15/45] Compiling XibLoc Str2AttrStrXibLocInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:73:20: warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
   |                    |- warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2AttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2AttrStrAttributes' 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
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:74:20: warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
   |                    |- warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2NSAttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2NSAttrStrAttributes' 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
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
[16/45] Compiling XibLoc Str2NSAttrStrXibLocInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:73:20: warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
   |                    |- warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2AttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2AttrStrAttributes' 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
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:74:20: warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
   |                    |- warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2NSAttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2NSAttrStrAttributes' 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
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
[17/45] Compiling XibLoc CacheLock.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:87:20: warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
85 | 	 - Important: Do **not** modify the objects in this cache. The property should
86 | 	  only be modified if needed when your app starts, to customize the cache. */
87 | 	public static var cache: NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>? = {
   |                    |- warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'cache' 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
88 | 		let c = NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>()
89 | 		c.countLimit = 1500
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Parser/ParsedXibLoc.swift:415:10: warning: I’m pretty sure the adjustment can be done using another algo (basically the same as the one in remove(escapeToken...)). Note there might be other places where we could update the algo too.
413 |
414 | #if !USE_UTF16_OFFSETS
415 | #warning("I’m pretty sure the adjustment can be done using another algo (basically the same as the one in remove(escapeToken...)). Note there might be other places where we could update the algo too.")
    |          `- warning: I’m pretty sure the adjustment can be done using another algo (basically the same as the one in remove(escapeToken...)). Note there might be other places where we could update the algo too.
416 | 			/* With this version of the algorithm we play it safe and re-compute the ranges by searching for partial strings from the original string in the new string.
417 | 			 * This has a small performance impact on some ObjC strings, but in most of the cases it’s completely negligible. */
[18/45] Compiling XibLoc ParsedXibLoc+InitCache.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:87:20: warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
85 | 	 - Important: Do **not** modify the objects in this cache. The property should
86 | 	  only be modified if needed when your app starts, to customize the cache. */
87 | 	public static var cache: NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>? = {
   |                    |- warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'cache' 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
88 | 		let c = NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>()
89 | 		c.countLimit = 1500
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Parser/ParsedXibLoc.swift:415:10: warning: I’m pretty sure the adjustment can be done using another algo (basically the same as the one in remove(escapeToken...)). Note there might be other places where we could update the algo too.
413 |
414 | #if !USE_UTF16_OFFSETS
415 | #warning("I’m pretty sure the adjustment can be done using another algo (basically the same as the one in remove(escapeToken...)). Note there might be other places where we could update the algo too.")
    |          `- warning: I’m pretty sure the adjustment can be done using another algo (basically the same as the one in remove(escapeToken...)). Note there might be other places where we could update the algo too.
416 | 			/* With this version of the algorithm we play it safe and re-compute the ranges by searching for partial strings from the original string in the new string.
417 | 			 * This has a small performance impact on some ObjC strings, but in most of the cases it’s completely negligible. */
[19/45] Compiling XibLoc XibLocParsingInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:87:20: warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
85 | 	 - Important: Do **not** modify the objects in this cache. The property should
86 | 	  only be modified if needed when your app starts, to customize the cache. */
87 | 	public static var cache: NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>? = {
   |                    |- warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'cache' 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
88 | 		let c = NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>()
89 | 		c.countLimit = 1500
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Parser/ParsedXibLoc.swift:415:10: warning: I’m pretty sure the adjustment can be done using another algo (basically the same as the one in remove(escapeToken...)). Note there might be other places where we could update the algo too.
413 |
414 | #if !USE_UTF16_OFFSETS
415 | #warning("I’m pretty sure the adjustment can be done using another algo (basically the same as the one in remove(escapeToken...)). Note there might be other places where we could update the algo too.")
    |          `- warning: I’m pretty sure the adjustment can be done using another algo (basically the same as the one in remove(escapeToken...)). Note there might be other places where we could update the algo too.
416 | 			/* With this version of the algorithm we play it safe and re-compute the ranges by searching for partial strings from the original string in the new string.
417 | 			 * This has a small performance impact on some ObjC strings, but in most of the cases it’s completely negligible. */
[20/45] Compiling XibLoc ParsedXibLoc.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:87:20: warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
85 | 	 - Important: Do **not** modify the objects in this cache. The property should
86 | 	  only be modified if needed when your app starts, to customize the cache. */
87 | 	public static var cache: NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>? = {
   |                    |- warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'cache' 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
88 | 		let c = NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>()
89 | 		c.countLimit = 1500
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Parser/ParsedXibLoc.swift:415:10: warning: I’m pretty sure the adjustment can be done using another algo (basically the same as the one in remove(escapeToken...)). Note there might be other places where we could update the algo too.
413 |
414 | #if !USE_UTF16_OFFSETS
415 | #warning("I’m pretty sure the adjustment can be done using another algo (basically the same as the one in remove(escapeToken...)). Note there might be other places where we could update the algo too.")
    |          `- warning: I’m pretty sure the adjustment can be done using another algo (basically the same as the one in remove(escapeToken...)). Note there might be other places where we could update the algo too.
416 | 			/* With this version of the algorithm we play it safe and re-compute the ranges by searching for partial strings from the original string in the new string.
417 | 			 * This has a small performance impact on some ObjC strings, but in most of the cases it’s completely negligible. */
[21/45] Compiling XibLoc XibLocResolvingInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:69:20: warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
   |                    |- warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultPluralityDefinition' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultPluralityDefinition' 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 |
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:68:20: warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
66 | 	}()
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
   |                    |- warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultEscapeToken' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultEscapeToken' 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
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
70 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:35:15: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
33 | 		let runs = self[range].runs
34 | 		for r in runs {
35 | 			let font = r.font ?? XibLocFont.xl_preferredFont
   |               `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
36 | 			self[r.range].font = font.fontBySetting(size: nil, isBold: bold, isItalic: italic)
37 | 		}
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:36:4: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
34 | 		for r in runs {
35 | 			let font = r.font ?? XibLocFont.xl_preferredFont
36 | 			self[r.range].font = font.fontBySetting(size: nil, isBold: bold, isItalic: italic)
   |    `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
37 | 		}
38 | 	}
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:46:12: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
44 | 		let runs = self[range].runs
45 | 		for r in runs {
46 | 			let f = r.font
   |            `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
47 | 			let (b, i, s) = (f?.isBold, f?.isItalic, f?.pointSize)
48 | 			self[r.range].font = font.fontBySetting(size: keepOriginalSize ? s : nil, isBold: keepOriginalIsBold ? b : nil, isItalic: keepOriginalIsItalic ? i : nil)
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:48:4: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
46 | 			let f = r.font
47 | 			let (b, i, s) = (f?.isBold, f?.isItalic, f?.pointSize)
48 | 			self[r.range].font = font.fontBySetting(size: keepOriginalSize ? s : nil, isBold: keepOriginalIsBold ? b : nil, isItalic: keepOriginalIsItalic ? i : nil)
   |    `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
49 | 		}
50 | 	}
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[22/45] Compiling XibLoc AttributedString+Utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:69:20: warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
   |                    |- warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultPluralityDefinition' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultPluralityDefinition' 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 |
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:68:20: warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
66 | 	}()
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
   |                    |- warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultEscapeToken' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultEscapeToken' 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
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
70 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:35:15: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
33 | 		let runs = self[range].runs
34 | 		for r in runs {
35 | 			let font = r.font ?? XibLocFont.xl_preferredFont
   |               `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
36 | 			self[r.range].font = font.fontBySetting(size: nil, isBold: bold, isItalic: italic)
37 | 		}
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:36:4: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
34 | 		for r in runs {
35 | 			let font = r.font ?? XibLocFont.xl_preferredFont
36 | 			self[r.range].font = font.fontBySetting(size: nil, isBold: bold, isItalic: italic)
   |    `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
37 | 		}
38 | 	}
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:46:12: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
44 | 		let runs = self[range].runs
45 | 		for r in runs {
46 | 			let f = r.font
   |            `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
47 | 			let (b, i, s) = (f?.isBold, f?.isItalic, f?.pointSize)
48 | 			self[r.range].font = font.fontBySetting(size: keepOriginalSize ? s : nil, isBold: keepOriginalIsBold ? b : nil, isItalic: keepOriginalIsItalic ? i : nil)
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:48:4: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
46 | 			let f = r.font
47 | 			let (b, i, s) = (f?.isBold, f?.isItalic, f?.pointSize)
48 | 			self[r.range].font = font.fontBySetting(size: keepOriginalSize ? s : nil, isBold: keepOriginalIsBold ? b : nil, isItalic: keepOriginalIsItalic ? i : nil)
   |    `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
49 | 		}
50 | 	}
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[23/45] Compiling XibLoc Collection+Utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:69:20: warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
   |                    |- warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultPluralityDefinition' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultPluralityDefinition' 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 |
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:68:20: warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
66 | 	}()
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
   |                    |- warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultEscapeToken' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultEscapeToken' 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
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
70 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:35:15: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
33 | 		let runs = self[range].runs
34 | 		for r in runs {
35 | 			let font = r.font ?? XibLocFont.xl_preferredFont
   |               `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
36 | 			self[r.range].font = font.fontBySetting(size: nil, isBold: bold, isItalic: italic)
37 | 		}
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:36:4: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
34 | 		for r in runs {
35 | 			let font = r.font ?? XibLocFont.xl_preferredFont
36 | 			self[r.range].font = font.fontBySetting(size: nil, isBold: bold, isItalic: italic)
   |    `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
37 | 		}
38 | 	}
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:46:12: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
44 | 		let runs = self[range].runs
45 | 		for r in runs {
46 | 			let f = r.font
   |            `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
47 | 			let (b, i, s) = (f?.isBold, f?.isItalic, f?.pointSize)
48 | 			self[r.range].font = font.fontBySetting(size: keepOriginalSize ? s : nil, isBold: keepOriginalIsBold ? b : nil, isItalic: keepOriginalIsItalic ? i : nil)
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:48:4: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
46 | 			let f = r.font
47 | 			let (b, i, s) = (f?.isBold, f?.isItalic, f?.pointSize)
48 | 			self[r.range].font = font.fontBySetting(size: keepOriginalSize ? s : nil, isBold: keepOriginalIsBold ? b : nil, isItalic: keepOriginalIsItalic ? i : nil)
   |    `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
49 | 		}
50 | 	}
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[24/45] Compiling XibLoc NSMutableAttributedString+Utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:69:20: warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
   |                    |- warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultPluralityDefinition' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultPluralityDefinition' 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 |
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:68:20: warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
66 | 	}()
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
   |                    |- warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultEscapeToken' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultEscapeToken' 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
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
70 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:35:15: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
33 | 		let runs = self[range].runs
34 | 		for r in runs {
35 | 			let font = r.font ?? XibLocFont.xl_preferredFont
   |               `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
36 | 			self[r.range].font = font.fontBySetting(size: nil, isBold: bold, isItalic: italic)
37 | 		}
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:36:4: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
34 | 		for r in runs {
35 | 			let font = r.font ?? XibLocFont.xl_preferredFont
36 | 			self[r.range].font = font.fontBySetting(size: nil, isBold: bold, isItalic: italic)
   |    `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
37 | 		}
38 | 	}
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:46:12: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
44 | 		let runs = self[range].runs
45 | 		for r in runs {
46 | 			let f = r.font
   |            `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
47 | 			let (b, i, s) = (f?.isBold, f?.isItalic, f?.pointSize)
48 | 			self[r.range].font = font.fontBySetting(size: keepOriginalSize ? s : nil, isBold: keepOriginalIsBold ? b : nil, isItalic: keepOriginalIsItalic ? i : nil)
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Utilities/AttributedString+Utils.swift:48:4: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
46 | 			let f = r.font
47 | 			let (b, i, s) = (f?.isBold, f?.isItalic, f?.pointSize)
48 | 			self[r.range].font = font.fontBySetting(size: keepOriginalSize ? s : nil, isBold: keepOriginalIsBold ? b : nil, isItalic: keepOriginalIsItalic ? i : nil)
   |    `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
49 | 		}
50 | 	}
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[25/45] Compiling XibLoc ParserHelper+AttributedString.swift
[26/45] Compiling XibLoc ParserHelper+NSMutableAttributedString.swift
[27/45] Compiling XibLoc ParserHelper+String.swift
[28/45] Compiling XibLoc ParserHelper.swift
[29/45] Compiling XibLoc XibLocNumber.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:56:20: warning: static property 'defaultNumberFormatterForInts' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
54 | 	}()
55 |
56 | 	public static var defaultNumberFormatterForInts: NumberFormatter = {
   |                    |- warning: static property 'defaultNumberFormatterForInts' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultNumberFormatterForInts' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultNumberFormatterForInts' 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
57 | 		let f = NumberFormatter()
58 | 		f.numberStyle = .none
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:62:20: warning: static property 'defaultNumberFormatterForFloats' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
60 | 	}()
61 |
62 | 	public static var defaultNumberFormatterForFloats: NumberFormatter = {
   |                    |- warning: static property 'defaultNumberFormatterForFloats' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultNumberFormatterForFloats' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultNumberFormatterForFloats' 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
63 | 		let f = NumberFormatter()
64 | 		f.numberStyle = .decimal
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:68:20: warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
66 | 	}()
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
   |                    |- warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultEscapeToken' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultEscapeToken' 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
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
70 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:69:20: warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
   |                    |- warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultPluralityDefinition' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultPluralityDefinition' 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 |
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:73:20: warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
   |                    |- warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2AttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2AttrStrAttributes' 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
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:74:20: warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
   |                    |- warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2NSAttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2NSAttrStrAttributes' 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
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:75:20: warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
   |                    |- warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultBoldAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultBoldAttrsChangesDescription' 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
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
77 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:76:20: warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
   |                    |- warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultItalicAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultItalicAttrsChangesDescription' 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
77 | #endif
78 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:87:20: warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
85 | 	 - Important: Do **not** modify the objects in this cache. The property should
86 | 	  only be modified if needed when your app starts, to customize the cache. */
87 | 	public static var cache: NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>? = {
   |                    |- warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'cache' 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
88 | 		let c = NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>()
89 | 		c.countLimit = 1500
[30/45] Compiling XibLoc XibLoc.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:56:20: warning: static property 'defaultNumberFormatterForInts' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
54 | 	}()
55 |
56 | 	public static var defaultNumberFormatterForInts: NumberFormatter = {
   |                    |- warning: static property 'defaultNumberFormatterForInts' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultNumberFormatterForInts' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultNumberFormatterForInts' 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
57 | 		let f = NumberFormatter()
58 | 		f.numberStyle = .none
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:62:20: warning: static property 'defaultNumberFormatterForFloats' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
60 | 	}()
61 |
62 | 	public static var defaultNumberFormatterForFloats: NumberFormatter = {
   |                    |- warning: static property 'defaultNumberFormatterForFloats' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultNumberFormatterForFloats' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultNumberFormatterForFloats' 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
63 | 		let f = NumberFormatter()
64 | 		f.numberStyle = .decimal
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:68:20: warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
66 | 	}()
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
   |                    |- warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultEscapeToken' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultEscapeToken' 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
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
70 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:69:20: warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
   |                    |- warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultPluralityDefinition' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultPluralityDefinition' 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 |
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:73:20: warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
   |                    |- warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2AttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2AttrStrAttributes' 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
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:74:20: warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
   |                    |- warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2NSAttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2NSAttrStrAttributes' 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
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:75:20: warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
   |                    |- warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultBoldAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultBoldAttrsChangesDescription' 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
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
77 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:76:20: warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
   |                    |- warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultItalicAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultItalicAttrsChangesDescription' 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
77 | #endif
78 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:87:20: warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
85 | 	 - Important: Do **not** modify the objects in this cache. The property should
86 | 	  only be modified if needed when your app starts, to customize the cache. */
87 | 	public static var cache: NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>? = {
   |                    |- warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'cache' 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
88 | 		let c = NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>()
89 | 		c.countLimit = 1500
[31/45] Compiling XibLoc XibLocConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:56:20: warning: static property 'defaultNumberFormatterForInts' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
54 | 	}()
55 |
56 | 	public static var defaultNumberFormatterForInts: NumberFormatter = {
   |                    |- warning: static property 'defaultNumberFormatterForInts' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultNumberFormatterForInts' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultNumberFormatterForInts' 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
57 | 		let f = NumberFormatter()
58 | 		f.numberStyle = .none
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:62:20: warning: static property 'defaultNumberFormatterForFloats' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
60 | 	}()
61 |
62 | 	public static var defaultNumberFormatterForFloats: NumberFormatter = {
   |                    |- warning: static property 'defaultNumberFormatterForFloats' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultNumberFormatterForFloats' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultNumberFormatterForFloats' 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
63 | 		let f = NumberFormatter()
64 | 		f.numberStyle = .decimal
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:68:20: warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
66 | 	}()
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
   |                    |- warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultEscapeToken' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultEscapeToken' 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
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
70 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:69:20: warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
   |                    |- warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultPluralityDefinition' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultPluralityDefinition' 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 |
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:73:20: warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
   |                    |- warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2AttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2AttrStrAttributes' 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
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:74:20: warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
   |                    |- warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2NSAttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2NSAttrStrAttributes' 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
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:75:20: warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
   |                    |- warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultBoldAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultBoldAttrsChangesDescription' 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
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
77 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:76:20: warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
   |                    |- warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultItalicAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultItalicAttrsChangesDescription' 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
77 | #endif
78 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:87:20: warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
85 | 	 - Important: Do **not** modify the objects in this cache. The property should
86 | 	  only be modified if needed when your app starts, to customize the cache. */
87 | 	public static var cache: NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>? = {
   |                    |- warning: static property 'cache' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'cache' 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
88 | 		let c = NSCache<ErasedParsedXibLocInitInfoWrapper, ParsedXibLocWrapper>()
89 | 		c.countLimit = 1500
[32/45] Compiling XibLoc Scanner+LinuxCompat.swift
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.UnderlineStyleAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.UnderlineStyleAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.ForegroundColorAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.BackgroundColorAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.FoundationAttributes, AttributeScopes.FoundationAttributes.LinkAttribute>'; this is an error in the Swift 6 language mode
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
[33/45] Compiling XibLoc StringAttributesChangesDescription.swift
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.UnderlineStyleAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.UnderlineStyleAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.ForegroundColorAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.BackgroundColorAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.FoundationAttributes, AttributeScopes.FoundationAttributes.LinkAttribute>'; this is an error in the Swift 6 language mode
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
[34/45] Compiling XibLoc XibLocFont.swift
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.UnderlineStyleAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.UnderlineStyleAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.ForegroundColorAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.BackgroundColorAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.FoundationAttributes, AttributeScopes.FoundationAttributes.LinkAttribute>'; this is an error in the Swift 6 language mode
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
[35/45] Compiling XibLoc NumberFormatter+Utils.swift
[36/45] Compiling XibLoc RandomAccessCollection+StableSort.swift
[37/45] Compiling XibLoc Range+Utils.swift
[38/45] Compiling XibLoc PluralityDefinitionZoneValueGlob.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
[39/45] Compiling XibLoc PluralityDefinitionZoneValueIntervalOfFloats.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
[40/45] Compiling XibLoc PluralityDefinitionZoneValueIntervalOfInts.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
[41/45] Compiling XibLoc PluralityDefinitionZoneValueNumber.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:45:20: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    |- warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'oslog' 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
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:47:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
[42/45] Compiling XibLoc Str2StrXibLocInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:68:20: warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
66 | 	}()
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
   |                    |- warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultEscapeToken' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultEscapeToken' 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
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
70 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:69:20: warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
   |                    |- warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultPluralityDefinition' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultPluralityDefinition' 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 |
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:74:20: warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
   |                    |- warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2NSAttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2NSAttrStrAttributes' 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
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:75:20: warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
   |                    |- warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultBoldAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultBoldAttrsChangesDescription' 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
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
77 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:76:20: warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
   |                    |- warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultItalicAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultItalicAttrsChangesDescription' 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
77 | #endif
78 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:73:20: warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
   |                    |- warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2AttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2AttrStrAttributes' 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
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.ForegroundColorAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Resolving Info/Tokens Group/CommonTokensGroup.swift:185:25: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
183 | 	public var str2AttrStrXibLocInfo: Str2AttrStrXibLocInfo {
184 | 		var defaultAttributes = baseAttributes
185 | 		if let f = baseFont  {defaultAttributes.font = f}
    |                         `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
186 | 		if let c = baseColor {defaultAttributes.foregroundColor = c}
187 |
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[43/45] Compiling XibLoc CommonTokensGroup.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:68:20: warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
66 | 	}()
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
   |                    |- warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultEscapeToken' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultEscapeToken' 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
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
70 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:69:20: warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
   |                    |- warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultPluralityDefinition' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultPluralityDefinition' 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 |
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:74:20: warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
   |                    |- warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2NSAttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2NSAttrStrAttributes' 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
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:75:20: warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
   |                    |- warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultBoldAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultBoldAttrsChangesDescription' 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
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
77 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:76:20: warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
   |                    |- warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultItalicAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultItalicAttrsChangesDescription' 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
77 | #endif
78 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:73:20: warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
   |                    |- warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2AttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2AttrStrAttributes' 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
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.ForegroundColorAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Resolving Info/Tokens Group/CommonTokensGroup.swift:185:25: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
183 | 	public var str2AttrStrXibLocInfo: Str2AttrStrXibLocInfo {
184 | 		var defaultAttributes = baseAttributes
185 | 		if let f = baseFont  {defaultAttributes.font = f}
    |                         `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
186 | 		if let c = baseColor {defaultAttributes.foregroundColor = c}
187 |
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[44/45] Compiling XibLoc CommonTokensGroup_Linux.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:68:20: warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
66 | 	}()
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
   |                    |- warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultEscapeToken' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultEscapeToken' 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
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
70 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:69:20: warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
   |                    |- warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultPluralityDefinition' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultPluralityDefinition' 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 |
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:74:20: warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
   |                    |- warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2NSAttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2NSAttrStrAttributes' 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
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:75:20: warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
   |                    |- warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultBoldAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultBoldAttrsChangesDescription' 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
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
77 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:76:20: warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
   |                    |- warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultItalicAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultItalicAttrsChangesDescription' 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
77 | #endif
78 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:73:20: warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
   |                    |- warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2AttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2AttrStrAttributes' 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
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.ForegroundColorAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Resolving Info/Tokens Group/CommonTokensGroup.swift:185:25: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
183 | 	public var str2AttrStrXibLocInfo: Str2AttrStrXibLocInfo {
184 | 		var defaultAttributes = baseAttributes
185 | 		if let f = baseFont  {defaultAttributes.font = f}
    |                         `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
186 | 		if let c = baseColor {defaultAttributes.foregroundColor = c}
187 |
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[45/45] Compiling XibLoc TokensGroup.swift
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:68:20: warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
66 | 	}()
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
   |                    |- warning: static property 'defaultEscapeToken' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultEscapeToken' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultEscapeToken' 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
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
70 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:69:20: warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | 	public static var defaultEscapeToken: String? = "~"
69 | 	public static var defaultPluralityDefinition = PluralityDefinition(matchingNothing: ())
   |                    |- warning: static property 'defaultPluralityDefinition' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultPluralityDefinition' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultPluralityDefinition' 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 |
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:74:20: warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
   |                    |- warning: static property 'defaultStr2NSAttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2NSAttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2NSAttrStrAttributes' 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
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:75:20: warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
   |                    |- warning: static property 'defaultBoldAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultBoldAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultBoldAttrsChangesDescription' 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
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
77 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:76:20: warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
76 | 	public static var defaultItalicAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setItalic)
   |                    |- warning: static property 'defaultItalicAttrsChangesDescription' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultItalicAttrsChangesDescription' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultItalicAttrsChangesDescription' 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
77 | #endif
78 |
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/XibLocConfig.swift:73:20: warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
71 | #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
72 | 	@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
73 | 	public static var defaultStr2AttrStrAttributes: AttributeContainer = .init()
   |                    |- warning: static property 'defaultStr2AttrStrAttributes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'defaultStr2AttrStrAttributes' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'defaultStr2AttrStrAttributes' 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
74 | 	public static var defaultStr2NSAttrStrAttributes: [NSAttributedString.Key: Any]? = nil
75 | 	public static var defaultBoldAttrsChangesDescription: StringAttributesChangesDescription? = .init(change: .setBold)
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.AppKitAttributes, AttributeScopes.AppKitAttributes.ForegroundColorAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/XibLoc/Resolving Info/Tokens Group/CommonTokensGroup.swift:185:25: warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
183 | 	public var str2AttrStrXibLocInfo: Str2AttrStrXibLocInfo {
184 | 		var defaultAttributes = baseAttributes
185 | 		if let f = baseFont  {defaultAttributes.font = f}
    |                         `- warning: conformance of 'NSFont' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
186 | 		if let c = baseColor {defaultAttributes.foregroundColor = c}
187 |
AppKit.NSFont:2:11: note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension NSFont : @unchecked Sendable {
  |           `- note: conformance of 'NSFont' to 'Sendable' has been explicitly marked unavailable here
3 | }
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
Build complete! (29.69s)
Fetching https://github.com/apple/swift-log.git
[1/3361] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.14s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.4.4 (0.66s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.4.4
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    }
  ],
  "manifest_display_name" : "XibLoc",
  "name" : "XibLoc",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "XibLoc",
      "targets" : [
        "XibLoc"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XibLocTests",
      "module_type" : "SwiftTarget",
      "name" : "XibLocTests",
      "path" : "Tests/XibLocTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/XibLocTests/Helpers/en.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        }
      ],
      "sources" : [
        "AttrStrTests.swift",
        "AttributedStringUtilsTests.swift",
        "Helpers/PluralityDefinition+Utils.swift",
        "Helpers/Utils.swift",
        "Helpers/XibLoc4ObjCHelper.swift",
        "PluralityTests.swift",
        "XibLocResolvingInfoTests.swift",
        "XibLocTestsSwiftAttrStr.swift",
        "XibLocTestsSwiftNSAttrStr.swift",
        "XibLocTestsSwiftStr.swift"
      ],
      "target_dependencies" : [
        "XibLoc"
      ],
      "type" : "test"
    },
    {
      "c99name" : "XibLoc",
      "module_type" : "SwiftTarget",
      "name" : "XibLoc",
      "path" : "Sources/XibLoc",
      "product_dependencies" : [
        "Logging"
      ],
      "product_memberships" : [
        "XibLoc"
      ],
      "sources" : [
        "Cache/CacheLock.swift",
        "Cache/ParsedXibLoc+InitCache.swift",
        "Cache/XibLocParsingInfo.swift",
        "Parser/ParsedXibLoc.swift",
        "Parser/ParserHelper+AttributedString.swift",
        "Parser/ParserHelper+NSMutableAttributedString.swift",
        "Parser/ParserHelper+String.swift",
        "Parser/ParserHelper.swift",
        "Plurality/PluralValue.swift",
        "Plurality/PluralityDefinition.swift",
        "Plurality/PluralityDefinitionZone.swift",
        "Plurality/PluralityDefinitionZoneValue.swift",
        "Plurality/PluralityDefinitionZoneValueGlob.swift",
        "Plurality/PluralityDefinitionZoneValueIntervalOfFloats.swift",
        "Plurality/PluralityDefinitionZoneValueIntervalOfInts.swift",
        "Plurality/PluralityDefinitionZoneValueNumber.swift",
        "Resolving Info/MultipleWordsTokens.swift",
        "Resolving Info/OneWordTokens.swift",
        "Resolving Info/Str2AttrStrXibLocInfo.swift",
        "Resolving Info/Str2NSAttrStrXibLocInfo.swift",
        "Resolving Info/Str2StrXibLocInfo.swift",
        "Resolving Info/Tokens Group/CommonTokensGroup.swift",
        "Resolving Info/Tokens Group/CommonTokensGroup_Linux.swift",
        "Resolving Info/Tokens Group/TokensGroup.swift",
        "Resolving Info/XibLocResolvingInfo.swift",
        "Utilities/AttributedString+Utils.swift",
        "Utilities/Collection+Utils.swift",
        "Utilities/NSMutableAttributedString+Utils.swift",
        "Utilities/NumberFormatter+Utils.swift",
        "Utilities/RandomAccessCollection+StableSort.swift",
        "Utilities/Range+Utils.swift",
        "Utilities/Scanner+LinuxCompat.swift",
        "Utilities/StringAttributesChangesDescription.swift",
        "Utilities/XibLocFont.swift",
        "Utilities/XibLocNumber.swift",
        "XibLoc.swift",
        "XibLocConfig.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.