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 AssociatedTypeRequirementsKit, reference 0.3.2 (2e4c49), with Swift 6.0 for Linux on 1 Nov 2024 12:41:32 UTC.

Swift 6 data race errors: 51

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/nerdsupremacist/AssociatedTypeRequirementsKit.git
Reference: 0.3.2
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/nerdsupremacist/AssociatedTypeRequirementsKit
 * tag               0.3.2      -> FETCH_HEAD
HEAD is now at 2e4c49c Fixing _test implementations not caling the correct function due to overloading
Cloned https://github.com/nerdsupremacist/AssociatedTypeRequirementsKit.git
Revision (git rev-parse @):
2e4c49c21ffb2135f1c99fbfcf2119c9d24f5e8c
SUCCESS checkout https://github.com/nerdsupremacist/AssociatedTypeRequirementsKit.git at 0.3.2
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/nerdsupremacist/AssociatedTypeRequirementsKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/7] Write sources
[5/7] Compiling CContext CContext.c
[6/7] Write swift-version-24593BA9C3E375BF.txt
[8/11] Compiling ProtocolType ModuleName.swift
/host/spi-builder-workspace/Sources/ProtocolType/ModuleName.swift:23:23: warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'ModuleName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ModuleName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ModuleName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
21 | extension ModuleName {
22 |
23 |     public static let swift: ModuleName = "Swift"
   |                       |- warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'ModuleName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'swift' with '@MainActor' 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 |     public static let swiftUI: ModuleName = "SwiftUI"
25 |
/host/spi-builder-workspace/Sources/ProtocolType/ModuleName.swift:24:23: warning: static property 'swiftUI' is not concurrency-safe because non-'Sendable' type 'ModuleName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ModuleName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ModuleName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
22 |
23 |     public static let swift: ModuleName = "Swift"
24 |     public static let swiftUI: ModuleName = "SwiftUI"
   |                       |- warning: static property 'swiftUI' is not concurrency-safe because non-'Sendable' type 'ModuleName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'swiftUI' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | }
[9/11] Compiling ProtocolType ProtocolType.swift
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:17:23: warning: static property 'binaryFloatingPoint' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
15 |
16 |     // Swift
17 |     public static let binaryFloatingPoint = ProtocolType(moduleName: .swift, protocolName: .binaryFloatingPoint)!
   |                       |- warning: static property 'binaryFloatingPoint' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'binaryFloatingPoint' with '@MainActor' 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 |     public static let encodable = ProtocolType(moduleName: .swift, protocolName: .encodable)!
19 |     public static let decodable = ProtocolType(moduleName: .swift, protocolName: .decodable)!
/host/spi-builder-workspace/Sources/ProtocolType/ModuleName.swift:23:23: warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'ModuleName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ModuleName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ModuleName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
21 | extension ModuleName {
22 |
23 |     public static let swift: ModuleName = "Swift"
   |                       |- warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'ModuleName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'swift' with '@MainActor' 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 |     public static let swiftUI: ModuleName = "SwiftUI"
25 |
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:23:23: warning: static property 'binaryFloatingPoint' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
21 |
22 |     // Swift
23 |     public static let binaryFloatingPoint: ProtocolName = "BinaryFloatingPoint"
   |                       |- warning: static property 'binaryFloatingPoint' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'binaryFloatingPoint' with '@MainActor' 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 |     public static let encodable: ProtocolName = "Encodable"
25 |     public static let decodable: ProtocolName = "Decodable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:18:23: warning: static property 'encodable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
16 |     // Swift
17 |     public static let binaryFloatingPoint = ProtocolType(moduleName: .swift, protocolName: .binaryFloatingPoint)!
18 |     public static let encodable = ProtocolType(moduleName: .swift, protocolName: .encodable)!
   |                       |- warning: static property 'encodable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'encodable' with '@MainActor' 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 |     public static let decodable = ProtocolType(moduleName: .swift, protocolName: .decodable)!
20 |     public static let randomNumberGenerator = ProtocolType(moduleName: .swift, protocolName: .randomNumberGenerator)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:24:23: warning: static property 'encodable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
22 |     // Swift
23 |     public static let binaryFloatingPoint: ProtocolName = "BinaryFloatingPoint"
24 |     public static let encodable: ProtocolName = "Encodable"
   |                       |- warning: static property 'encodable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'encodable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let decodable: ProtocolName = "Decodable"
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:19:23: warning: static property 'decodable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
17 |     public static let binaryFloatingPoint = ProtocolType(moduleName: .swift, protocolName: .binaryFloatingPoint)!
18 |     public static let encodable = ProtocolType(moduleName: .swift, protocolName: .encodable)!
19 |     public static let decodable = ProtocolType(moduleName: .swift, protocolName: .decodable)!
   |                       |- warning: static property 'decodable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decodable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let randomNumberGenerator = ProtocolType(moduleName: .swift, protocolName: .randomNumberGenerator)!
21 |     public static let hashable = ProtocolType(moduleName: .swift, protocolName: .hashable)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:25:23: warning: static property 'decodable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
23 |     public static let binaryFloatingPoint: ProtocolName = "BinaryFloatingPoint"
24 |     public static let encodable: ProtocolName = "Encodable"
25 |     public static let decodable: ProtocolName = "Decodable"
   |                       |- warning: static property 'decodable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decodable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
27 |     public static let hashable: ProtocolName = "Hashable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:20:23: warning: static property 'randomNumberGenerator' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
18 |     public static let encodable = ProtocolType(moduleName: .swift, protocolName: .encodable)!
19 |     public static let decodable = ProtocolType(moduleName: .swift, protocolName: .decodable)!
20 |     public static let randomNumberGenerator = ProtocolType(moduleName: .swift, protocolName: .randomNumberGenerator)!
   |                       |- warning: static property 'randomNumberGenerator' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomNumberGenerator' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |     public static let hashable = ProtocolType(moduleName: .swift, protocolName: .hashable)!
22 |     public static let numeric = ProtocolType(moduleName: .swift, protocolName: .numeric)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:26:23: warning: static property 'randomNumberGenerator' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
24 |     public static let encodable: ProtocolName = "Encodable"
25 |     public static let decodable: ProtocolName = "Decodable"
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
   |                       |- warning: static property 'randomNumberGenerator' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomNumberGenerator' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let hashable: ProtocolName = "Hashable"
28 |     public static let numeric: ProtocolName = "Numeric"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:21:23: warning: static property 'hashable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
19 |     public static let decodable = ProtocolType(moduleName: .swift, protocolName: .decodable)!
20 |     public static let randomNumberGenerator = ProtocolType(moduleName: .swift, protocolName: .randomNumberGenerator)!
21 |     public static let hashable = ProtocolType(moduleName: .swift, protocolName: .hashable)!
   |                       |- warning: static property 'hashable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hashable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |     public static let numeric = ProtocolType(moduleName: .swift, protocolName: .numeric)!
23 |     public static let bidirectionalCollection = ProtocolType(moduleName: .swift, protocolName: .bidirectionalCollection)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:27:23: warning: static property 'hashable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
25 |     public static let decodable: ProtocolName = "Decodable"
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
27 |     public static let hashable: ProtocolName = "Hashable"
   |                       |- warning: static property 'hashable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hashable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let numeric: ProtocolName = "Numeric"
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:22:23: warning: static property 'numeric' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
20 |     public static let randomNumberGenerator = ProtocolType(moduleName: .swift, protocolName: .randomNumberGenerator)!
21 |     public static let hashable = ProtocolType(moduleName: .swift, protocolName: .hashable)!
22 |     public static let numeric = ProtocolType(moduleName: .swift, protocolName: .numeric)!
   |                       |- warning: static property 'numeric' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'numeric' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let bidirectionalCollection = ProtocolType(moduleName: .swift, protocolName: .bidirectionalCollection)!
24 |     public static let randomAccessCollection = ProtocolType(moduleName: .swift, protocolName: .randomAccessCollection)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:28:23: warning: static property 'numeric' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
27 |     public static let hashable: ProtocolName = "Hashable"
28 |     public static let numeric: ProtocolName = "Numeric"
   |                       |- warning: static property 'numeric' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'numeric' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
30 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:23:23: warning: static property 'bidirectionalCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
21 |     public static let hashable = ProtocolType(moduleName: .swift, protocolName: .hashable)!
22 |     public static let numeric = ProtocolType(moduleName: .swift, protocolName: .numeric)!
23 |     public static let bidirectionalCollection = ProtocolType(moduleName: .swift, protocolName: .bidirectionalCollection)!
   |                       |- warning: static property 'bidirectionalCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bidirectionalCollection' with '@MainActor' 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 |     public static let randomAccessCollection = ProtocolType(moduleName: .swift, protocolName: .randomAccessCollection)!
25 |     public static let comparable = ProtocolType(moduleName: .swift, protocolName: .comparable)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:29:23: warning: static property 'bidirectionalCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
27 |     public static let hashable: ProtocolName = "Hashable"
28 |     public static let numeric: ProtocolName = "Numeric"
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
   |                       |- warning: static property 'bidirectionalCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bidirectionalCollection' with '@MainActor' 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 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
31 |     public static let comparable: ProtocolName = "Comparable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:24:23: warning: static property 'randomAccessCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
22 |     public static let numeric = ProtocolType(moduleName: .swift, protocolName: .numeric)!
23 |     public static let bidirectionalCollection = ProtocolType(moduleName: .swift, protocolName: .bidirectionalCollection)!
24 |     public static let randomAccessCollection = ProtocolType(moduleName: .swift, protocolName: .randomAccessCollection)!
   |                       |- warning: static property 'randomAccessCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomAccessCollection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let comparable = ProtocolType(moduleName: .swift, protocolName: .comparable)!
26 |     public static let collection = ProtocolType(moduleName: .swift, protocolName: .collection)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:30:23: warning: static property 'randomAccessCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
28 |     public static let numeric: ProtocolName = "Numeric"
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
30 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
   |                       |- warning: static property 'randomAccessCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomAccessCollection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let comparable: ProtocolName = "Comparable"
32 |     public static let collection: ProtocolName = "Collection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:25:23: warning: static property 'comparable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
23 |     public static let bidirectionalCollection = ProtocolType(moduleName: .swift, protocolName: .bidirectionalCollection)!
24 |     public static let randomAccessCollection = ProtocolType(moduleName: .swift, protocolName: .randomAccessCollection)!
25 |     public static let comparable = ProtocolType(moduleName: .swift, protocolName: .comparable)!
   |                       |- warning: static property 'comparable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'comparable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let collection = ProtocolType(moduleName: .swift, protocolName: .collection)!
27 |     public static let mutableCollection = ProtocolType(moduleName: .swift, protocolName: .mutableCollection)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:31:23: warning: static property 'comparable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
30 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
31 |     public static let comparable: ProtocolName = "Comparable"
   |                       |- warning: static property 'comparable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'comparable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let collection: ProtocolName = "Collection"
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:26:23: warning: static property 'collection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
24 |     public static let randomAccessCollection = ProtocolType(moduleName: .swift, protocolName: .randomAccessCollection)!
25 |     public static let comparable = ProtocolType(moduleName: .swift, protocolName: .comparable)!
26 |     public static let collection = ProtocolType(moduleName: .swift, protocolName: .collection)!
   |                       |- warning: static property 'collection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'collection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let mutableCollection = ProtocolType(moduleName: .swift, protocolName: .mutableCollection)!
28 |     public static let rangeReplaceableCollection = ProtocolType(moduleName: .swift, protocolName: .rangeReplaceableCollection)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:32:23: warning: static property 'collection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
30 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
31 |     public static let comparable: ProtocolName = "Comparable"
32 |     public static let collection: ProtocolName = "Collection"
   |                       |- warning: static property 'collection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'collection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:27:23: warning: static property 'mutableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
25 |     public static let comparable = ProtocolType(moduleName: .swift, protocolName: .comparable)!
26 |     public static let collection = ProtocolType(moduleName: .swift, protocolName: .collection)!
27 |     public static let mutableCollection = ProtocolType(moduleName: .swift, protocolName: .mutableCollection)!
   |                       |- warning: static property 'mutableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'mutableCollection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let rangeReplaceableCollection = ProtocolType(moduleName: .swift, protocolName: .rangeReplaceableCollection)!
29 |     public static let equatable = ProtocolType(moduleName: .swift, protocolName: .equatable)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:33:23: warning: static property 'mutableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
31 |     public static let comparable: ProtocolName = "Comparable"
32 |     public static let collection: ProtocolName = "Collection"
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
   |                       |- warning: static property 'mutableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'mutableCollection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
35 |     public static let equatable: ProtocolName = "Equatable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:28:23: warning: static property 'rangeReplaceableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
26 |     public static let collection = ProtocolType(moduleName: .swift, protocolName: .collection)!
27 |     public static let mutableCollection = ProtocolType(moduleName: .swift, protocolName: .mutableCollection)!
28 |     public static let rangeReplaceableCollection = ProtocolType(moduleName: .swift, protocolName: .rangeReplaceableCollection)!
   |                       |- warning: static property 'rangeReplaceableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rangeReplaceableCollection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let equatable = ProtocolType(moduleName: .swift, protocolName: .equatable)!
30 |     public static let sequence = ProtocolType(moduleName: .swift, protocolName: .sequence)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:34:23: warning: static property 'rangeReplaceableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
32 |     public static let collection: ProtocolName = "Collection"
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
   |                       |- warning: static property 'rangeReplaceableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rangeReplaceableCollection' with '@MainActor' 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 |     public static let equatable: ProtocolName = "Equatable"
36 |     public static let sequence: ProtocolName = "Sequence"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:29:23: warning: static property 'equatable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
27 |     public static let mutableCollection = ProtocolType(moduleName: .swift, protocolName: .mutableCollection)!
28 |     public static let rangeReplaceableCollection = ProtocolType(moduleName: .swift, protocolName: .rangeReplaceableCollection)!
29 |     public static let equatable = ProtocolType(moduleName: .swift, protocolName: .equatable)!
   |                       |- warning: static property 'equatable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'equatable' with '@MainActor' 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 |     public static let sequence = ProtocolType(moduleName: .swift, protocolName: .sequence)!
31 |     public static let iteratorProtocol = ProtocolType(moduleName: .swift, protocolName: .iteratorProtocol)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:35:23: warning: static property 'equatable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
35 |     public static let equatable: ProtocolName = "Equatable"
   |                       |- warning: static property 'equatable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'equatable' with '@MainActor' 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 |     public static let sequence: ProtocolName = "Sequence"
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:30:23: warning: static property 'sequence' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
28 |     public static let rangeReplaceableCollection = ProtocolType(moduleName: .swift, protocolName: .rangeReplaceableCollection)!
29 |     public static let equatable = ProtocolType(moduleName: .swift, protocolName: .equatable)!
30 |     public static let sequence = ProtocolType(moduleName: .swift, protocolName: .sequence)!
   |                       |- warning: static property 'sequence' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
31 |     public static let iteratorProtocol = ProtocolType(moduleName: .swift, protocolName: .iteratorProtocol)!
32 |     public static let unsignedInteger = ProtocolType(moduleName: .swift, protocolName: .unsignedInteger)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:36:23: warning: static property 'sequence' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
35 |     public static let equatable: ProtocolName = "Equatable"
36 |     public static let sequence: ProtocolName = "Sequence"
   |                       |- warning: static property 'sequence' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
38 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:31:23: warning: static property 'iteratorProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
29 |     public static let equatable = ProtocolType(moduleName: .swift, protocolName: .equatable)!
30 |     public static let sequence = ProtocolType(moduleName: .swift, protocolName: .sequence)!
31 |     public static let iteratorProtocol = ProtocolType(moduleName: .swift, protocolName: .iteratorProtocol)!
   |                       |- warning: static property 'iteratorProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'iteratorProtocol' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let unsignedInteger = ProtocolType(moduleName: .swift, protocolName: .unsignedInteger)!
33 |     public static let rangeExpression = ProtocolType(moduleName: .swift, protocolName: .rangeExpression)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:37:23: warning: static property 'iteratorProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
35 |     public static let equatable: ProtocolName = "Equatable"
36 |     public static let sequence: ProtocolName = "Sequence"
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
   |                       |- warning: static property 'iteratorProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'iteratorProtocol' with '@MainActor' 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 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
39 |     public static let rangeExpression: ProtocolName = "RangeExpression"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:32:23: warning: static property 'unsignedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
30 |     public static let sequence = ProtocolType(moduleName: .swift, protocolName: .sequence)!
31 |     public static let iteratorProtocol = ProtocolType(moduleName: .swift, protocolName: .iteratorProtocol)!
32 |     public static let unsignedInteger = ProtocolType(moduleName: .swift, protocolName: .unsignedInteger)!
   |                       |- warning: static property 'unsignedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unsignedInteger' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let rangeExpression = ProtocolType(moduleName: .swift, protocolName: .rangeExpression)!
34 |     public static let strideable = ProtocolType(moduleName: .swift, protocolName: .strideable)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:38:23: warning: static property 'unsignedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
36 |     public static let sequence: ProtocolName = "Sequence"
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
38 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
   |                       |- warning: static property 'unsignedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unsignedInteger' with '@MainActor' 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 |     public static let rangeExpression: ProtocolName = "RangeExpression"
40 |     public static let strideable: ProtocolName = "Strideable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:33:23: warning: static property 'rangeExpression' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
31 |     public static let iteratorProtocol = ProtocolType(moduleName: .swift, protocolName: .iteratorProtocol)!
32 |     public static let unsignedInteger = ProtocolType(moduleName: .swift, protocolName: .unsignedInteger)!
33 |     public static let rangeExpression = ProtocolType(moduleName: .swift, protocolName: .rangeExpression)!
   |                       |- warning: static property 'rangeExpression' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rangeExpression' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     public static let strideable = ProtocolType(moduleName: .swift, protocolName: .strideable)!
35 |     public static let rawRepresentable = ProtocolType(moduleName: .swift, protocolName: .rawRepresentable)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:39:23: warning: static property 'rangeExpression' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
38 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
39 |     public static let rangeExpression: ProtocolName = "RangeExpression"
   |                       |- warning: static property 'rangeExpression' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rangeExpression' with '@MainActor' 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 |     public static let strideable: ProtocolName = "Strideable"
41 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:34:23: warning: static property 'strideable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
32 |     public static let unsignedInteger = ProtocolType(moduleName: .swift, protocolName: .unsignedInteger)!
33 |     public static let rangeExpression = ProtocolType(moduleName: .swift, protocolName: .rangeExpression)!
34 |     public static let strideable = ProtocolType(moduleName: .swift, protocolName: .strideable)!
   |                       |- warning: static property 'strideable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'strideable' with '@MainActor' 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 |     public static let rawRepresentable = ProtocolType(moduleName: .swift, protocolName: .rawRepresentable)!
36 |     public static let stringProtocol = ProtocolType(moduleName: .swift, protocolName: .stringProtocol)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:40:23: warning: static property 'strideable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
38 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
39 |     public static let rangeExpression: ProtocolName = "RangeExpression"
40 |     public static let strideable: ProtocolName = "Strideable"
   |                       |- warning: static property 'strideable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'strideable' with '@MainActor' 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 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
42 |     public static let stringProtocol: ProtocolName = "StringProtocol"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:35:23: warning: static property 'rawRepresentable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
33 |     public static let rangeExpression = ProtocolType(moduleName: .swift, protocolName: .rangeExpression)!
34 |     public static let strideable = ProtocolType(moduleName: .swift, protocolName: .strideable)!
35 |     public static let rawRepresentable = ProtocolType(moduleName: .swift, protocolName: .rawRepresentable)!
   |                       |- warning: static property 'rawRepresentable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rawRepresentable' with '@MainActor' 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 |     public static let stringProtocol = ProtocolType(moduleName: .swift, protocolName: .stringProtocol)!
37 |     public static let signedInteger = ProtocolType(moduleName: .swift, protocolName: .signedInteger)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:41:23: warning: static property 'rawRepresentable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
39 |     public static let rangeExpression: ProtocolName = "RangeExpression"
40 |     public static let strideable: ProtocolName = "Strideable"
41 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
   |                       |- warning: static property 'rawRepresentable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rawRepresentable' with '@MainActor' 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 |     public static let stringProtocol: ProtocolName = "StringProtocol"
43 |     public static let signedInteger: ProtocolName = "SignedInteger"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:36:23: warning: static property 'stringProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
34 |     public static let strideable = ProtocolType(moduleName: .swift, protocolName: .strideable)!
35 |     public static let rawRepresentable = ProtocolType(moduleName: .swift, protocolName: .rawRepresentable)!
36 |     public static let stringProtocol = ProtocolType(moduleName: .swift, protocolName: .stringProtocol)!
   |                       |- warning: static property 'stringProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'stringProtocol' with '@MainActor' 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 |     public static let signedInteger = ProtocolType(moduleName: .swift, protocolName: .signedInteger)!
38 |     public static let binaryInteger = ProtocolType(moduleName: .swift, protocolName: .binaryInteger)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:42:23: warning: static property 'stringProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
40 |     public static let strideable: ProtocolName = "Strideable"
41 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
42 |     public static let stringProtocol: ProtocolName = "StringProtocol"
   |                       |- warning: static property 'stringProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'stringProtocol' with '@MainActor' 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 |     public static let signedInteger: ProtocolName = "SignedInteger"
44 |     public static let binaryInteger: ProtocolName = "BinaryInteger"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:37:23: warning: static property 'signedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
35 |     public static let rawRepresentable = ProtocolType(moduleName: .swift, protocolName: .rawRepresentable)!
36 |     public static let stringProtocol = ProtocolType(moduleName: .swift, protocolName: .stringProtocol)!
37 |     public static let signedInteger = ProtocolType(moduleName: .swift, protocolName: .signedInteger)!
   |                       |- warning: static property 'signedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'signedInteger' with '@MainActor' 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 |     public static let binaryInteger = ProtocolType(moduleName: .swift, protocolName: .binaryInteger)!
39 |     public static let identifiable = ProtocolType(moduleName: .swift, protocolName: .identifiable)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:43:23: warning: static property 'signedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
41 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
42 |     public static let stringProtocol: ProtocolName = "StringProtocol"
43 |     public static let signedInteger: ProtocolName = "SignedInteger"
   |                       |- warning: static property 'signedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'signedInteger' with '@MainActor' 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 |     public static let binaryInteger: ProtocolName = "BinaryInteger"
45 |     public static let identifiable: ProtocolName = "Identifiable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:38:23: warning: static property 'binaryInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
36 |     public static let stringProtocol = ProtocolType(moduleName: .swift, protocolName: .stringProtocol)!
37 |     public static let signedInteger = ProtocolType(moduleName: .swift, protocolName: .signedInteger)!
38 |     public static let binaryInteger = ProtocolType(moduleName: .swift, protocolName: .binaryInteger)!
   |                       |- warning: static property 'binaryInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'binaryInteger' with '@MainActor' 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 |     public static let identifiable = ProtocolType(moduleName: .swift, protocolName: .identifiable)!
40 |
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:44:23: warning: static property 'binaryInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
42 |     public static let stringProtocol: ProtocolName = "StringProtocol"
43 |     public static let signedInteger: ProtocolName = "SignedInteger"
44 |     public static let binaryInteger: ProtocolName = "BinaryInteger"
   |                       |- warning: static property 'binaryInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'binaryInteger' with '@MainActor' 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 |     public static let identifiable: ProtocolName = "Identifiable"
46 |
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:39:23: warning: static property 'identifiable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
37 |     public static let signedInteger = ProtocolType(moduleName: .swift, protocolName: .signedInteger)!
38 |     public static let binaryInteger = ProtocolType(moduleName: .swift, protocolName: .binaryInteger)!
39 |     public static let identifiable = ProtocolType(moduleName: .swift, protocolName: .identifiable)!
   |                       |- warning: static property 'identifiable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'identifiable' with '@MainActor' 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 |
41 |     // SwiftUI
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:45:23: warning: static property 'identifiable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
43 |     public static let signedInteger: ProtocolName = "SignedInteger"
44 |     public static let binaryInteger: ProtocolName = "BinaryInteger"
45 |     public static let identifiable: ProtocolName = "Identifiable"
   |                       |- warning: static property 'identifiable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'identifiable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 |     // SwiftUI
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:42:23: warning: static property 'view' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
40 |
41 |     // SwiftUI
42 |     public static let view = ProtocolType(moduleName: .swiftUI, protocolName: .view)!
   |                       |- warning: static property 'view' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'view' with '@MainActor' 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 |
44 | }
/host/spi-builder-workspace/Sources/ProtocolType/ModuleName.swift:24:23: warning: static property 'swiftUI' is not concurrency-safe because non-'Sendable' type 'ModuleName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ModuleName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ModuleName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
22 |
23 |     public static let swift: ModuleName = "Swift"
24 |     public static let swiftUI: ModuleName = "SwiftUI"
   |                       |- warning: static property 'swiftUI' is not concurrency-safe because non-'Sendable' type 'ModuleName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'swiftUI' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | }
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:48:23: warning: static property 'view' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
46 |
47 |     // SwiftUI
48 |     public static let view: ProtocolName = "View"
   |                       |- warning: static property 'view' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'view' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | }
