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

Swift 6 data race errors: 29

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

14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
   |                |- warning: static property 'uiView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:17:16: warning: static property 'uiViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
   |                |- warning: static property 'uiViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:18:16: warning: static property 'uiStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
   |                |- warning: static property 'uiStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiStoryboardSegue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
[103/143] Compiling RswiftGenerators Storyboard+Generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:12:16: warning: static property 'nsView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension TypeReference {
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
   |                `- warning: static property 'nsView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 7 |
 8 | import Foundation
 9 | import RswiftResources
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
10 |
11 | extension TypeReference {
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
   |                |- note: annotate 'nsView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:13:16: warning: static property 'nsViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
11 | extension TypeReference {
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
   |                |- warning: static property 'nsViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'nsViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
15 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:14:16: warning: static property 'nsStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
   |                |- warning: static property 'nsStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'nsStoryboardSegue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:16:16: warning: static property 'uiView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
   |                |- warning: static property 'uiView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:17:16: warning: static property 'uiViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
   |                |- warning: static property 'uiViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:18:16: warning: static property 'uiStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
   |                |- warning: static property 'uiStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiStoryboardSegue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
[104/143] Compiling RswiftParsers ResourceParsingError.swift
[105/143] Compiling RswiftParsers SourceTreeURLs.swift
[106/145] Compiling RswiftParsers URL+Extensions.swift
[107/145] Compiling RswiftParsers Xcodeproj.swift
[108/145] Emitting module RswiftParsers
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:15:5: warning: let 'uikitElementToTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |
 15 | let uikitElementToTypes: [String: TypeReference] = [
    |     `- warning: let 'uikitElementToTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 16 |     "viewController": TypeReference(module: .uiKit, rawName: "UIViewController"),
 17 |     "tabBarController": TypeReference(module: .uiKit, rawName: "UITabBarController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 10 | import FoundationXML
 11 | #endif
 12 | import RswiftResources
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 13 |
 14 |
 15 | let uikitElementToTypes: [String: TypeReference] = [
    |     |- note: annotate 'uikitElementToTypes' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |     "viewController": TypeReference(module: .uiKit, rawName: "UIViewController"),
 17 |     "tabBarController": TypeReference(module: .uiKit, rawName: "UITabBarController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:17:16: warning: static property 'uiViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
   |                `- warning: static property 'uiViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 7 |
 8 | import Foundation
 9 | import RswiftResources
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
10 |
11 | extension TypeReference {
   :
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
   |                |- note: annotate 'uiViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:16:16: warning: static property 'uiView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
   |                |- warning: static property 'uiView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:34:5: warning: let 'macosElementTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | ]
 33 |
 34 | let macosElementTypes: [String: TypeReference] = [
    |     |- warning: let 'macosElementTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: annotate 'macosElementTypes' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     "viewController": TypeReference(module: .appKit, rawName: "NSViewController"),
 36 |     "tabViewController": TypeReference(module: .appKit, rawName: "NSTabViewController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:13:16: warning: static property 'nsViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
11 | extension TypeReference {
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
   |                |- warning: static property 'nsViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'nsViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
15 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:12:16: warning: static property 'nsView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension TypeReference {
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
   |                |- warning: static property 'nsView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'nsView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Bundle+Extensions.swift:11:23: warning: static property 'temp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension Bundle {
11 |     public static var temp: Bundle = .main
   |                       |- warning: static property 'temp' 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 'temp' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'temp' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Glob.swift:17:12: warning: let 'GlobBehaviorBashV3' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
 15 | #endif
 16 |
 17 | public let GlobBehaviorBashV3 = Glob.Behavior(
    |            |- warning: let 'GlobBehaviorBashV3' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: annotate 'GlobBehaviorBashV3' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |     supportsGlobstar: false,
 19 |     includesFilesFromRootOfGlobstar: false,
    :
 43 |      * implementation is customizable.
 44 |      */
 45 |     public struct Behavior {
    |                   `- note: consider making struct 'Behavior' conform to the 'Sendable' protocol
 46 |         // If true then a globstar ("**") causes matching to be done recursively in subdirectories.
 47 |         // If false then "**" is treated the same as "*"
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Glob.swift:23:12: warning: let 'GlobBehaviorBashV4' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |     includesFilesInResultsIfTrailingSlash: false
 22 | )
 23 | public let GlobBehaviorBashV4 = Glob.Behavior(
    |            |- warning: let 'GlobBehaviorBashV4' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: annotate 'GlobBehaviorBashV4' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     supportsGlobstar: true, // Matches Bash v4 with "shopt -s globstar" option
 25 |     includesFilesFromRootOfGlobstar: true,
    :
 43 |      * implementation is customizable.
 44 |      */
 45 |     public struct Behavior {
    |                   `- note: consider making struct 'Behavior' conform to the 'Sendable' protocol
 46 |         // If true then a globstar ("**") causes matching to be done recursively in subdirectories.
 47 |         // If false then "**" is treated the same as "*"
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Glob.swift:29:12: warning: let 'GlobBehaviorGradle' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     includesFilesInResultsIfTrailingSlash: false
 28 | )
 29 | public let GlobBehaviorGradle = Glob.Behavior(
    |            |- warning: let 'GlobBehaviorGradle' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: annotate 'GlobBehaviorGradle' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     supportsGlobstar: true,
 31 |     includesFilesFromRootOfGlobstar: true,
    :
 43 |      * implementation is customizable.
 44 |      */
 45 |     public struct Behavior {
    |                   `- note: consider making struct 'Behavior' conform to the 'Sendable' protocol
 46 |         // If true then a globstar ("**") causes matching to be done recursively in subdirectories.
 47 |         // If false then "**" is treated the same as "*"
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Glob.swift:62:23: warning: static property 'defaultBehavior' 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 defaultBehavior = GlobBehaviorBashV4
    |                       |- warning: static property 'defaultBehavior' 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 'defaultBehavior' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'defaultBehavior' with '@MainActor' 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 |
 64 |     public static let defaultBlacklistedDirectories = ["node_modules", "Pods"]
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:14:16: warning: static property 'nsStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
   |                |- warning: static property 'nsStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'nsStoryboardSegue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:18:16: warning: static property 'uiStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
   |                |- warning: static property 'uiStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiStoryboardSegue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
[109/145] Compiling RswiftParsers FormatPart+Extensions.swift
[110/145] Compiling RswiftParsers GeneratedId.swift
[111/145] Compiling RswiftParsers Nib+Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:34:5: warning: let 'macosElementTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | ]
 33 |
 34 | let macosElementTypes: [String: TypeReference] = [
    |     `- warning: let 'macosElementTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     "viewController": TypeReference(module: .appKit, rawName: "NSViewController"),
 36 |     "tabViewController": TypeReference(module: .appKit, rawName: "NSTabViewController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 10 | import FoundationXML
 11 | #endif
 12 | import RswiftResources
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 13 |
 14 |
    :
 32 | ]
 33 |
 34 | let macosElementTypes: [String: TypeReference] = [
    |     |- note: annotate 'macosElementTypes' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     "viewController": TypeReference(module: .appKit, rawName: "NSViewController"),
 36 |     "tabViewController": TypeReference(module: .appKit, rawName: "NSTabViewController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:12:16: warning: static property 'nsView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension TypeReference {
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
   |                `- warning: static property 'nsView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 7 |
 8 | import Foundation
 9 | import RswiftResources
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
10 |
11 | extension TypeReference {
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
   |                |- note: annotate 'nsView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:15:5: warning: let 'uikitElementToTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |
 15 | let uikitElementToTypes: [String: TypeReference] = [
    |     |- warning: let 'uikitElementToTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: annotate 'uikitElementToTypes' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |     "viewController": TypeReference(module: .uiKit, rawName: "UIViewController"),
 17 |     "tabBarController": TypeReference(module: .uiKit, rawName: "UITabBarController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:16:16: warning: static property 'uiView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
   |                |- warning: static property 'uiView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
[112/145] Compiling RswiftGenerators Array+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:34:5: warning: let 'macosElementTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | ]
 33 |
 34 | let macosElementTypes: [String: TypeReference] = [
    |     `- warning: let 'macosElementTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     "viewController": TypeReference(module: .appKit, rawName: "NSViewController"),
 36 |     "tabViewController": TypeReference(module: .appKit, rawName: "NSTabViewController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 10 | import FoundationXML
 11 | #endif
 12 | import RswiftResources
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 13 |
 14 |
    :
 32 | ]
 33 |
 34 | let macosElementTypes: [String: TypeReference] = [
    |     |- note: annotate 'macosElementTypes' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     "viewController": TypeReference(module: .appKit, rawName: "NSViewController"),
 36 |     "tabViewController": TypeReference(module: .appKit, rawName: "NSTabViewController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:12:16: warning: static property 'nsView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension TypeReference {
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
   |                `- warning: static property 'nsView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 7 |
 8 | import Foundation
 9 | import RswiftResources
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
10 |
11 | extension TypeReference {
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
   |                |- note: annotate 'nsView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:15:5: warning: let 'uikitElementToTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |
 15 | let uikitElementToTypes: [String: TypeReference] = [
    |     |- warning: let 'uikitElementToTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: annotate 'uikitElementToTypes' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |     "viewController": TypeReference(module: .uiKit, rawName: "UIViewController"),
 17 |     "tabBarController": TypeReference(module: .uiKit, rawName: "UITabBarController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:16:16: warning: static property 'uiView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
   |                |- warning: static property 'uiView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
[113/145] Compiling RswiftGenerators StringsTable+Generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Bundle+Extensions.swift:11:23: warning: static property 'temp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension Bundle {
11 |     public static var temp: Bundle = .main
   |                       |- warning: static property 'temp' 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 'temp' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'temp' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
[114/145] Compiling RswiftParsers DeploymentTarget+Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Bundle+Extensions.swift:11:23: warning: static property 'temp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension Bundle {
11 |     public static var temp: Bundle = .main
   |                       |- warning: static property 'temp' 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 'temp' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'temp' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
[115/145] Compiling RswiftParsers Glob.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Glob.swift:17:12: warning: let 'GlobBehaviorBashV3' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
 15 | #endif
 16 |
 17 | public let GlobBehaviorBashV3 = Glob.Behavior(
    |            |- warning: let 'GlobBehaviorBashV3' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: annotate 'GlobBehaviorBashV3' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |     supportsGlobstar: false,
 19 |     includesFilesFromRootOfGlobstar: false,
    :
 43 |      * implementation is customizable.
 44 |      */
 45 |     public struct Behavior {
    |                   `- note: consider making struct 'Behavior' conform to the 'Sendable' protocol
 46 |         // If true then a globstar ("**") causes matching to be done recursively in subdirectories.
 47 |         // If false then "**" is treated the same as "*"
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Glob.swift:23:12: warning: let 'GlobBehaviorBashV4' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |     includesFilesInResultsIfTrailingSlash: false
 22 | )
 23 | public let GlobBehaviorBashV4 = Glob.Behavior(
    |            |- warning: let 'GlobBehaviorBashV4' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: annotate 'GlobBehaviorBashV4' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     supportsGlobstar: true, // Matches Bash v4 with "shopt -s globstar" option
 25 |     includesFilesFromRootOfGlobstar: true,
    :
 43 |      * implementation is customizable.
 44 |      */
 45 |     public struct Behavior {
    |                   `- note: consider making struct 'Behavior' conform to the 'Sendable' protocol
 46 |         // If true then a globstar ("**") causes matching to be done recursively in subdirectories.
 47 |         // If false then "**" is treated the same as "*"
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Glob.swift:29:12: warning: let 'GlobBehaviorGradle' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     includesFilesInResultsIfTrailingSlash: false
 28 | )
 29 | public let GlobBehaviorGradle = Glob.Behavior(
    |            |- warning: let 'GlobBehaviorGradle' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: annotate 'GlobBehaviorGradle' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     supportsGlobstar: true,
 31 |     includesFilesFromRootOfGlobstar: true,
    :
 43 |      * implementation is customizable.
 44 |      */
 45 |     public struct Behavior {
    |                   `- note: consider making struct 'Behavior' conform to the 'Sendable' protocol
 46 |         // If true then a globstar ("**") causes matching to be done recursively in subdirectories.
 47 |         // If false then "**" is treated the same as "*"
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Glob.swift:62:23: warning: static property 'defaultBehavior' 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 defaultBehavior = GlobBehaviorBashV4
    |                       |- warning: static property 'defaultBehavior' 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 'defaultBehavior' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'defaultBehavior' with '@MainActor' 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 |
 64 |     public static let defaultBlacklistedDirectories = ["node_modules", "Pods"]
[116/145] Compiling RswiftParsers IgnoreFile.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Glob.swift:17:12: warning: let 'GlobBehaviorBashV3' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
 15 | #endif
 16 |
 17 | public let GlobBehaviorBashV3 = Glob.Behavior(
    |            |- warning: let 'GlobBehaviorBashV3' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: annotate 'GlobBehaviorBashV3' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |     supportsGlobstar: false,
 19 |     includesFilesFromRootOfGlobstar: false,
    :
 43 |      * implementation is customizable.
 44 |      */
 45 |     public struct Behavior {
    |                   `- note: consider making struct 'Behavior' conform to the 'Sendable' protocol
 46 |         // If true then a globstar ("**") causes matching to be done recursively in subdirectories.
 47 |         // If false then "**" is treated the same as "*"
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Glob.swift:23:12: warning: let 'GlobBehaviorBashV4' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |     includesFilesInResultsIfTrailingSlash: false
 22 | )
 23 | public let GlobBehaviorBashV4 = Glob.Behavior(
    |            |- warning: let 'GlobBehaviorBashV4' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: annotate 'GlobBehaviorBashV4' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     supportsGlobstar: true, // Matches Bash v4 with "shopt -s globstar" option
 25 |     includesFilesFromRootOfGlobstar: true,
    :
 43 |      * implementation is customizable.
 44 |      */
 45 |     public struct Behavior {
    |                   `- note: consider making struct 'Behavior' conform to the 'Sendable' protocol
 46 |         // If true then a globstar ("**") causes matching to be done recursively in subdirectories.
 47 |         // If false then "**" is treated the same as "*"
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Glob.swift:29:12: warning: let 'GlobBehaviorGradle' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     includesFilesInResultsIfTrailingSlash: false
 28 | )
 29 | public let GlobBehaviorGradle = Glob.Behavior(
    |            |- warning: let 'GlobBehaviorGradle' is not concurrency-safe because non-'Sendable' type 'Glob.Behavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: annotate 'GlobBehaviorGradle' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     supportsGlobstar: true,
 31 |     includesFilesFromRootOfGlobstar: true,
    :
 43 |      * implementation is customizable.
 44 |      */
 45 |     public struct Behavior {
    |                   `- note: consider making struct 'Behavior' conform to the 'Sendable' protocol
 46 |         // If true then a globstar ("**") causes matching to be done recursively in subdirectories.
 47 |         // If false then "**" is treated the same as "*"
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Glob.swift:62:23: warning: static property 'defaultBehavior' 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 defaultBehavior = GlobBehaviorBashV4
    |                       |- warning: static property 'defaultBehavior' 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 'defaultBehavior' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'defaultBehavior' with '@MainActor' 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 |
 64 |     public static let defaultBlacklistedDirectories = ["node_modules", "Pods"]
[119/146] Compiling RswiftParsers FontResource+Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Bundle+Extensions.swift:11:23: warning: static property 'temp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension Bundle {
11 |     public static var temp: Bundle = .main
   |                       |- warning: static property 'temp' 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 'temp' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'temp' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
[120/146] Compiling RswiftParsers ImageResource+Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Bundle+Extensions.swift:11:23: warning: static property 'temp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension Bundle {
11 |     public static var temp: Bundle = .main
   |                       |- warning: static property 'temp' 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 'temp' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'temp' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
[121/146] Compiling RswiftParsers Storyboard+Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:15:5: warning: let 'uikitElementToTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |
 15 | let uikitElementToTypes: [String: TypeReference] = [
    |     `- warning: let 'uikitElementToTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 16 |     "viewController": TypeReference(module: .uiKit, rawName: "UIViewController"),
 17 |     "tabBarController": TypeReference(module: .uiKit, rawName: "UITabBarController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 10 | import FoundationXML
 11 | #endif
 12 | import RswiftResources
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 13 |
 14 |
 15 | let uikitElementToTypes: [String: TypeReference] = [
    |     |- note: annotate 'uikitElementToTypes' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |     "viewController": TypeReference(module: .uiKit, rawName: "UIViewController"),
 17 |     "tabBarController": TypeReference(module: .uiKit, rawName: "UITabBarController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:17:16: warning: static property 'uiViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
   |                `- warning: static property 'uiViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 7 |
 8 | import Foundation
 9 | import RswiftResources
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
10 |
11 | extension TypeReference {
   :
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
   |                |- note: annotate 'uiViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:16:16: warning: static property 'uiView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
   |                |- warning: static property 'uiView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:34:5: warning: let 'macosElementTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | ]
 33 |
 34 | let macosElementTypes: [String: TypeReference] = [
    |     |- warning: let 'macosElementTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: annotate 'macosElementTypes' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     "viewController": TypeReference(module: .appKit, rawName: "NSViewController"),
 36 |     "tabViewController": TypeReference(module: .appKit, rawName: "NSTabViewController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:13:16: warning: static property 'nsViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
11 | extension TypeReference {
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
   |                |- warning: static property 'nsViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'nsViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
15 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:12:16: warning: static property 'nsView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension TypeReference {
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
   |                |- warning: static property 'nsView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'nsView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:14:16: warning: static property 'nsStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
   |                |- warning: static property 'nsStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'nsStoryboardSegue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:18:16: warning: static property 'uiStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
   |                |- warning: static property 'uiStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiStoryboardSegue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
[122/146] Compiling RswiftParsers StringsTable+Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:15:5: warning: let 'uikitElementToTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |
 15 | let uikitElementToTypes: [String: TypeReference] = [
    |     `- warning: let 'uikitElementToTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 16 |     "viewController": TypeReference(module: .uiKit, rawName: "UIViewController"),
 17 |     "tabBarController": TypeReference(module: .uiKit, rawName: "UITabBarController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 10 | import FoundationXML
 11 | #endif
 12 | import RswiftResources
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 13 |
 14 |
 15 | let uikitElementToTypes: [String: TypeReference] = [
    |     |- note: annotate 'uikitElementToTypes' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |     "viewController": TypeReference(module: .uiKit, rawName: "UIViewController"),
 17 |     "tabBarController": TypeReference(module: .uiKit, rawName: "UITabBarController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:17:16: warning: static property 'uiViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
   |                `- warning: static property 'uiViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
 7 |
 8 | import Foundation
 9 | import RswiftResources
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'RswiftResources'
10 |
11 | extension TypeReference {
   :
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
   |                |- note: annotate 'uiViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:16:16: warning: static property 'uiView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
   |                |- warning: static property 'uiView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Resources/Storyboard+Parser.swift:34:5: warning: let 'macosElementTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | ]
 33 |
 34 | let macosElementTypes: [String: TypeReference] = [
    |     |- warning: let 'macosElementTypes' is not concurrency-safe because non-'Sendable' type '[String : TypeReference]' may have shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: annotate 'macosElementTypes' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     "viewController": TypeReference(module: .appKit, rawName: "NSViewController"),
 36 |     "tabViewController": TypeReference(module: .appKit, rawName: "NSTabViewController"),
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:13:16: warning: static property 'nsViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
11 | extension TypeReference {
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
   |                |- warning: static property 'nsViewController' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'nsViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
15 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:12:16: warning: static property 'nsView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension TypeReference {
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
   |                |- warning: static property 'nsView' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'nsView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:14:16: warning: static property 'nsStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     static let nsView = TypeReference(module: .appKit, rawName: "NSView")
13 |     static let nsViewController = TypeReference(module: .appKit, rawName: "NSViewController")
14 |     static let nsStoryboardSegue = TypeReference(module: .appKit, rawName: "NSStoryboardSegue")
   |                |- warning: static property 'nsStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'nsStoryboardSegue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/TypeReference+Extensions.swift:18:16: warning: static property 'uiStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
16 |     static let uiView = TypeReference(module: .uiKit, rawName: "UIView")
17 |     static let uiViewController = TypeReference(module: .uiKit, rawName: "UIViewController")
18 |     static let uiStoryboardSegue = TypeReference(module: .uiKit, rawName: "UIStoryboardSegue")
   |                |- warning: static property 'uiStoryboardSegue' is not concurrency-safe because non-'Sendable' type 'TypeReference' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'uiStoryboardSegue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftResources/Shared/TypeReference.swift:10:15: note: struct 'TypeReference' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TypeReference: Hashable {
   |               `- note: struct 'TypeReference' does not conform to the 'Sendable' protocol
11 |     public let module: ModuleReference
12 |     public let name: String
[123/146] Compiling RswiftParsers ProjectResources.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Bundle+Extensions.swift:11:23: warning: static property 'temp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension Bundle {
11 |     public static var temp: Bundle = .main
   |                       |- warning: static property 'temp' 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 'temp' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'temp' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
[124/146] Compiling RswiftParsers AssetCatalog+Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Bundle+Extensions.swift:11:23: warning: static property 'temp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension Bundle {
11 |     public static var temp: Bundle = .main
   |                       |- warning: static property 'temp' 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 'temp' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'temp' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
[125/146] Compiling RswiftParsers FileResource+Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftParsers/Shared/Bundle+Extensions.swift:11:23: warning: static property 'temp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension Bundle {
11 |     public static var temp: Bundle = .main
   |                       |- warning: static property 'temp' 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 'temp' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'temp' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:37:16: warning: static property 'void' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
   |                |- warning: static property 'void' 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 'void' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'void' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:35:16: warning: static property 'bundle' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
33 |     }
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
   |                |- warning: static property 'bundle' 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 'bundle' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:36:16: warning: static property 'locale' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
   |                |- warning: static property 'locale' 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 'locale' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'locale' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:39:16: warning: static property 'string' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
   |                |- warning: static property 'string' 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 'string' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'string' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:37:16: warning: static property 'void' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
   |                |- warning: static property 'void' 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 'void' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'void' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:35:16: warning: static property 'bundle' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
33 |     }
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
   |                |- warning: static property 'bundle' 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 'bundle' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:36:16: warning: static property 'locale' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
   |                |- warning: static property 'locale' 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 'locale' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'locale' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:39:16: warning: static property 'string' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
   |                |- warning: static property 'string' 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 'string' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'string' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:44:16: warning: static property 'nsViewController' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
   |                |- warning: static property 'nsViewController' 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 'nsViewController' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'nsViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:43:16: warning: static property 'uiViewController' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
   |                |- warning: static property 'uiViewController' 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 'uiViewController' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'uiViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
45 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:44:16: warning: static property 'nsViewController' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
   |                |- warning: static property 'nsViewController' 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 'nsViewController' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'nsViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:43:16: warning: static property 'uiViewController' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
   |                |- warning: static property 'uiViewController' 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 'uiViewController' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'uiViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
45 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:40:16: warning: static property 'sequence' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
   |                |- warning: static property 'sequence' 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 'sequence' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'sequence' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:47:16: warning: static property 'fontResource' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 |
47 |     static var fontResource: TypeReference = .init(module: .rswiftResources, rawName: "FontResource")
   |                |- warning: static property 'fontResource' 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 'fontResource' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'fontResource' with '@MainActor' 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 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:37:16: warning: static property 'void' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
   |                |- warning: static property 'void' 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 'void' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'void' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:40:16: warning: static property 'sequence' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
   |                |- warning: static property 'sequence' 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 'sequence' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'sequence' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:47:16: warning: static property 'fontResource' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 |
47 |     static var fontResource: TypeReference = .init(module: .rswiftResources, rawName: "FontResource")
   |                |- warning: static property 'fontResource' 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 'fontResource' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'fontResource' with '@MainActor' 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 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:37:16: warning: static property 'void' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
   |                |- warning: static property 'void' 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 'void' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'void' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
[134/146] Emitting module RswiftGenerators
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:35:16: warning: static property 'bundle' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
33 |     }
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
   |                |- warning: static property 'bundle' 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 'bundle' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:36:16: warning: static property 'locale' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
   |                |- warning: static property 'locale' 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 'locale' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'locale' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:37:16: warning: static property 'void' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
   |                |- warning: static property 'void' 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 'void' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'void' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:38:16: warning: static property 'bool' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
   |                |- warning: static property 'bool' 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 'bool' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'bool' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:39:16: warning: static property 'string' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
   |                |- warning: static property 'string' 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 'string' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'string' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:40:16: warning: static property 'sequence' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
   |                |- warning: static property 'sequence' 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 'sequence' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'sequence' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:41:16: warning: static property 'someIteratorProtocol' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
   |                |- warning: static property 'someIteratorProtocol' 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 'someIteratorProtocol' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'someIteratorProtocol' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:42:16: warning: static property 'uiView' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
   |                |- warning: static property 'uiView' 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 'uiView' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'uiView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:43:16: warning: static property 'uiViewController' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
   |                |- warning: static property 'uiViewController' 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 'uiViewController' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'uiViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
45 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:44:16: warning: static property 'nsViewController' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
   |                |- warning: static property 'nsViewController' 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 'nsViewController' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'nsViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:47:16: warning: static property 'fontResource' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 |
47 |     static var fontResource: TypeReference = .init(module: .rswiftResources, rawName: "FontResource")
   |                |- warning: static property 'fontResource' 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 'fontResource' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'fontResource' with '@MainActor' 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 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/SwiftSyntax/Struct.swift:382:23: warning: static property 'empty' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
380 |     public var additionalModuleReferences: Set<ModuleReference> = []
381 |
382 |     public static var empty: Struct = Struct(name: SwiftIdentifier(name: "empty"), membersBuilder: {})
    |                       |- warning: static property 'empty' 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 'empty' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
383 |
384 |     public init(
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/SwiftSyntax/Struct.swift:382:23: warning: static property 'empty' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
380 |     public var additionalModuleReferences: Set<ModuleReference> = []
381 |
382 |     public static var empty: Struct = Struct(name: SwiftIdentifier(name: "empty"), membersBuilder: {})
    |                       |- warning: static property 'empty' 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 'empty' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
383 |
384 |     public init(
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:37:16: warning: static property 'void' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
   |                |- warning: static property 'void' 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 'void' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'void' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:35:16: warning: static property 'bundle' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
33 |     }
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
   |                |- warning: static property 'bundle' 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 'bundle' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:36:16: warning: static property 'locale' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
   |                |- warning: static property 'locale' 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 'locale' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'locale' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/SwiftSyntax/Struct.swift:382:23: warning: static property 'empty' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
380 |     public var additionalModuleReferences: Set<ModuleReference> = []
381 |
382 |     public static var empty: Struct = Struct(name: SwiftIdentifier(name: "empty"), membersBuilder: {})
    |                       |- warning: static property 'empty' 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 'empty' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
383 |
384 |     public init(
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:37:16: warning: static property 'void' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
   |                |- warning: static property 'void' 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 'void' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'void' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:35:16: warning: static property 'bundle' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
33 |     }
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
   |                |- warning: static property 'bundle' 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 'bundle' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:36:16: warning: static property 'locale' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
   |                |- warning: static property 'locale' 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 'locale' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'locale' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:37:16: warning: static property 'void' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
   |                |- warning: static property 'void' 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 'void' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'void' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:42:16: warning: static property 'uiView' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
   |                |- warning: static property 'uiView' 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 'uiView' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'uiView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/SwiftSyntax/Struct.swift:382:23: warning: static property 'empty' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
380 |     public var additionalModuleReferences: Set<ModuleReference> = []
381 |
382 |     public static var empty: Struct = Struct(name: SwiftIdentifier(name: "empty"), membersBuilder: {})
    |                       |- warning: static property 'empty' 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 'empty' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
383 |
384 |     public init(
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:38:16: warning: static property 'bool' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
   |                |- warning: static property 'bool' 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 'bool' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'bool' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:39:16: warning: static property 'string' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
   |                |- warning: static property 'string' 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 'string' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'string' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:37:16: warning: static property 'void' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
   |                |- warning: static property 'void' 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 'void' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'void' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:42:16: warning: static property 'uiView' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
   |                |- warning: static property 'uiView' 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 'uiView' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'uiView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/SwiftSyntax/Struct.swift:382:23: warning: static property 'empty' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
380 |     public var additionalModuleReferences: Set<ModuleReference> = []
381 |
382 |     public static var empty: Struct = Struct(name: SwiftIdentifier(name: "empty"), membersBuilder: {})
    |                       |- warning: static property 'empty' 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 'empty' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
383 |
384 |     public init(
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:38:16: warning: static property 'bool' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
   |                |- warning: static property 'bool' 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 'bool' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'bool' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:39:16: warning: static property 'string' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
   |                |- warning: static property 'string' 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 'string' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'string' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:35:16: warning: static property 'bundle' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
33 |     }
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
   |                |- warning: static property 'bundle' 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 'bundle' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:36:16: warning: static property 'locale' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
   |                |- warning: static property 'locale' 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 'locale' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'locale' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:37:16: warning: static property 'void' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
   |                |- warning: static property 'void' 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 'void' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'void' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:38:16: warning: static property 'bool' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
   |                |- warning: static property 'bool' 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 'bool' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'bool' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:39:16: warning: static property 'string' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
   |                |- warning: static property 'string' 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 'string' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'string' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:40:16: warning: static property 'sequence' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
   |                |- warning: static property 'sequence' 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 'sequence' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'sequence' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:41:16: warning: static property 'someIteratorProtocol' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
   |                |- warning: static property 'someIteratorProtocol' 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 'someIteratorProtocol' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'someIteratorProtocol' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:42:16: warning: static property 'uiView' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
   |                |- warning: static property 'uiView' 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 'uiView' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'uiView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:43:16: warning: static property 'uiViewController' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
   |                |- warning: static property 'uiViewController' 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 'uiViewController' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'uiViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
45 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:44:16: warning: static property 'nsViewController' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
   |                |- warning: static property 'nsViewController' 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 'nsViewController' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'nsViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:47:16: warning: static property 'fontResource' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 |
47 |     static var fontResource: TypeReference = .init(module: .rswiftResources, rawName: "FontResource")
   |                |- warning: static property 'fontResource' 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 'fontResource' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'fontResource' with '@MainActor' 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 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:35:16: warning: static property 'bundle' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
33 |     }
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
   |                |- warning: static property 'bundle' 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 'bundle' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:36:16: warning: static property 'locale' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
34 |
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
   |                |- warning: static property 'locale' 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 'locale' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'locale' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:37:16: warning: static property 'void' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
35 |     static var bundle: TypeReference = .init(module: .foundation, rawName: "Bundle")
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
   |                |- warning: static property 'void' 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 'void' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'void' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:38:16: warning: static property 'bool' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
36 |     static var locale: TypeReference = .init(module: .foundation, rawName: "Locale")
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
   |                |- warning: static property 'bool' 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 'bool' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'bool' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:39:16: warning: static property 'string' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
   |                |- warning: static property 'string' 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 'string' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'string' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:40:16: warning: static property 'sequence' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
   |                |- warning: static property 'sequence' 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 'sequence' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'sequence' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:41:16: warning: static property 'someIteratorProtocol' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
   |                |- warning: static property 'someIteratorProtocol' 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 'someIteratorProtocol' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'someIteratorProtocol' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:42:16: warning: static property 'uiView' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
   |                |- warning: static property 'uiView' 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 'uiView' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'uiView' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:43:16: warning: static property 'uiViewController' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
   |                |- warning: static property 'uiViewController' 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 'uiViewController' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'uiViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
45 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:44:16: warning: static property 'nsViewController' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
43 |     static var uiViewController: TypeReference = .init(module: .uiKit, rawName: "UIViewController")
44 |     static var nsViewController: TypeReference = .init(module: .appKit, rawName: "NSViewController")
   |                |- warning: static property 'nsViewController' 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 'nsViewController' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'nsViewController' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:47:16: warning: static property 'fontResource' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 |
47 |     static var fontResource: TypeReference = .init(module: .rswiftResources, rawName: "FontResource")
   |                |- warning: static property 'fontResource' 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 'fontResource' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'fontResource' with '@MainActor' 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 | }
49 |
[143/146] Compiling RswiftGenerators XcodeProject+Generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:40:16: warning: static property 'sequence' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
   |                |- warning: static property 'sequence' 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 'sequence' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'sequence' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
42 |     static var uiView: TypeReference = .init(module: .uiKit, rawName: "UIView")
/Users/admin/builder/spi-builder-workspace/Sources/RswiftGenerators/Shared/TypeReference+Generator.swift:39:16: warning: static property 'string' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
37 |     static var void: TypeReference = .init(module: .stdLib, rawName: "Void")
38 |     static var bool: TypeReference = .init(module: .stdLib, rawName: "Bool")
39 |     static var string: TypeReference = .init(module: .stdLib, rawName: "String")
   |                |- warning: static property 'string' 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 'string' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'string' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     static var sequence: TypeReference = .init(module: .stdLib, rawName: "Sequence")
41 |     static var someIteratorProtocol: TypeReference = .init(module: .stdLib, rawName: "some IteratorProtocol")
[144/150] Compiling rswift RswiftCore.swift
/Users/admin/builder/spi-builder-workspace/Sources/rswift/RswiftCore.swift:15:1: warning: extension declares a conformance of imported type 'ResourceType' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'RswiftParsers' introduce this conformance in the future
 13 | import RswiftGenerators
 14 |
 15 | extension ResourceType: ExpressibleByArgument {}
    | |- warning: extension declares a conformance of imported type 'ResourceType' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'RswiftParsers' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |
 17 | public enum AccessLevel: String, ExpressibleByArgument {
[145/150] Compiling rswift Config.swift
[146/150] Compiling rswift App.swift
/Users/admin/builder/spi-builder-workspace/Sources/rswift/App.swift:16:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 14 | @main
 15 | struct App: ParsableCommand {
 16 |     static var configuration = CommandConfiguration(
    |                |- warning: static property 'configuration' 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 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 17 |         commandName: "rswift",
 18 |         abstract: "Generate static references for autocompleted resources like images, fonts and localized strings in Swift projects",
/Users/admin/builder/spi-builder-workspace/Sources/rswift/App.swift:61:13: warning: var 'generatorsString' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 59 | }
 60 |
 61 | private var generatorsString = ResourceType.allCases.map(\.rawValue).joined(separator: ", ")
    |             |- warning: var 'generatorsString' 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 'generatorsString' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'generatorsString' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 | private func parseGenerators(_ str: String) -> [ResourceType] {
 63 |     str.components(separatedBy: ",").map { ResourceType(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/Sources/rswift/App.swift:68:20: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 66 | extension App {
 67 |     struct Generate: ParsableCommand {
 68 |         static var configuration = CommandConfiguration(abstract: "Generates R.generated.swift file")
    |                    |- warning: static property 'configuration' 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 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |
 70 |         @OptionGroup
/Users/admin/builder/spi-builder-workspace/Sources/rswift/App.swift:164:20: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
162 | extension App {
163 |     struct ModifyXcodePackages: ParsableCommand {
164 |         static var configuration = CommandConfiguration(abstract: "Modifies Xcode project to fix package reference for plugins")
    |                    |- warning: static property 'configuration' 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 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
165 |
166 |         @Option(help: "Path to xcodeproj file")
[147/150] Emitting module rswift
/Users/admin/builder/spi-builder-workspace/Sources/rswift/App.swift:16:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 14 | @main
 15 | struct App: ParsableCommand {
 16 |     static var configuration = CommandConfiguration(
    |                |- warning: static property 'configuration' 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 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 17 |         commandName: "rswift",
 18 |         abstract: "Generate static references for autocompleted resources like images, fonts and localized strings in Swift projects",
/Users/admin/builder/spi-builder-workspace/Sources/rswift/App.swift:61:13: warning: var 'generatorsString' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 59 | }
 60 |
 61 | private var generatorsString = ResourceType.allCases.map(\.rawValue).joined(separator: ", ")
    |             |- warning: var 'generatorsString' 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 'generatorsString' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'generatorsString' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 | private func parseGenerators(_ str: String) -> [ResourceType] {
 63 |     str.components(separatedBy: ",").map { ResourceType(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/Sources/rswift/App.swift:68:20: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 66 | extension App {
 67 |     struct Generate: ParsableCommand {
 68 |         static var configuration = CommandConfiguration(abstract: "Generates R.generated.swift file")
    |                    |- warning: static property 'configuration' 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 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |
 70 |         @OptionGroup
/Users/admin/builder/spi-builder-workspace/Sources/rswift/App.swift:164:20: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
162 | extension App {
163 |     struct ModifyXcodePackages: ParsableCommand {
164 |         static var configuration = CommandConfiguration(abstract: "Modifies Xcode project to fix package reference for plugins")
    |                    |- warning: static property 'configuration' 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 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
165 |
166 |         @Option(help: "Path to xcodeproj file")
/Users/admin/builder/spi-builder-workspace/Sources/rswift/RswiftCore.swift:15:1: warning: extension declares a conformance of imported type 'ResourceType' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'RswiftParsers' introduce this conformance in the future
 13 | import RswiftGenerators
 14 |
 15 | extension ResourceType: ExpressibleByArgument {}
    | |- warning: extension declares a conformance of imported type 'ResourceType' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'RswiftParsers' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |
 17 | public enum AccessLevel: String, ExpressibleByArgument {
[147/150] Write Objects.LinkFileList
[148/150] Linking rswift
[149/150] Applying rswift
Build complete! (47.38s)
Fetching https://github.com/apple/swift-argument-parser
Fetching https://github.com/tomlokhorst/XcodeEdit
[1/1120] Fetching xcodeedit
[741/12799] Fetching xcodeedit, swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.69s)
Fetched https://github.com/tomlokhorst/XcodeEdit from cache (1.69s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.2.3 (0.74s)
Computing version for https://github.com/tomlokhorst/XcodeEdit
Computed https://github.com/tomlokhorst/XcodeEdit at 2.9.1 (0.65s)
Creating working copy for https://github.com/tomlokhorst/XcodeEdit
Working copy of https://github.com/tomlokhorst/XcodeEdit resolved at 2.9.1
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.2.3
Build complete.
{
  "dependencies" : [
    {
      "identity" : "xcodeedit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.9.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/tomlokhorst/XcodeEdit"
    },
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    }
  ],
  "manifest_display_name" : "Rswift",
  "name" : "Rswift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "tvos",
      "version" : "11.0"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    }
  ],
  "products" : [
    {
      "name" : "rswift",
      "targets" : [
        "rswift"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "RswiftLibrary",
      "targets" : [
        "RswiftResources"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RswiftGenerateInternalResources",
      "targets" : [
        "RswiftGenerateInternalResources"
      ],
      "type" : {
        "plugin" : null
      }
    },
    {
      "name" : "RswiftGeneratePublicResources",
      "targets" : [
        "RswiftGeneratePublicResources"
      ],
      "type" : {
        "plugin" : null
      }
    },
    {
      "name" : "RswiftGenerateResourcesCommand",
      "targets" : [
        "RswiftGenerateResourcesCommand"
      ],
      "type" : {
        "plugin" : null
      }
    },
    {
      "name" : "RswiftModifyXcodePackages",
      "targets" : [
        "RswiftModifyXcodePackages"
      ],
      "type" : {
        "plugin" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "rswift",
      "module_type" : "SwiftTarget",
      "name" : "rswift",
      "path" : "Sources/rswift",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "rswift",
        "RswiftGenerateInternalResources",
        "RswiftGeneratePublicResources",
        "RswiftGenerateResourcesCommand",
        "RswiftModifyXcodePackages"
      ],
      "sources" : [
        "App.swift",
        "Config.swift",
        "RswiftCore.swift"
      ],
      "target_dependencies" : [
        "RswiftParsers",
        "RswiftGenerators"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "RswiftResources",
      "module_type" : "SwiftTarget",
      "name" : "RswiftResources",
      "path" : "Sources/RswiftResources",
      "product_memberships" : [
        "rswift",
        "RswiftLibrary",
        "RswiftGenerateInternalResources",
        "RswiftGeneratePublicResources",
        "RswiftGenerateResourcesCommand",
        "RswiftModifyXcodePackages"
      ],
      "sources" : [
        "AssetCatalog.swift",
        "ColorResource.swift",
        "DataResource.swift",
        "FileResource.swift",
        "FontResource.swift",
        "ImageResource.swift",
        "Integrations/Bundle+Extensions.swift",
        "Integrations/ColorResource+Integrations.swift",
        "Integrations/DataResource+Integrations.swift",
        "Integrations/FileResource+Integrations.swift",
        "Integrations/FontResource+Integrations.swift",
        "Integrations/ImageResource+Integrations.swift",
        "Integrations/NibReference+Integrations.swift",
        "Integrations/ReuseIdentifier+Integrations.swift",
        "Integrations/SegueIdentifier+Integrations.swift",
        "Integrations/StoryboardReference+Integrations.swift",
        "Integrations/StringResource+Integrations.swift",
        "NibResource.swift",
        "PropertyListResource.swift",
        "Shared/DeploymentTarget.swift",
        "Shared/LocaleReference.swift",
        "Shared/ModuleReference.swift",
        "Shared/NameCatalog.swift",
        "Shared/Reusable.swift",
        "Shared/StoryboardReference.swift",
        "Shared/StringParam+Extensions.swift",
        "Shared/StringParam.swift",
        "Shared/StringsTable.swift",
        "Shared/TypeReference.swift",
        "Shared/Unifiable.swift",
        "Shared/ValidationError.swift",
        "StoryboardResource.swift",
        "StringResource.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RswiftParsersTests",
      "module_type" : "SwiftTarget",
      "name" : "RswiftParsersTests",
      "path" : "Tests/RswiftParsersTests",
      "sources" : [
        "GlobTests.swift",
        "NibParserDelegateTests.swift"
      ],
      "target_dependencies" : [
        "RswiftParsers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "RswiftParsers",
      "module_type" : "SwiftTarget",
      "name" : "RswiftParsers",
      "path" : "Sources/RswiftParsers",
      "product_dependencies" : [
        "XcodeEdit"
      ],
      "product_memberships" : [
        "rswift",
        "RswiftGenerateInternalResources",
        "RswiftGeneratePublicResources",
        "RswiftGenerateResourcesCommand",
        "RswiftModifyXcodePackages"
      ],
      "sources" : [
        "ProjectResources.swift",
        "Resources/AssetCatalog+Parser.swift",
        "Resources/FileResource+Parser.swift",
        "Resources/FontResource+Parser.swift",
        "Resources/ImageResource+Parser.swift",
        "Resources/Nib+Parser.swift",
        "Resources/PropertyList+Parser.swift",
        "Resources/Storyboard+Parser.swift",
        "Resources/StringsTable+Parser.swift",
        "Shared/Bundle+Extensions.swift",
        "Shared/DeploymentTarget+Parser.swift",
        "Shared/FormatPart+Extensions.swift",
        "Shared/GeneratedId.swift",
        "Shared/Glob.swift",
        "Shared/IgnoreFile.swift",
        "Shared/ResourceParsingError.swift",
        "Shared/SourceTreeURLs.swift",
        "Shared/SupportedExtensions.swift",
        "Shared/TypeReference+Extensions.swift",
        "Shared/URL+Extensions.swift",
        "Shared/Xcodeproj.swift"
      ],
      "target_dependencies" : [
        "RswiftResources"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RswiftModifyXcodePackages",
      "module_type" : "PluginTarget",
      "name" : "RswiftModifyXcodePackages",
      "path" : "Plugins/RswiftModifyXcodePackages",
      "plugin_capability" : {
        "intent" : {
          "description" : "Rswift modify Xcode packages",
          "type" : "custom",
          "verb" : "rswift-modify-xcode-packages"
        },
        "permissions" : [
          {
            "network_scope" : {
              "none" : {
              }
            },
            "reason" : "Modifies Xcode project to fix package reference for plugins",
            "type" : "writeToPackageDirectory"
          }
        ],
        "type" : "command"
      },
      "product_memberships" : [
        "RswiftModifyXcodePackages"
      ],
      "sources" : [
        "RswiftModifyXcodePackages.swift"
      ],
      "target_dependencies" : [
        "rswift"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "RswiftGeneratorsTests",
      "module_type" : "SwiftTarget",
      "name" : "RswiftGeneratorsTests",
      "path" : "Tests/RswiftGeneratorsTests",
      "sources" : [
        "MainTests.swift"
      ],
      "target_dependencies" : [
        "RswiftGenerators"
      ],
      "type" : "test"
    },
    {
      "c99name" : "RswiftGenerators",
      "module_type" : "SwiftTarget",
      "name" : "RswiftGenerators",
      "path" : "Sources/RswiftGenerators",
      "product_memberships" : [
        "rswift",
        "RswiftGenerateInternalResources",
        "RswiftGeneratePublicResources",
        "RswiftGenerateResourcesCommand",
        "RswiftModifyXcodePackages"
      ],
      "sources" : [
        "AccessibilityIdentifier+Generator.swift",
        "AssetCatalog+Generator.swift",
        "Extensions/Array+Extensions.swift",
        "Extensions/String+Extensions.swift",
        "FileResource+Generator.swift",
        "FontResource+Generator.swift",
        "Nib+Generator.swift",
        "PropertyListResource+Generator.swift",
        "ReuseIdentifier+Generator.swift",
        "Segue+Generator.swift",
        "Shared/AssetCatalogMergedNamespaces.swift",
        "Shared/LocaleReference+Generator.swift",
        "Shared/SwiftIdentifier.swift",
        "Shared/TypeReference+Generator.swift",
        "Storyboard+Generator.swift",
        "StringsTable+Generator.swift",
        "SwiftSyntax/Struct.swift",
        "SwiftSyntax/StructMembersBuilder.swift",
        "XcodeProject+Generator.swift"
      ],
      "target_dependencies" : [
        "RswiftResources"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RswiftGenerateResourcesCommand",
      "module_type" : "PluginTarget",
      "name" : "RswiftGenerateResourcesCommand",
      "path" : "Plugins/RswiftGenerateResourcesCommand",
      "plugin_capability" : {
        "intent" : {
          "description" : "Rswift generate resources",
          "type" : "custom",
          "verb" : "rswift-generate-resources"
        },
        "permissions" : [
          {
            "network_scope" : {
              "none" : {
              }
            },
            "reason" : "Rswift generates a file with statically typed, autocompleted resources",
            "type" : "writeToPackageDirectory"
          }
        ],
        "type" : "command"
      },
      "product_memberships" : [
        "RswiftGenerateResourcesCommand"
      ],
      "sources" : [
        "RswiftGenerateResourcesCommand.swift"
      ],
      "target_dependencies" : [
        "rswift"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "RswiftGeneratePublicResources",
      "module_type" : "PluginTarget",
      "name" : "RswiftGeneratePublicResources",
      "path" : "Plugins/RswiftGeneratePublicResources",
      "plugin_capability" : {
        "type" : "buildTool"
      },
      "product_memberships" : [
        "RswiftGeneratePublicResources"
      ],
      "sources" : [
        "RswiftGeneratePublicResources.swift"
      ],
      "target_dependencies" : [
        "rswift"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "RswiftGenerateInternalResources",
      "module_type" : "PluginTarget",
      "name" : "RswiftGenerateInternalResources",
      "path" : "Plugins/RswiftGenerateInternalResources",
      "plugin_capability" : {
        "type" : "buildTool"
      },
      "product_memberships" : [
        "RswiftGenerateInternalResources"
      ],
      "sources" : [
        "RswiftGenerateInternalResources.swift"
      ],
      "target_dependencies" : [
        "rswift"
      ],
      "type" : "plugin"
    }
  ],
  "tools_version" : "5.6"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.