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

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of AssociatedTypeRequirementsKit with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 53

Build Command

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

Build Log

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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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)!
/Users/admin/builder/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"
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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
/Users/admin/builder/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
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
[9/11] Compiling ProtocolType ModuleName.swift
/Users/admin/builder/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 |
/Users/admin/builder/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 | }
[10/11] Emitting module ProtocolType
/Users/admin/builder/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 |
/Users/admin/builder/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 | }
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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 |
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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 |
/Users/admin/builder/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
/Users/admin/builder/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
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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 |
/Users/admin/builder/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
/Users/admin/builder/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 |
[12/15] Compiling ProtocolConformance helpers.swift
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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)!
/Users/admin/builder/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 |
/Users/admin/builder/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
/Users/admin/builder/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 | }
[13/15] Compiling ProtocolConformance fakeConformance.swift
[14/15] Compiling ProtocolConformance ProtocolConformanceRecord.swift
[15/15] Emitting module ProtocolConformance
[16/17] Emitting module ValuePointers
[17/17] Compiling ValuePointers withUnsafeValuePointer.swift
[18/20] Compiling Casting CastedProtocolValue.swift
[19/20] Compiling Casting withCasted.swift
[20/20] Emitting module Casting
[21/26] Compiling AssociatedTypeRequirementsVisitor visitors.swift
[22/26] Compiling AssociatedTypeRequirementsVisitor testTypes.swift
[23/26] Compiling AssociatedTypeRequirementsVisitor AssociatedTypeRequirementsTypeVisitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/AssociatedTypeRequirementsVisitor/_test.swift:4:5: warning: var '_isTesting' is not concurrency-safe because it is non-isolated 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 non-isolated 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) {
[24/26] Emitting module AssociatedTypeRequirementsVisitor
/Users/admin/builder/spi-builder-workspace/Sources/AssociatedTypeRequirementsVisitor/_test.swift:4:5: warning: var '_isTesting' is not concurrency-safe because it is non-isolated 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 non-isolated 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) {
[25/26] Compiling AssociatedTypeRequirementsVisitor AssociatedTypeRequirementsVisitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/AssociatedTypeRequirementsVisitor/_test.swift:4:5: warning: var '_isTesting' is not concurrency-safe because it is non-isolated 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 non-isolated 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/26] Compiling AssociatedTypeRequirementsVisitor _test.swift
/Users/admin/builder/spi-builder-workspace/Sources/AssociatedTypeRequirementsVisitor/_test.swift:4:5: warning: var '_isTesting' is not concurrency-safe because it is non-isolated 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 non-isolated 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) {
Build complete! (34.31s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "AssociatedTypeRequirementsKit",
  "name" : "AssociatedTypeRequirementsKit",
  "path" : "/Users/admin/builder/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"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.