50 |
[10/11] Emitting module ProtocolType
/host/spi-builder-workspace/Sources/ProtocolType/ModuleName.swift:23:23: warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'ModuleName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ModuleName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ModuleName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
21 | extension ModuleName {
22 |
23 |     public static let swift: ModuleName = "Swift"
   |                       |- warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'ModuleName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'swift' with '@MainActor' 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 |     public static let swiftUI: ModuleName = "SwiftUI"
25 |
/host/spi-builder-workspace/Sources/ProtocolType/ModuleName.swift:24:23: warning: static property 'swiftUI' is not concurrency-safe because non-'Sendable' type 'ModuleName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ModuleName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ModuleName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
22 |
23 |     public static let swift: ModuleName = "Swift"
24 |     public static let swiftUI: ModuleName = "SwiftUI"
   |                       |- warning: static property 'swiftUI' is not concurrency-safe because non-'Sendable' type 'ModuleName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'swiftUI' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | }
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:23:23: warning: static property 'binaryFloatingPoint' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
21 |
22 |     // Swift
23 |     public static let binaryFloatingPoint: ProtocolName = "BinaryFloatingPoint"
   |                       |- warning: static property 'binaryFloatingPoint' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'binaryFloatingPoint' with '@MainActor' 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 |     public static let encodable: ProtocolName = "Encodable"
25 |     public static let decodable: ProtocolName = "Decodable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:24:23: warning: static property 'encodable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
22 |     // Swift
23 |     public static let binaryFloatingPoint: ProtocolName = "BinaryFloatingPoint"
24 |     public static let encodable: ProtocolName = "Encodable"
   |                       |- warning: static property 'encodable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'encodable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let decodable: ProtocolName = "Decodable"
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:25:23: warning: static property 'decodable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
23 |     public static let binaryFloatingPoint: ProtocolName = "BinaryFloatingPoint"
24 |     public static let encodable: ProtocolName = "Encodable"
25 |     public static let decodable: ProtocolName = "Decodable"
   |                       |- warning: static property 'decodable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decodable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
27 |     public static let hashable: ProtocolName = "Hashable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:26:23: warning: static property 'randomNumberGenerator' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
24 |     public static let encodable: ProtocolName = "Encodable"
25 |     public static let decodable: ProtocolName = "Decodable"
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
   |                       |- warning: static property 'randomNumberGenerator' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomNumberGenerator' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let hashable: ProtocolName = "Hashable"
28 |     public static let numeric: ProtocolName = "Numeric"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:27:23: warning: static property 'hashable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
25 |     public static let decodable: ProtocolName = "Decodable"
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
27 |     public static let hashable: ProtocolName = "Hashable"
   |                       |- warning: static property 'hashable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hashable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let numeric: ProtocolName = "Numeric"
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:28:23: warning: static property 'numeric' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
27 |     public static let hashable: ProtocolName = "Hashable"
28 |     public static let numeric: ProtocolName = "Numeric"
   |                       |- warning: static property 'numeric' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'numeric' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
30 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:29:23: warning: static property 'bidirectionalCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
27 |     public static let hashable: ProtocolName = "Hashable"
28 |     public static let numeric: ProtocolName = "Numeric"
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
   |                       |- warning: static property 'bidirectionalCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bidirectionalCollection' with '@MainActor' 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 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
31 |     public static let comparable: ProtocolName = "Comparable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:30:23: warning: static property 'randomAccessCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
28 |     public static let numeric: ProtocolName = "Numeric"
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
30 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
   |                       |- warning: static property 'randomAccessCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomAccessCollection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let comparable: ProtocolName = "Comparable"
32 |     public static let collection: ProtocolName = "Collection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:31:23: warning: static property 'comparable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
30 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
31 |     public static let comparable: ProtocolName = "Comparable"
   |                       |- warning: static property 'comparable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'comparable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let collection: ProtocolName = "Collection"
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:32:23: warning: static property 'collection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
30 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
31 |     public static let comparable: ProtocolName = "Comparable"
32 |     public static let collection: ProtocolName = "Collection"
   |                       |- warning: static property 'collection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'collection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:33:23: warning: static property 'mutableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
31 |     public static let comparable: ProtocolName = "Comparable"
32 |     public static let collection: ProtocolName = "Collection"
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
   |                       |- warning: static property 'mutableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'mutableCollection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
35 |     public static let equatable: ProtocolName = "Equatable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:34:23: warning: static property 'rangeReplaceableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
32 |     public static let collection: ProtocolName = "Collection"
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
   |                       |- warning: static property 'rangeReplaceableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rangeReplaceableCollection' with '@MainActor' 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 |     public static let equatable: ProtocolName = "Equatable"
36 |     public static let sequence: ProtocolName = "Sequence"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:35:23: warning: static property 'equatable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
35 |     public static let equatable: ProtocolName = "Equatable"
   |                       |- warning: static property 'equatable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'equatable' with '@MainActor' 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 |     public static let sequence: ProtocolName = "Sequence"
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:36:23: warning: static property 'sequence' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
35 |     public static let equatable: ProtocolName = "Equatable"
36 |     public static let sequence: ProtocolName = "Sequence"
   |                       |- warning: static property 'sequence' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
38 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:37:23: warning: static property 'iteratorProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
35 |     public static let equatable: ProtocolName = "Equatable"
36 |     public static let sequence: ProtocolName = "Sequence"
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
   |                       |- warning: static property 'iteratorProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'iteratorProtocol' with '@MainActor' 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 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
39 |     public static let rangeExpression: ProtocolName = "RangeExpression"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:38:23: warning: static property 'unsignedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
36 |     public static let sequence: ProtocolName = "Sequence"
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
38 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
   |                       |- warning: static property 'unsignedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unsignedInteger' with '@MainActor' 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 |     public static let rangeExpression: ProtocolName = "RangeExpression"
40 |     public static let strideable: ProtocolName = "Strideable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:39:23: warning: static property 'rangeExpression' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
38 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
39 |     public static let rangeExpression: ProtocolName = "RangeExpression"
   |                       |- warning: static property 'rangeExpression' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rangeExpression' with '@MainActor' 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 |     public static let strideable: ProtocolName = "Strideable"
41 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:40:23: warning: static property 'strideable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
38 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
39 |     public static let rangeExpression: ProtocolName = "RangeExpression"
40 |     public static let strideable: ProtocolName = "Strideable"
   |                       |- warning: static property 'strideable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'strideable' with '@MainActor' 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 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
42 |     public static let stringProtocol: ProtocolName = "StringProtocol"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:41:23: warning: static property 'rawRepresentable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
39 |     public static let rangeExpression: ProtocolName = "RangeExpression"
40 |     public static let strideable: ProtocolName = "Strideable"
41 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
   |                       |- warning: static property 'rawRepresentable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rawRepresentable' with '@MainActor' 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 |     public static let stringProtocol: ProtocolName = "StringProtocol"
43 |     public static let signedInteger: ProtocolName = "SignedInteger"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:42:23: warning: static property 'stringProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
40 |     public static let strideable: ProtocolName = "Strideable"
41 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
42 |     public static let stringProtocol: ProtocolName = "StringProtocol"
   |                       |- warning: static property 'stringProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'stringProtocol' with '@MainActor' 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 |     public static let signedInteger: ProtocolName = "SignedInteger"
44 |     public static let binaryInteger: ProtocolName = "BinaryInteger"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:43:23: warning: static property 'signedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
41 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
42 |     public static let stringProtocol: ProtocolName = "StringProtocol"
43 |     public static let signedInteger: ProtocolName = "SignedInteger"
   |                       |- warning: static property 'signedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'signedInteger' with '@MainActor' 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 |     public static let binaryInteger: ProtocolName = "BinaryInteger"
45 |     public static let identifiable: ProtocolName = "Identifiable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:44:23: warning: static property 'binaryInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
42 |     public static let stringProtocol: ProtocolName = "StringProtocol"
43 |     public static let signedInteger: ProtocolName = "SignedInteger"
44 |     public static let binaryInteger: ProtocolName = "BinaryInteger"
   |                       |- warning: static property 'binaryInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'binaryInteger' with '@MainActor' 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 |     public static let identifiable: ProtocolName = "Identifiable"
46 |
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:45:23: warning: static property 'identifiable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
43 |     public static let signedInteger: ProtocolName = "SignedInteger"
44 |     public static let binaryInteger: ProtocolName = "BinaryInteger"
45 |     public static let identifiable: ProtocolName = "Identifiable"
   |                       |- warning: static property 'identifiable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'identifiable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 |     // SwiftUI
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:48:23: warning: static property 'view' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
46 |
47 |     // SwiftUI
48 |     public static let view: ProtocolName = "View"
   |                       |- warning: static property 'view' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'view' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | }
50 |
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:17:23: warning: static property 'binaryFloatingPoint' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
15 |
16 |     // Swift
17 |     public static let binaryFloatingPoint = ProtocolType(moduleName: .swift, protocolName: .binaryFloatingPoint)!
   |                       |- warning: static property 'binaryFloatingPoint' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'binaryFloatingPoint' with '@MainActor' 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 |     public static let encodable = ProtocolType(moduleName: .swift, protocolName: .encodable)!
19 |     public static let decodable = ProtocolType(moduleName: .swift, protocolName: .decodable)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:18:23: warning: static property 'encodable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
16 |     // Swift
17 |     public static let binaryFloatingPoint = ProtocolType(moduleName: .swift, protocolName: .binaryFloatingPoint)!
18 |     public static let encodable = ProtocolType(moduleName: .swift, protocolName: .encodable)!
   |                       |- warning: static property 'encodable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'encodable' with '@MainActor' 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 |     public static let decodable = ProtocolType(moduleName: .swift, protocolName: .decodable)!
20 |     public static let randomNumberGenerator = ProtocolType(moduleName: .swift, protocolName: .randomNumberGenerator)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:19:23: warning: static property 'decodable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
17 |     public static let binaryFloatingPoint = ProtocolType(moduleName: .swift, protocolName: .binaryFloatingPoint)!
18 |     public static let encodable = ProtocolType(moduleName: .swift, protocolName: .encodable)!
19 |     public static let decodable = ProtocolType(moduleName: .swift, protocolName: .decodable)!
   |                       |- warning: static property 'decodable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decodable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let randomNumberGenerator = ProtocolType(moduleName: .swift, protocolName: .randomNumberGenerator)!
21 |     public static let hashable = ProtocolType(moduleName: .swift, protocolName: .hashable)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:20:23: warning: static property 'randomNumberGenerator' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
18 |     public static let encodable = ProtocolType(moduleName: .swift, protocolName: .encodable)!
19 |     public static let decodable = ProtocolType(moduleName: .swift, protocolName: .decodable)!
20 |     public static let randomNumberGenerator = ProtocolType(moduleName: .swift, protocolName: .randomNumberGenerator)!
   |                       |- warning: static property 'randomNumberGenerator' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomNumberGenerator' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |     public static let hashable = ProtocolType(moduleName: .swift, protocolName: .hashable)!
22 |     public static let numeric = ProtocolType(moduleName: .swift, protocolName: .numeric)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:21:23: warning: static property 'hashable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
19 |     public static let decodable = ProtocolType(moduleName: .swift, protocolName: .decodable)!
20 |     public static let randomNumberGenerator = ProtocolType(moduleName: .swift, protocolName: .randomNumberGenerator)!
21 |     public static let hashable = ProtocolType(moduleName: .swift, protocolName: .hashable)!
   |                       |- warning: static property 'hashable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hashable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |     public static let numeric = ProtocolType(moduleName: .swift, protocolName: .numeric)!
23 |     public static let bidirectionalCollection = ProtocolType(moduleName: .swift, protocolName: .bidirectionalCollection)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:22:23: warning: static property 'numeric' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
20 |     public static let randomNumberGenerator = ProtocolType(moduleName: .swift, protocolName: .randomNumberGenerator)!
21 |     public static let hashable = ProtocolType(moduleName: .swift, protocolName: .hashable)!
22 |     public static let numeric = ProtocolType(moduleName: .swift, protocolName: .numeric)!
   |                       |- warning: static property 'numeric' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'numeric' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let bidirectionalCollection = ProtocolType(moduleName: .swift, protocolName: .bidirectionalCollection)!
24 |     public static let randomAccessCollection = ProtocolType(moduleName: .swift, protocolName: .randomAccessCollection)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:23:23: warning: static property 'bidirectionalCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
21 |     public static let hashable = ProtocolType(moduleName: .swift, protocolName: .hashable)!
22 |     public static let numeric = ProtocolType(moduleName: .swift, protocolName: .numeric)!
23 |     public static let bidirectionalCollection = ProtocolType(moduleName: .swift, protocolName: .bidirectionalCollection)!
   |                       |- warning: static property 'bidirectionalCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bidirectionalCollection' with '@MainActor' 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 |     public static let randomAccessCollection = ProtocolType(moduleName: .swift, protocolName: .randomAccessCollection)!
25 |     public static let comparable = ProtocolType(moduleName: .swift, protocolName: .comparable)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:24:23: warning: static property 'randomAccessCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
22 |     public static let numeric = ProtocolType(moduleName: .swift, protocolName: .numeric)!
23 |     public static let bidirectionalCollection = ProtocolType(moduleName: .swift, protocolName: .bidirectionalCollection)!
24 |     public static let randomAccessCollection = ProtocolType(moduleName: .swift, protocolName: .randomAccessCollection)!
   |                       |- warning: static property 'randomAccessCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomAccessCollection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let comparable = ProtocolType(moduleName: .swift, protocolName: .comparable)!
26 |     public static let collection = ProtocolType(moduleName: .swift, protocolName: .collection)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:25:23: warning: static property 'comparable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
23 |     public static let bidirectionalCollection = ProtocolType(moduleName: .swift, protocolName: .bidirectionalCollection)!
24 |     public static let randomAccessCollection = ProtocolType(moduleName: .swift, protocolName: .randomAccessCollection)!
25 |     public static let comparable = ProtocolType(moduleName: .swift, protocolName: .comparable)!
   |                       |- warning: static property 'comparable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'comparable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let collection = ProtocolType(moduleName: .swift, protocolName: .collection)!
27 |     public static let mutableCollection = ProtocolType(moduleName: .swift, protocolName: .mutableCollection)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:26:23: warning: static property 'collection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
24 |     public static let randomAccessCollection = ProtocolType(moduleName: .swift, protocolName: .randomAccessCollection)!
25 |     public static let comparable = ProtocolType(moduleName: .swift, protocolName: .comparable)!
26 |     public static let collection = ProtocolType(moduleName: .swift, protocolName: .collection)!
   |                       |- warning: static property 'collection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'collection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let mutableCollection = ProtocolType(moduleName: .swift, protocolName: .mutableCollection)!
28 |     public static let rangeReplaceableCollection = ProtocolType(moduleName: .swift, protocolName: .rangeReplaceableCollection)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:27:23: warning: static property 'mutableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
25 |     public static let comparable = ProtocolType(moduleName: .swift, protocolName: .comparable)!
26 |     public static let collection = ProtocolType(moduleName: .swift, protocolName: .collection)!
27 |     public static let mutableCollection = ProtocolType(moduleName: .swift, protocolName: .mutableCollection)!
   |                       |- warning: static property 'mutableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'mutableCollection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let rangeReplaceableCollection = ProtocolType(moduleName: .swift, protocolName: .rangeReplaceableCollection)!
29 |     public static let equatable = ProtocolType(moduleName: .swift, protocolName: .equatable)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:28:23: warning: static property 'rangeReplaceableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
26 |     public static let collection = ProtocolType(moduleName: .swift, protocolName: .collection)!
27 |     public static let mutableCollection = ProtocolType(moduleName: .swift, protocolName: .mutableCollection)!
28 |     public static let rangeReplaceableCollection = ProtocolType(moduleName: .swift, protocolName: .rangeReplaceableCollection)!
   |                       |- warning: static property 'rangeReplaceableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rangeReplaceableCollection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let equatable = ProtocolType(moduleName: .swift, protocolName: .equatable)!
30 |     public static let sequence = ProtocolType(moduleName: .swift, protocolName: .sequence)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:29:23: warning: static property 'equatable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
27 |     public static let mutableCollection = ProtocolType(moduleName: .swift, protocolName: .mutableCollection)!
28 |     public static let rangeReplaceableCollection = ProtocolType(moduleName: .swift, protocolName: .rangeReplaceableCollection)!
29 |     public static let equatable = ProtocolType(moduleName: .swift, protocolName: .equatable)!
   |                       |- warning: static property 'equatable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'equatable' with '@MainActor' 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 |     public static let sequence = ProtocolType(moduleName: .swift, protocolName: .sequence)!
31 |     public static let iteratorProtocol = ProtocolType(moduleName: .swift, protocolName: .iteratorProtocol)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:30:23: warning: static property 'sequence' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
28 |     public static let rangeReplaceableCollection = ProtocolType(moduleName: .swift, protocolName: .rangeReplaceableCollection)!
29 |     public static let equatable = ProtocolType(moduleName: .swift, protocolName: .equatable)!
30 |     public static let sequence = ProtocolType(moduleName: .swift, protocolName: .sequence)!
   |                       |- warning: static property 'sequence' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
31 |     public static let iteratorProtocol = ProtocolType(moduleName: .swift, protocolName: .iteratorProtocol)!
32 |     public static let unsignedInteger = ProtocolType(moduleName: .swift, protocolName: .unsignedInteger)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:31:23: warning: static property 'iteratorProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
29 |     public static let equatable = ProtocolType(moduleName: .swift, protocolName: .equatable)!
30 |     public static let sequence = ProtocolType(moduleName: .swift, protocolName: .sequence)!
31 |     public static let iteratorProtocol = ProtocolType(moduleName: .swift, protocolName: .iteratorProtocol)!
   |                       |- warning: static property 'iteratorProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'iteratorProtocol' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let unsignedInteger = ProtocolType(moduleName: .swift, protocolName: .unsignedInteger)!
33 |     public static let rangeExpression = ProtocolType(moduleName: .swift, protocolName: .rangeExpression)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:32:23: warning: static property 'unsignedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
30 |     public static let sequence = ProtocolType(moduleName: .swift, protocolName: .sequence)!
31 |     public static let iteratorProtocol = ProtocolType(moduleName: .swift, protocolName: .iteratorProtocol)!
32 |     public static let unsignedInteger = ProtocolType(moduleName: .swift, protocolName: .unsignedInteger)!
   |                       |- warning: static property 'unsignedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unsignedInteger' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let rangeExpression = ProtocolType(moduleName: .swift, protocolName: .rangeExpression)!
34 |     public static let strideable = ProtocolType(moduleName: .swift, protocolName: .strideable)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:33:23: warning: static property 'rangeExpression' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
31 |     public static let iteratorProtocol = ProtocolType(moduleName: .swift, protocolName: .iteratorProtocol)!
32 |     public static let unsignedInteger = ProtocolType(moduleName: .swift, protocolName: .unsignedInteger)!
33 |     public static let rangeExpression = ProtocolType(moduleName: .swift, protocolName: .rangeExpression)!
   |                       |- warning: static property 'rangeExpression' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rangeExpression' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     public static let strideable = ProtocolType(moduleName: .swift, protocolName: .strideable)!
35 |     public static let rawRepresentable = ProtocolType(moduleName: .swift, protocolName: .rawRepresentable)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:34:23: warning: static property 'strideable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
32 |     public static let unsignedInteger = ProtocolType(moduleName: .swift, protocolName: .unsignedInteger)!
33 |     public static let rangeExpression = ProtocolType(moduleName: .swift, protocolName: .rangeExpression)!
34 |     public static let strideable = ProtocolType(moduleName: .swift, protocolName: .strideable)!
   |                       |- warning: static property 'strideable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'strideable' with '@MainActor' 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 |     public static let rawRepresentable = ProtocolType(moduleName: .swift, protocolName: .rawRepresentable)!
36 |     public static let stringProtocol = ProtocolType(moduleName: .swift, protocolName: .stringProtocol)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:35:23: warning: static property 'rawRepresentable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
33 |     public static let rangeExpression = ProtocolType(moduleName: .swift, protocolName: .rangeExpression)!
34 |     public static let strideable = ProtocolType(moduleName: .swift, protocolName: .strideable)!
35 |     public static let rawRepresentable = ProtocolType(moduleName: .swift, protocolName: .rawRepresentable)!
   |                       |- warning: static property 'rawRepresentable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rawRepresentable' with '@MainActor' 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 |     public static let stringProtocol = ProtocolType(moduleName: .swift, protocolName: .stringProtocol)!
37 |     public static let signedInteger = ProtocolType(moduleName: .swift, protocolName: .signedInteger)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:36:23: warning: static property 'stringProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
34 |     public static let strideable = ProtocolType(moduleName: .swift, protocolName: .strideable)!
35 |     public static let rawRepresentable = ProtocolType(moduleName: .swift, protocolName: .rawRepresentable)!
36 |     public static let stringProtocol = ProtocolType(moduleName: .swift, protocolName: .stringProtocol)!
   |                       |- warning: static property 'stringProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'stringProtocol' with '@MainActor' 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 |     public static let signedInteger = ProtocolType(moduleName: .swift, protocolName: .signedInteger)!
38 |     public static let binaryInteger = ProtocolType(moduleName: .swift, protocolName: .binaryInteger)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:37:23: warning: static property 'signedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
35 |     public static let rawRepresentable = ProtocolType(moduleName: .swift, protocolName: .rawRepresentable)!
36 |     public static let stringProtocol = ProtocolType(moduleName: .swift, protocolName: .stringProtocol)!
37 |     public static let signedInteger = ProtocolType(moduleName: .swift, protocolName: .signedInteger)!
   |                       |- warning: static property 'signedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'signedInteger' with '@MainActor' 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 |     public static let binaryInteger = ProtocolType(moduleName: .swift, protocolName: .binaryInteger)!
39 |     public static let identifiable = ProtocolType(moduleName: .swift, protocolName: .identifiable)!
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:38:23: warning: static property 'binaryInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
36 |     public static let stringProtocol = ProtocolType(moduleName: .swift, protocolName: .stringProtocol)!
37 |     public static let signedInteger = ProtocolType(moduleName: .swift, protocolName: .signedInteger)!
38 |     public static let binaryInteger = ProtocolType(moduleName: .swift, protocolName: .binaryInteger)!
   |                       |- warning: static property 'binaryInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'binaryInteger' with '@MainActor' 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 |     public static let identifiable = ProtocolType(moduleName: .swift, protocolName: .identifiable)!
40 |
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:39:23: warning: static property 'identifiable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
37 |     public static let signedInteger = ProtocolType(moduleName: .swift, protocolName: .signedInteger)!
38 |     public static let binaryInteger = ProtocolType(moduleName: .swift, protocolName: .binaryInteger)!
39 |     public static let identifiable = ProtocolType(moduleName: .swift, protocolName: .identifiable)!
   |                       |- warning: static property 'identifiable' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'identifiable' with '@MainActor' 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 |
41 |     // SwiftUI
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolType.swift:42:23: warning: static property 'view' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolType {
   |               `- note: consider making struct 'ProtocolType' conform to the 'Sendable' protocol
 5 |     public let type: Any.Type
 6 |
   :
40 |
41 |     // SwiftUI
42 |     public static let view = ProtocolType(moduleName: .swiftUI, protocolName: .view)!
   |                       |- warning: static property 'view' is not concurrency-safe because non-'Sendable' type 'ProtocolType' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'view' with '@MainActor' 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 |
44 | }
[11/11] Compiling ProtocolType ProtocolName.swift
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:23:23: warning: static property 'binaryFloatingPoint' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
21 |
22 |     // Swift
23 |     public static let binaryFloatingPoint: ProtocolName = "BinaryFloatingPoint"
   |                       |- warning: static property 'binaryFloatingPoint' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'binaryFloatingPoint' with '@MainActor' 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 |     public static let encodable: ProtocolName = "Encodable"
25 |     public static let decodable: ProtocolName = "Decodable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:24:23: warning: static property 'encodable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
22 |     // Swift
23 |     public static let binaryFloatingPoint: ProtocolName = "BinaryFloatingPoint"
24 |     public static let encodable: ProtocolName = "Encodable"
   |                       |- warning: static property 'encodable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'encodable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let decodable: ProtocolName = "Decodable"
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:25:23: warning: static property 'decodable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
23 |     public static let binaryFloatingPoint: ProtocolName = "BinaryFloatingPoint"
24 |     public static let encodable: ProtocolName = "Encodable"
25 |     public static let decodable: ProtocolName = "Decodable"
   |                       |- warning: static property 'decodable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decodable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
27 |     public static let hashable: ProtocolName = "Hashable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:26:23: warning: static property 'randomNumberGenerator' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
24 |     public static let encodable: ProtocolName = "Encodable"
25 |     public static let decodable: ProtocolName = "Decodable"
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
   |                       |- warning: static property 'randomNumberGenerator' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomNumberGenerator' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let hashable: ProtocolName = "Hashable"
28 |     public static let numeric: ProtocolName = "Numeric"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:27:23: warning: static property 'hashable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
25 |     public static let decodable: ProtocolName = "Decodable"
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
27 |     public static let hashable: ProtocolName = "Hashable"
   |                       |- warning: static property 'hashable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hashable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let numeric: ProtocolName = "Numeric"
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:28:23: warning: static property 'numeric' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
26 |     public static let randomNumberGenerator: ProtocolName = "RandomNumberGenerator"
27 |     public static let hashable: ProtocolName = "Hashable"
28 |     public static let numeric: ProtocolName = "Numeric"
   |                       |- warning: static property 'numeric' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'numeric' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
30 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:29:23: warning: static property 'bidirectionalCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
27 |     public static let hashable: ProtocolName = "Hashable"
28 |     public static let numeric: ProtocolName = "Numeric"
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
   |                       |- warning: static property 'bidirectionalCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bidirectionalCollection' with '@MainActor' 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 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
31 |     public static let comparable: ProtocolName = "Comparable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:30:23: warning: static property 'randomAccessCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
28 |     public static let numeric: ProtocolName = "Numeric"
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
30 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
   |                       |- warning: static property 'randomAccessCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomAccessCollection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let comparable: ProtocolName = "Comparable"
32 |     public static let collection: ProtocolName = "Collection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:31:23: warning: static property 'comparable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
29 |     public static let bidirectionalCollection: ProtocolName = "BidirectionalCollection"
30 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
31 |     public static let comparable: ProtocolName = "Comparable"
   |                       |- warning: static property 'comparable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'comparable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let collection: ProtocolName = "Collection"
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:32:23: warning: static property 'collection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
30 |     public static let randomAccessCollection: ProtocolName = "RandomAccessCollection"
31 |     public static let comparable: ProtocolName = "Comparable"
32 |     public static let collection: ProtocolName = "Collection"
   |                       |- warning: static property 'collection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'collection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:33:23: warning: static property 'mutableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
31 |     public static let comparable: ProtocolName = "Comparable"
32 |     public static let collection: ProtocolName = "Collection"
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
   |                       |- warning: static property 'mutableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'mutableCollection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
35 |     public static let equatable: ProtocolName = "Equatable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:34:23: warning: static property 'rangeReplaceableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
32 |     public static let collection: ProtocolName = "Collection"
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
   |                       |- warning: static property 'rangeReplaceableCollection' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rangeReplaceableCollection' with '@MainActor' 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 |     public static let equatable: ProtocolName = "Equatable"
36 |     public static let sequence: ProtocolName = "Sequence"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:35:23: warning: static property 'equatable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
33 |     public static let mutableCollection: ProtocolName = "MutableCollection"
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
35 |     public static let equatable: ProtocolName = "Equatable"
   |                       |- warning: static property 'equatable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'equatable' with '@MainActor' 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 |     public static let sequence: ProtocolName = "Sequence"
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:36:23: warning: static property 'sequence' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
34 |     public static let rangeReplaceableCollection: ProtocolName = "RangeReplaceableCollection"
35 |     public static let equatable: ProtocolName = "Equatable"
36 |     public static let sequence: ProtocolName = "Sequence"
   |                       |- warning: static property 'sequence' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
38 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:37:23: warning: static property 'iteratorProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
35 |     public static let equatable: ProtocolName = "Equatable"
36 |     public static let sequence: ProtocolName = "Sequence"
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
   |                       |- warning: static property 'iteratorProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'iteratorProtocol' with '@MainActor' 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 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
39 |     public static let rangeExpression: ProtocolName = "RangeExpression"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:38:23: warning: static property 'unsignedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
36 |     public static let sequence: ProtocolName = "Sequence"
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
38 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
   |                       |- warning: static property 'unsignedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unsignedInteger' with '@MainActor' 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 |     public static let rangeExpression: ProtocolName = "RangeExpression"
40 |     public static let strideable: ProtocolName = "Strideable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:39:23: warning: static property 'rangeExpression' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
37 |     public static let iteratorProtocol: ProtocolName = "IteratorProtocol"
38 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
39 |     public static let rangeExpression: ProtocolName = "RangeExpression"
   |                       |- warning: static property 'rangeExpression' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rangeExpression' with '@MainActor' 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 |     public static let strideable: ProtocolName = "Strideable"
41 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:40:23: warning: static property 'strideable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
38 |     public static let unsignedInteger: ProtocolName = "UnsignedInteger"
39 |     public static let rangeExpression: ProtocolName = "RangeExpression"
40 |     public static let strideable: ProtocolName = "Strideable"
   |                       |- warning: static property 'strideable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'strideable' with '@MainActor' 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 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
42 |     public static let stringProtocol: ProtocolName = "StringProtocol"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:41:23: warning: static property 'rawRepresentable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
39 |     public static let rangeExpression: ProtocolName = "RangeExpression"
40 |     public static let strideable: ProtocolName = "Strideable"
41 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
   |                       |- warning: static property 'rawRepresentable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'rawRepresentable' with '@MainActor' 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 |     public static let stringProtocol: ProtocolName = "StringProtocol"
43 |     public static let signedInteger: ProtocolName = "SignedInteger"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:42:23: warning: static property 'stringProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
40 |     public static let strideable: ProtocolName = "Strideable"
41 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
42 |     public static let stringProtocol: ProtocolName = "StringProtocol"
   |                       |- warning: static property 'stringProtocol' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'stringProtocol' with '@MainActor' 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 |     public static let signedInteger: ProtocolName = "SignedInteger"
44 |     public static let binaryInteger: ProtocolName = "BinaryInteger"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:43:23: warning: static property 'signedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
41 |     public static let rawRepresentable: ProtocolName = "RawRepresentable"
42 |     public static let stringProtocol: ProtocolName = "StringProtocol"
43 |     public static let signedInteger: ProtocolName = "SignedInteger"
   |                       |- warning: static property 'signedInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'signedInteger' with '@MainActor' 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 |     public static let binaryInteger: ProtocolName = "BinaryInteger"
45 |     public static let identifiable: ProtocolName = "Identifiable"
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:44:23: warning: static property 'binaryInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
42 |     public static let stringProtocol: ProtocolName = "StringProtocol"
43 |     public static let signedInteger: ProtocolName = "SignedInteger"
44 |     public static let binaryInteger: ProtocolName = "BinaryInteger"
   |                       |- warning: static property 'binaryInteger' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'binaryInteger' with '@MainActor' 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 |     public static let identifiable: ProtocolName = "Identifiable"
46 |
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:45:23: warning: static property 'identifiable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
43 |     public static let signedInteger: ProtocolName = "SignedInteger"
44 |     public static let binaryInteger: ProtocolName = "BinaryInteger"
45 |     public static let identifiable: ProtocolName = "Identifiable"
   |                       |- warning: static property 'identifiable' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'identifiable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 |     // SwiftUI
/host/spi-builder-workspace/Sources/ProtocolType/ProtocolName.swift:48:23: warning: static property 'view' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | public struct ProtocolName : RawRepresentable, Equatable {
   |               `- note: consider making struct 'ProtocolName' conform to the 'Sendable' protocol
 5 |     public let rawValue: String
 6 |
   :
46 |
47 |     // SwiftUI
48 |     public static let view: ProtocolName = "View"
   |                       |- warning: static property 'view' is not concurrency-safe because non-'Sendable' type 'ProtocolName' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'view' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | }
50 |
[13/16] Compiling ProtocolConformance ProtocolConformanceRecord.swift
[14/16] Compiling ProtocolConformance fakeConformance.swift
[15/16] Emitting module ProtocolConformance
[16/16] Compiling ProtocolConformance helpers.swift
[18/19] Emitting module ValuePointers
[19/19] Compiling ValuePointers withUnsafeValuePointer.swift
[21/23] Compiling Casting CastedProtocolValue.swift
[22/23] Emitting module Casting
[23/23] Compiling Casting withCasted.swift
[25/30] Compiling AssociatedTypeRequirementsVisitor _test.swift
/host/spi-builder-workspace/Sources/AssociatedTypeRequirementsVisitor/_test.swift:4:5: warning: var '_isTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | var _isTesting = false
  |     |- warning: var '_isTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  |     |- note: convert '_isTesting' to a 'let' constant to make 'Sendable' shared state immutable
  |     |- note: annotate '_isTesting' with '@MainActor' if property should only be accessed from the main actor
  |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | public func _testAssocaitedTypeRequirementVisitors(_ newValue: Bool) {
[26/30] Compiling AssociatedTypeRequirementsVisitor AssociatedTypeRequirementsVisitor.swift
/host/spi-builder-workspace/Sources/AssociatedTypeRequirementsVisitor/_test.swift:4:5: warning: var '_isTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | var _isTesting = false
  |     |- warning: var '_isTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  |     |- note: convert '_isTesting' to a 'let' constant to make 'Sendable' shared state immutable
  |     |- note: annotate '_isTesting' with '@MainActor' if property should only be accessed from the main actor
  |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | public func _testAssocaitedTypeRequirementVisitors(_ newValue: Bool) {
[27/30] Compiling AssociatedTypeRequirementsVisitor AssociatedTypeRequirementsTypeVisitor.swift
/host/spi-builder-workspace/Sources/AssociatedTypeRequirementsVisitor/_test.swift:4:5: warning: var '_isTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | var _isTesting = false
  |     |- warning: var '_isTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  |     |- note: convert '_isTesting' to a 'let' constant to make 'Sendable' shared state immutable
  |     |- note: annotate '_isTesting' with '@MainActor' if property should only be accessed from the main actor
  |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | public func _testAssocaitedTypeRequirementVisitors(_ newValue: Bool) {
[28/30] Emitting module AssociatedTypeRequirementsVisitor
/host/spi-builder-workspace/Sources/AssociatedTypeRequirementsVisitor/_test.swift:4:5: warning: var '_isTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | var _isTesting = false
  |     |- warning: var '_isTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  |     |- note: convert '_isTesting' to a 'let' constant to make 'Sendable' shared state immutable
  |     |- note: annotate '_isTesting' with '@MainActor' if property should only be accessed from the main actor
  |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | public func _testAssocaitedTypeRequirementVisitors(_ newValue: Bool) {
[29/30] Compiling AssociatedTypeRequirementsVisitor visitors.swift
[30/30] Compiling AssociatedTypeRequirementsVisitor testTypes.swift
Build complete! (12.01s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "AssociatedTypeRequirementsKit",
  "name" : "AssociatedTypeRequirementsKit",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "AssociatedTypeRequirementsKit",
      "targets" : [
        "AssociatedTypeRequirementsVisitor",
        "Casting",
        "ValuePointers",
        "ProtocolType"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ValuePointers",
      "module_type" : "SwiftTarget",
      "name" : "ValuePointers",
      "path" : "Sources/ValuePointers",
      "product_memberships" : [
        "AssociatedTypeRequirementsKit"
      ],
      "sources" : [
        "withUnsafeValuePointer.swift"
      ],
      "target_dependencies" : [
        "ProtocolConformance"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ProtocolType",
      "module_type" : "SwiftTarget",
      "name" : "ProtocolType",
      "path" : "Sources/ProtocolType",
      "product_memberships" : [
        "AssociatedTypeRequirementsKit"
      ],
      "sources" : [
        "ModuleName.swift",
        "ProtocolName.swift",
        "ProtocolType.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ProtocolConformance",
      "module_type" : "SwiftTarget",
      "name" : "ProtocolConformance",
      "path" : "Sources/ProtocolConformance",
      "product_memberships" : [
        "AssociatedTypeRequirementsKit"
      ],
      "sources" : [
        "ProtocolConformanceRecord.swift",
        "fakeConformance.swift",
        "helpers.swift"
      ],
      "target_dependencies" : [
        "ProtocolType"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Casting",
      "module_type" : "SwiftTarget",
      "name" : "Casting",
      "path" : "Sources/Casting",
      "product_memberships" : [
        "AssociatedTypeRequirementsKit"
      ],
      "sources" : [
        "CastedProtocolValue.swift",
        "withCasted.swift"
      ],
      "target_dependencies" : [
        "ValuePointers",
        "ProtocolType"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CContext",
      "module_type" : "ClangTarget",
      "name" : "CContext",
      "path" : "Sources/CContext",
      "product_memberships" : [
        "AssociatedTypeRequirementsKit"
      ],
      "sources" : [
        "CContext.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AssociatedTypeRequirementsVisitor",
      "module_type" : "SwiftTarget",
      "name" : "AssociatedTypeRequirementsVisitor",
      "path" : "Sources/AssociatedTypeRequirementsVisitor",
      "product_memberships" : [
        "AssociatedTypeRequirementsKit"
      ],
      "sources" : [
        "AssociatedTypeRequirementsTypeVisitor.swift",
        "AssociatedTypeRequirementsVisitor.swift",
        "_test.swift",
        "testTypes.swift",
        "visitors.swift"
      ],
      "target_dependencies" : [
        "Casting",
        "ValuePointers",
        "CContext"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AssociatedTypeRequirementsKitTests",
      "module_type" : "SwiftTarget",
      "name" : "AssociatedTypeRequirementsKitTests",
      "path" : "Tests/AssociatedTypeRequirementsKitTests",
      "sources" : [
        "ProtocolTypeTests.swift",
        "ValuePointersTests.swift",
        "VisitorTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "AssociatedTypeRequirementsVisitor",
        "Casting",
        "ValuePointers",
        "ProtocolType"
      ],
      "type" : "test"
    }
  ],
  "tools_version" : "5.2"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.