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 SymbolKit, reference main (96bce1), with Swift 6.0 for macOS (SPM) on 5 Nov 2024 10:09:52 UTC.

Swift 6 data race errors: 86

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

247 |         static let typeDetails = TypeDetails.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:246:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
244 |         static let maximumLength = MaximumLength.symbolCodingInfo
245 |         static let allowedValues = AllowedValues.symbolCodingInfo
246 |         static let defaultValue = DefaultValue.symbolCodingInfo
    |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:247:20: warning: static property 'typeDetails' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
245 |         static let allowedValues = AllowedValues.symbolCodingInfo
246 |         static let defaultValue = DefaultValue.symbolCodingInfo
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
    |                    |- warning: static property 'typeDetails' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'typeDetails' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:248:20: warning: static property 'httpEndpoint' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
246 |         static let defaultValue = DefaultValue.symbolCodingInfo
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
    |                    |- warning: static property 'httpEndpoint' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'httpEndpoint' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:249:20: warning: static property 'httpParameterSource' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
    |                    |- warning: static property 'httpParameterSource' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'httpParameterSource' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
251 |         static let alternateSymbols = AlternateSymbols.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:250:20: warning: static property 'httpMediaType' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
    |                    |- warning: static property 'httpMediaType' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'httpMediaType' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
251 |         static let alternateSymbols = AlternateSymbols.symbolCodingInfo
252 |         static let plistDetails = PlistDetails.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:251:20: warning: static property 'alternateSymbols' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
251 |         static let alternateSymbols = AlternateSymbols.symbolCodingInfo
    |                    |- warning: static property 'alternateSymbols' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'alternateSymbols' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 |         static let plistDetails = PlistDetails.symbolCodingInfo
253 |
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:252:20: warning: static property 'plistDetails' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
251 |         static let alternateSymbols = AlternateSymbols.symbolCodingInfo
252 |         static let plistDetails = PlistDetails.symbolCodingInfo
    |                    |- warning: static property 'plistDetails' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'plistDetails' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 |
254 |         static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:254:20: warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
252 |         static let plistDetails = PlistDetails.symbolCodingInfo
253 |
254 |         static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
    |                    |- warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mixinCodingInfo' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
255 |             CodingKeys.availability.codingKey.stringValue: Self.availability,
256 |             CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:158:35: warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
156 |             // Do this before the next loop so that if both `alternateDeclarations` and
157 |             // `alternateSymbols` are present, the latter takes priority.
158 |             if container.contains(AlternateDeclarations.symbolCodingInfo.codingKey) {
    |                                   `- warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
159 |                 let alternateDeclarations = try container.decode(AlternateDeclarations.self, forKey: AlternateDeclarations.symbolCodingInfo.codingKey)
160 |                 mixins[AlternateSymbols.mixinKey] = AlternateSymbols(alternateDeclarations: alternateDeclarations)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:159:66: warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
157 |             // `alternateSymbols` are present, the latter takes priority.
158 |             if container.contains(AlternateDeclarations.symbolCodingInfo.codingKey) {
159 |                 let alternateDeclarations = try container.decode(AlternateDeclarations.self, forKey: AlternateDeclarations.symbolCodingInfo.codingKey)
    |                                                                  `- warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
160 |                 mixins[AlternateSymbols.mixinKey] = AlternateSymbols(alternateDeclarations: alternateDeclarations)
161 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:159:102: warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
157 |             // `alternateSymbols` are present, the latter takes priority.
158 |             if container.contains(AlternateDeclarations.symbolCodingInfo.codingKey) {
159 |                 let alternateDeclarations = try container.decode(AlternateDeclarations.self, forKey: AlternateDeclarations.symbolCodingInfo.codingKey)
    |                                                                                                      `- warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
160 |                 mixins[AlternateSymbols.mixinKey] = AlternateSymbols(alternateDeclarations: alternateDeclarations)
161 |             }
[51/58] Compiling SymbolKit Namespace.swift
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:230:20: warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
228 |
229 |         // Mixins
230 |         static let availability = Availability.symbolCodingInfo
    |                    |- warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'availability' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 |         static let declarationFragments = DeclarationFragments.symbolCodingInfo
232 |         static let isReadOnly = Mutability.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:231:20: warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
229 |         // Mixins
230 |         static let availability = Availability.symbolCodingInfo
231 |         static let declarationFragments = DeclarationFragments.symbolCodingInfo
    |                    |- warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'declarationFragments' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 |         static let isReadOnly = Mutability.symbolCodingInfo
233 |         static let swiftExtension = Swift.Extension.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:232:20: warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
230 |         static let availability = Availability.symbolCodingInfo
231 |         static let declarationFragments = DeclarationFragments.symbolCodingInfo
232 |         static let isReadOnly = Mutability.symbolCodingInfo
    |                    |- warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'isReadOnly' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
233 |         static let swiftExtension = Swift.Extension.symbolCodingInfo
234 |         static let swiftGenerics = Swift.Generics.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:233:20: warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
231 |         static let declarationFragments = DeclarationFragments.symbolCodingInfo
232 |         static let isReadOnly = Mutability.symbolCodingInfo
233 |         static let swiftExtension = Swift.Extension.symbolCodingInfo
    |                    |- warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'swiftExtension' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         static let swiftGenerics = Swift.Generics.symbolCodingInfo
235 |         static let location = Location.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:234:20: warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
232 |         static let isReadOnly = Mutability.symbolCodingInfo
233 |         static let swiftExtension = Swift.Extension.symbolCodingInfo
234 |         static let swiftGenerics = Swift.Generics.symbolCodingInfo
    |                    |- warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'swiftGenerics' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
235 |         static let location = Location.symbolCodingInfo
236 |         static let functionSignature = FunctionSignature.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:235:20: warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
233 |         static let swiftExtension = Swift.Extension.symbolCodingInfo
234 |         static let swiftGenerics = Swift.Generics.symbolCodingInfo
235 |         static let location = Location.symbolCodingInfo
    |                    |- warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'location' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |         static let functionSignature = FunctionSignature.symbolCodingInfo
237 |         static let spi = SPI.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:236:20: warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
234 |         static let swiftGenerics = Swift.Generics.symbolCodingInfo
235 |         static let location = Location.symbolCodingInfo
236 |         static let functionSignature = FunctionSignature.symbolCodingInfo
    |                    |- warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'functionSignature' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
237 |         static let spi = SPI.symbolCodingInfo
238 |         static let snippet = Snippet.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:237:20: warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
235 |         static let location = Location.symbolCodingInfo
236 |         static let functionSignature = FunctionSignature.symbolCodingInfo
237 |         static let spi = SPI.symbolCodingInfo
    |                    |- warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'spi' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
238 |         static let snippet = Snippet.symbolCodingInfo
239 |         static let minimum = Minimum.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:238:20: warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
236 |         static let functionSignature = FunctionSignature.symbolCodingInfo
237 |         static let spi = SPI.symbolCodingInfo
238 |         static let snippet = Snippet.symbolCodingInfo
    |                    |- warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'snippet' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
239 |         static let minimum = Minimum.symbolCodingInfo
240 |         static let maximum = Maximum.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:239:20: warning: static property 'minimum' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
237 |         static let spi = SPI.symbolCodingInfo
238 |         static let snippet = Snippet.symbolCodingInfo
239 |         static let minimum = Minimum.symbolCodingInfo
    |                    |- warning: static property 'minimum' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'minimum' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
240 |         static let maximum = Maximum.symbolCodingInfo
241 |         static let minimumExclusive = MinimumExclusive.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:240:20: warning: static property 'maximum' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
238 |         static let snippet = Snippet.symbolCodingInfo
239 |         static let minimum = Minimum.symbolCodingInfo
240 |         static let maximum = Maximum.symbolCodingInfo
    |                    |- warning: static property 'maximum' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'maximum' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
241 |         static let minimumExclusive = MinimumExclusive.symbolCodingInfo
242 |         static let maximumExclusive = MaximumExclusive.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:241:20: warning: static property 'minimumExclusive' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
239 |         static let minimum = Minimum.symbolCodingInfo
240 |         static let maximum = Maximum.symbolCodingInfo
241 |         static let minimumExclusive = MinimumExclusive.symbolCodingInfo
    |                    |- warning: static property 'minimumExclusive' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'minimumExclusive' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
242 |         static let maximumExclusive = MaximumExclusive.symbolCodingInfo
243 |         static let minimumLength = MinimumLength.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:242:20: warning: static property 'maximumExclusive' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
240 |         static let maximum = Maximum.symbolCodingInfo
241 |         static let minimumExclusive = MinimumExclusive.symbolCodingInfo
242 |         static let maximumExclusive = MaximumExclusive.symbolCodingInfo
    |                    |- warning: static property 'maximumExclusive' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'maximumExclusive' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
243 |         static let minimumLength = MinimumLength.symbolCodingInfo
244 |         static let maximumLength = MaximumLength.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:243:20: warning: static property 'minimumLength' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
241 |         static let minimumExclusive = MinimumExclusive.symbolCodingInfo
242 |         static let maximumExclusive = MaximumExclusive.symbolCodingInfo
243 |         static let minimumLength = MinimumLength.symbolCodingInfo
    |                    |- warning: static property 'minimumLength' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'minimumLength' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
244 |         static let maximumLength = MaximumLength.symbolCodingInfo
245 |         static let allowedValues = AllowedValues.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:244:20: warning: static property 'maximumLength' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
242 |         static let maximumExclusive = MaximumExclusive.symbolCodingInfo
243 |         static let minimumLength = MinimumLength.symbolCodingInfo
244 |         static let maximumLength = MaximumLength.symbolCodingInfo
    |                    |- warning: static property 'maximumLength' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'maximumLength' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
245 |         static let allowedValues = AllowedValues.symbolCodingInfo
246 |         static let defaultValue = DefaultValue.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:245:20: warning: static property 'allowedValues' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
243 |         static let minimumLength = MinimumLength.symbolCodingInfo
244 |         static let maximumLength = MaximumLength.symbolCodingInfo
245 |         static let allowedValues = AllowedValues.symbolCodingInfo
    |                    |- warning: static property 'allowedValues' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'allowedValues' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
246 |         static let defaultValue = DefaultValue.symbolCodingInfo
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:246:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
244 |         static let maximumLength = MaximumLength.symbolCodingInfo
245 |         static let allowedValues = AllowedValues.symbolCodingInfo
246 |         static let defaultValue = DefaultValue.symbolCodingInfo
    |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:247:20: warning: static property 'typeDetails' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
245 |         static let allowedValues = AllowedValues.symbolCodingInfo
246 |         static let defaultValue = DefaultValue.symbolCodingInfo
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
    |                    |- warning: static property 'typeDetails' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'typeDetails' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:248:20: warning: static property 'httpEndpoint' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
246 |         static let defaultValue = DefaultValue.symbolCodingInfo
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
    |                    |- warning: static property 'httpEndpoint' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'httpEndpoint' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:249:20: warning: static property 'httpParameterSource' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
    |                    |- warning: static property 'httpParameterSource' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'httpParameterSource' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
251 |         static let alternateSymbols = AlternateSymbols.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:250:20: warning: static property 'httpMediaType' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
    |                    |- warning: static property 'httpMediaType' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'httpMediaType' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
251 |         static let alternateSymbols = AlternateSymbols.symbolCodingInfo
252 |         static let plistDetails = PlistDetails.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:251:20: warning: static property 'alternateSymbols' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
251 |         static let alternateSymbols = AlternateSymbols.symbolCodingInfo
    |                    |- warning: static property 'alternateSymbols' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'alternateSymbols' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 |         static let plistDetails = PlistDetails.symbolCodingInfo
253 |
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:252:20: warning: static property 'plistDetails' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
251 |         static let alternateSymbols = AlternateSymbols.symbolCodingInfo
252 |         static let plistDetails = PlistDetails.symbolCodingInfo
    |                    |- warning: static property 'plistDetails' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'plistDetails' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 |
254 |         static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:254:20: warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
252 |         static let plistDetails = PlistDetails.symbolCodingInfo
253 |
254 |         static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
    |                    |- warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mixinCodingInfo' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
255 |             CodingKeys.availability.codingKey.stringValue: Self.availability,
256 |             CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:158:35: warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
156 |             // Do this before the next loop so that if both `alternateDeclarations` and
157 |             // `alternateSymbols` are present, the latter takes priority.
158 |             if container.contains(AlternateDeclarations.symbolCodingInfo.codingKey) {
    |                                   `- warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
159 |                 let alternateDeclarations = try container.decode(AlternateDeclarations.self, forKey: AlternateDeclarations.symbolCodingInfo.codingKey)
160 |                 mixins[AlternateSymbols.mixinKey] = AlternateSymbols(alternateDeclarations: alternateDeclarations)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:159:66: warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
157 |             // `alternateSymbols` are present, the latter takes priority.
158 |             if container.contains(AlternateDeclarations.symbolCodingInfo.codingKey) {
159 |                 let alternateDeclarations = try container.decode(AlternateDeclarations.self, forKey: AlternateDeclarations.symbolCodingInfo.codingKey)
    |                                                                  `- warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
160 |                 mixins[AlternateSymbols.mixinKey] = AlternateSymbols(alternateDeclarations: alternateDeclarations)
161 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:159:102: warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
157 |             // `alternateSymbols` are present, the latter takes priority.
158 |             if container.contains(AlternateDeclarations.symbolCodingInfo.codingKey) {
159 |                 let alternateDeclarations = try container.decode(AlternateDeclarations.self, forKey: AlternateDeclarations.symbolCodingInfo.codingKey)
    |                                                                                                      `- warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
160 |                 mixins[AlternateSymbols.mixinKey] = AlternateSymbols(alternateDeclarations: alternateDeclarations)
161 |             }
[52/58] Compiling SymbolKit Symbol.swift
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:230:20: warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
228 |
229 |         // Mixins
230 |         static let availability = Availability.symbolCodingInfo
    |                    |- warning: static property 'availability' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'availability' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 |         static let declarationFragments = DeclarationFragments.symbolCodingInfo
232 |         static let isReadOnly = Mutability.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:231:20: warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
229 |         // Mixins
230 |         static let availability = Availability.symbolCodingInfo
231 |         static let declarationFragments = DeclarationFragments.symbolCodingInfo
    |                    |- warning: static property 'declarationFragments' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'declarationFragments' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
232 |         static let isReadOnly = Mutability.symbolCodingInfo
233 |         static let swiftExtension = Swift.Extension.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:232:20: warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
230 |         static let availability = Availability.symbolCodingInfo
231 |         static let declarationFragments = DeclarationFragments.symbolCodingInfo
232 |         static let isReadOnly = Mutability.symbolCodingInfo
    |                    |- warning: static property 'isReadOnly' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'isReadOnly' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
233 |         static let swiftExtension = Swift.Extension.symbolCodingInfo
234 |         static let swiftGenerics = Swift.Generics.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:233:20: warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
231 |         static let declarationFragments = DeclarationFragments.symbolCodingInfo
232 |         static let isReadOnly = Mutability.symbolCodingInfo
233 |         static let swiftExtension = Swift.Extension.symbolCodingInfo
    |                    |- warning: static property 'swiftExtension' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'swiftExtension' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         static let swiftGenerics = Swift.Generics.symbolCodingInfo
235 |         static let location = Location.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:234:20: warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
232 |         static let isReadOnly = Mutability.symbolCodingInfo
233 |         static let swiftExtension = Swift.Extension.symbolCodingInfo
234 |         static let swiftGenerics = Swift.Generics.symbolCodingInfo
    |                    |- warning: static property 'swiftGenerics' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'swiftGenerics' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
235 |         static let location = Location.symbolCodingInfo
236 |         static let functionSignature = FunctionSignature.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:235:20: warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
233 |         static let swiftExtension = Swift.Extension.symbolCodingInfo
234 |         static let swiftGenerics = Swift.Generics.symbolCodingInfo
235 |         static let location = Location.symbolCodingInfo
    |                    |- warning: static property 'location' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'location' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |         static let functionSignature = FunctionSignature.symbolCodingInfo
237 |         static let spi = SPI.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:236:20: warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
234 |         static let swiftGenerics = Swift.Generics.symbolCodingInfo
235 |         static let location = Location.symbolCodingInfo
236 |         static let functionSignature = FunctionSignature.symbolCodingInfo
    |                    |- warning: static property 'functionSignature' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'functionSignature' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
237 |         static let spi = SPI.symbolCodingInfo
238 |         static let snippet = Snippet.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:237:20: warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
235 |         static let location = Location.symbolCodingInfo
236 |         static let functionSignature = FunctionSignature.symbolCodingInfo
237 |         static let spi = SPI.symbolCodingInfo
    |                    |- warning: static property 'spi' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'spi' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
238 |         static let snippet = Snippet.symbolCodingInfo
239 |         static let minimum = Minimum.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:238:20: warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
236 |         static let functionSignature = FunctionSignature.symbolCodingInfo
237 |         static let spi = SPI.symbolCodingInfo
238 |         static let snippet = Snippet.symbolCodingInfo
    |                    |- warning: static property 'snippet' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'snippet' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
239 |         static let minimum = Minimum.symbolCodingInfo
240 |         static let maximum = Maximum.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:239:20: warning: static property 'minimum' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
237 |         static let spi = SPI.symbolCodingInfo
238 |         static let snippet = Snippet.symbolCodingInfo
239 |         static let minimum = Minimum.symbolCodingInfo
    |                    |- warning: static property 'minimum' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'minimum' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
240 |         static let maximum = Maximum.symbolCodingInfo
241 |         static let minimumExclusive = MinimumExclusive.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:240:20: warning: static property 'maximum' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
238 |         static let snippet = Snippet.symbolCodingInfo
239 |         static let minimum = Minimum.symbolCodingInfo
240 |         static let maximum = Maximum.symbolCodingInfo
    |                    |- warning: static property 'maximum' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'maximum' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
241 |         static let minimumExclusive = MinimumExclusive.symbolCodingInfo
242 |         static let maximumExclusive = MaximumExclusive.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:241:20: warning: static property 'minimumExclusive' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
239 |         static let minimum = Minimum.symbolCodingInfo
240 |         static let maximum = Maximum.symbolCodingInfo
241 |         static let minimumExclusive = MinimumExclusive.symbolCodingInfo
    |                    |- warning: static property 'minimumExclusive' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'minimumExclusive' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
242 |         static let maximumExclusive = MaximumExclusive.symbolCodingInfo
243 |         static let minimumLength = MinimumLength.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:242:20: warning: static property 'maximumExclusive' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
240 |         static let maximum = Maximum.symbolCodingInfo
241 |         static let minimumExclusive = MinimumExclusive.symbolCodingInfo
242 |         static let maximumExclusive = MaximumExclusive.symbolCodingInfo
    |                    |- warning: static property 'maximumExclusive' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'maximumExclusive' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
243 |         static let minimumLength = MinimumLength.symbolCodingInfo
244 |         static let maximumLength = MaximumLength.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:243:20: warning: static property 'minimumLength' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
241 |         static let minimumExclusive = MinimumExclusive.symbolCodingInfo
242 |         static let maximumExclusive = MaximumExclusive.symbolCodingInfo
243 |         static let minimumLength = MinimumLength.symbolCodingInfo
    |                    |- warning: static property 'minimumLength' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'minimumLength' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
244 |         static let maximumLength = MaximumLength.symbolCodingInfo
245 |         static let allowedValues = AllowedValues.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:244:20: warning: static property 'maximumLength' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
242 |         static let maximumExclusive = MaximumExclusive.symbolCodingInfo
243 |         static let minimumLength = MinimumLength.symbolCodingInfo
244 |         static let maximumLength = MaximumLength.symbolCodingInfo
    |                    |- warning: static property 'maximumLength' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'maximumLength' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
245 |         static let allowedValues = AllowedValues.symbolCodingInfo
246 |         static let defaultValue = DefaultValue.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:245:20: warning: static property 'allowedValues' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
243 |         static let minimumLength = MinimumLength.symbolCodingInfo
244 |         static let maximumLength = MaximumLength.symbolCodingInfo
245 |         static let allowedValues = AllowedValues.symbolCodingInfo
    |                    |- warning: static property 'allowedValues' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'allowedValues' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
246 |         static let defaultValue = DefaultValue.symbolCodingInfo
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:246:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
244 |         static let maximumLength = MaximumLength.symbolCodingInfo
245 |         static let allowedValues = AllowedValues.symbolCodingInfo
246 |         static let defaultValue = DefaultValue.symbolCodingInfo
    |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:247:20: warning: static property 'typeDetails' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
245 |         static let allowedValues = AllowedValues.symbolCodingInfo
246 |         static let defaultValue = DefaultValue.symbolCodingInfo
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
    |                    |- warning: static property 'typeDetails' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'typeDetails' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:248:20: warning: static property 'httpEndpoint' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
246 |         static let defaultValue = DefaultValue.symbolCodingInfo
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
    |                    |- warning: static property 'httpEndpoint' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'httpEndpoint' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:249:20: warning: static property 'httpParameterSource' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
247 |         static let typeDetails = TypeDetails.symbolCodingInfo
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
    |                    |- warning: static property 'httpParameterSource' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'httpParameterSource' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
251 |         static let alternateSymbols = AlternateSymbols.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:250:20: warning: static property 'httpMediaType' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
248 |         static let httpEndpoint = HTTP.Endpoint.symbolCodingInfo
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
    |                    |- warning: static property 'httpMediaType' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'httpMediaType' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
251 |         static let alternateSymbols = AlternateSymbols.symbolCodingInfo
252 |         static let plistDetails = PlistDetails.symbolCodingInfo
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:251:20: warning: static property 'alternateSymbols' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
249 |         static let httpParameterSource = HTTP.ParameterSource.symbolCodingInfo
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
251 |         static let alternateSymbols = AlternateSymbols.symbolCodingInfo
    |                    |- warning: static property 'alternateSymbols' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'alternateSymbols' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 |         static let plistDetails = PlistDetails.symbolCodingInfo
253 |
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:252:20: warning: static property 'plistDetails' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
250 |         static let httpMediaType = HTTP.MediaType.symbolCodingInfo
251 |         static let alternateSymbols = AlternateSymbols.symbolCodingInfo
252 |         static let plistDetails = PlistDetails.symbolCodingInfo
    |                    |- warning: static property 'plistDetails' is not concurrency-safe because non-'Sendable' type 'SymbolMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'plistDetails' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 |
254 |         static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:254:20: warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
252 |         static let plistDetails = PlistDetails.symbolCodingInfo
253 |
254 |         static let mixinCodingInfo: [String: SymbolMixinCodingInfo] = [
    |                    |- warning: static property 'mixinCodingInfo' is not concurrency-safe because non-'Sendable' type '[String : SymbolMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Symbol.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mixinCodingInfo' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
255 |             CodingKeys.availability.codingKey.stringValue: Self.availability,
256 |             CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/Mixin/Mixin.swift:64:8: note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 62 | typealias RelationshipMixinCodingInfo = MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>
 63 |
 64 | struct MixinCodingInformation<Key: CodingKey> {
    |        `- note: consider making generic struct 'MixinCodingInformation' conform to the 'Sendable' protocol
 65 |     let codingKey: Key
 66 |     let encode: (Mixin, inout KeyedEncodingContainer<Key>) throws -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:158:35: warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
156 |             // Do this before the next loop so that if both `alternateDeclarations` and
157 |             // `alternateSymbols` are present, the latter takes priority.
158 |             if container.contains(AlternateDeclarations.symbolCodingInfo.codingKey) {
    |                                   `- warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
159 |                 let alternateDeclarations = try container.decode(AlternateDeclarations.self, forKey: AlternateDeclarations.symbolCodingInfo.codingKey)
160 |                 mixins[AlternateSymbols.mixinKey] = AlternateSymbols(alternateDeclarations: alternateDeclarations)
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:159:66: warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
157 |             // `alternateSymbols` are present, the latter takes priority.
158 |             if container.contains(AlternateDeclarations.symbolCodingInfo.codingKey) {
159 |                 let alternateDeclarations = try container.decode(AlternateDeclarations.self, forKey: AlternateDeclarations.symbolCodingInfo.codingKey)
    |                                                                  `- warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
160 |                 mixins[AlternateSymbols.mixinKey] = AlternateSymbols(alternateDeclarations: alternateDeclarations)
161 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:159:102: warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
157 |             // `alternateSymbols` are present, the latter takes priority.
158 |             if container.contains(AlternateDeclarations.symbolCodingInfo.codingKey) {
159 |                 let alternateDeclarations = try container.decode(AlternateDeclarations.self, forKey: AlternateDeclarations.symbolCodingInfo.codingKey)
    |                                                                                                      `- warning: 'AlternateDeclarations' is deprecated: This type is now unused; alternate declaration information is stored in AlternateSymbols instead.
160 |                 mixins[AlternateSymbols.mixinKey] = AlternateSymbols(alternateDeclarations: alternateDeclarations)
161 |             }
[53/58] Compiling SymbolKit DeclarationFragments.swift
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
24 |          A keyword in the programming language, such as `return` in C or `func` in Swift.
25 |          */
26 |         public static let keyword = Kind(rawValue: "keyword")!
   |                           |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'keyword' with '@MainActor' 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 |
28 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
29 |          An attribute in the programming language.
30 |          */
31 |         public static let attribute = Kind(rawValue: "attribute")!
   |                           |- warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'attribute' with '@MainActor' 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 |
33 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
34 |          An integer or floating point literal, such as `0`, `1.0f`, or `0xFF`.
35 |          */
36 |         public static let numberLiteral = Kind(rawValue: "number")!
   |                           |- warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'numberLiteral' with '@MainActor' 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 |
38 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
39 |          A string literal such as `"foo"`.
40 |          */
41 |         public static let stringLiteral = Kind(rawValue: "string")!
   |                           |- warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'stringLiteral' with '@MainActor' 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 |
43 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
44 |          An identifier such as a parameter name.
45 |          */
46 |         public static let identifier = Kind(rawValue: "identifier")!
   |                           |- warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'identifier' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
49 |          An identifier for a type.
50 |          */
51 |         public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
   |                           |- warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'typeIdentifier' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
54 |          A generic parameter, such as the `T` in C++ `template <typename T>`.
55 |          */
56 |         public static let genericParameter = Kind(rawValue: "genericParameter")!
   |                           |- warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'genericParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
68 |          parameter name.
69 |          */
70 |         public static let externalParameter = Kind(rawValue: "externalParam")!
   |                           |- warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'externalParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
86 |          > to in prose.
87 |          */
88 |         public static let internalParameter = Kind(rawValue: "internalParam")!
   |                           |- warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'internalParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 |
90 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
91 |          General purpose or unlabeled text.
92 |          */
93 |         public static let text = Kind(rawValue: "text")!
   |                           |- warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'text' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 |     }
95 | }
[54/58] Compiling SymbolKit Fragment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
24 |          A keyword in the programming language, such as `return` in C or `func` in Swift.
25 |          */
26 |         public static let keyword = Kind(rawValue: "keyword")!
   |                           |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'keyword' with '@MainActor' 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 |
28 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
29 |          An attribute in the programming language.
30 |          */
31 |         public static let attribute = Kind(rawValue: "attribute")!
   |                           |- warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'attribute' with '@MainActor' 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 |
33 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
34 |          An integer or floating point literal, such as `0`, `1.0f`, or `0xFF`.
35 |          */
36 |         public static let numberLiteral = Kind(rawValue: "number")!
   |                           |- warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'numberLiteral' with '@MainActor' 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 |
38 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
39 |          A string literal such as `"foo"`.
40 |          */
41 |         public static let stringLiteral = Kind(rawValue: "string")!
   |                           |- warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'stringLiteral' with '@MainActor' 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 |
43 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
44 |          An identifier such as a parameter name.
45 |          */
46 |         public static let identifier = Kind(rawValue: "identifier")!
   |                           |- warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'identifier' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
49 |          An identifier for a type.
50 |          */
51 |         public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
   |                           |- warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'typeIdentifier' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
54 |          A generic parameter, such as the `T` in C++ `template <typename T>`.
55 |          */
56 |         public static let genericParameter = Kind(rawValue: "genericParameter")!
   |                           |- warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'genericParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
68 |          parameter name.
69 |          */
70 |         public static let externalParameter = Kind(rawValue: "externalParam")!
   |                           |- warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'externalParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
86 |          > to in prose.
87 |          */
88 |         public static let internalParameter = Kind(rawValue: "internalParam")!
   |                           |- warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'internalParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 |
90 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
91 |          General purpose or unlabeled text.
92 |          */
93 |         public static let text = Kind(rawValue: "text")!
   |                           |- warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'text' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 |     }
95 | }
[55/58] Compiling SymbolKit FragmentKind.swift
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
24 |          A keyword in the programming language, such as `return` in C or `func` in Swift.
25 |          */
26 |         public static let keyword = Kind(rawValue: "keyword")!
   |                           |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'keyword' with '@MainActor' 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 |
28 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
29 |          An attribute in the programming language.
30 |          */
31 |         public static let attribute = Kind(rawValue: "attribute")!
   |                           |- warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'attribute' with '@MainActor' 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 |
33 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
34 |          An integer or floating point literal, such as `0`, `1.0f`, or `0xFF`.
35 |          */
36 |         public static let numberLiteral = Kind(rawValue: "number")!
   |                           |- warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'numberLiteral' with '@MainActor' 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 |
38 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
39 |          A string literal such as `"foo"`.
40 |          */
41 |         public static let stringLiteral = Kind(rawValue: "string")!
   |                           |- warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'stringLiteral' with '@MainActor' 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 |
43 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
44 |          An identifier such as a parameter name.
45 |          */
46 |         public static let identifier = Kind(rawValue: "identifier")!
   |                           |- warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'identifier' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
49 |          An identifier for a type.
50 |          */
51 |         public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
   |                           |- warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'typeIdentifier' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
54 |          A generic parameter, such as the `T` in C++ `template <typename T>`.
55 |          */
56 |         public static let genericParameter = Kind(rawValue: "genericParameter")!
   |                           |- warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'genericParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
68 |          parameter name.
69 |          */
70 |         public static let externalParameter = Kind(rawValue: "externalParam")!
   |                           |- warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'externalParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
86 |          > to in prose.
87 |          */
88 |         public static let internalParameter = Kind(rawValue: "internalParam")!
   |                           |- warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'internalParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 |
90 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
91 |          General purpose or unlabeled text.
92 |          */
93 |         public static let text = Kind(rawValue: "text")!
   |                           |- warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'text' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 |     }
95 | }
[56/58] Compiling SymbolKit FunctionParameter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
24 |          A keyword in the programming language, such as `return` in C or `func` in Swift.
25 |          */
26 |         public static let keyword = Kind(rawValue: "keyword")!
   |                           |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'keyword' with '@MainActor' 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 |
28 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
29 |          An attribute in the programming language.
30 |          */
31 |         public static let attribute = Kind(rawValue: "attribute")!
   |                           |- warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'attribute' with '@MainActor' 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 |
33 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
34 |          An integer or floating point literal, such as `0`, `1.0f`, or `0xFF`.
35 |          */
36 |         public static let numberLiteral = Kind(rawValue: "number")!
   |                           |- warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'numberLiteral' with '@MainActor' 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 |
38 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
39 |          A string literal such as `"foo"`.
40 |          */
41 |         public static let stringLiteral = Kind(rawValue: "string")!
   |                           |- warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'stringLiteral' with '@MainActor' 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 |
43 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
44 |          An identifier such as a parameter name.
45 |          */
46 |         public static let identifier = Kind(rawValue: "identifier")!
   |                           |- warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'identifier' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
49 |          An identifier for a type.
50 |          */
51 |         public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
   |                           |- warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'typeIdentifier' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
54 |          A generic parameter, such as the `T` in C++ `template <typename T>`.
55 |          */
56 |         public static let genericParameter = Kind(rawValue: "genericParameter")!
   |                           |- warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'genericParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
68 |          parameter name.
69 |          */
70 |         public static let externalParameter = Kind(rawValue: "externalParam")!
   |                           |- warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'externalParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
86 |          > to in prose.
87 |          */
88 |         public static let internalParameter = Kind(rawValue: "internalParam")!
   |                           |- warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'internalParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 |
90 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
91 |          General purpose or unlabeled text.
92 |          */
93 |         public static let text = Kind(rawValue: "text")!
   |                           |- warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'text' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 |     }
95 | }
[57/58] Compiling SymbolKit FunctionSignature.swift
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
24 |          A keyword in the programming language, such as `return` in C or `func` in Swift.
25 |          */
26 |         public static let keyword = Kind(rawValue: "keyword")!
   |                           |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'keyword' with '@MainActor' 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 |
28 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
29 |          An attribute in the programming language.
30 |          */
31 |         public static let attribute = Kind(rawValue: "attribute")!
   |                           |- warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'attribute' with '@MainActor' 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 |
33 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
34 |          An integer or floating point literal, such as `0`, `1.0f`, or `0xFF`.
35 |          */
36 |         public static let numberLiteral = Kind(rawValue: "number")!
   |                           |- warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'numberLiteral' with '@MainActor' 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 |
38 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
39 |          A string literal such as `"foo"`.
40 |          */
41 |         public static let stringLiteral = Kind(rawValue: "string")!
   |                           |- warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'stringLiteral' with '@MainActor' 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 |
43 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
44 |          An identifier such as a parameter name.
45 |          */
46 |         public static let identifier = Kind(rawValue: "identifier")!
   |                           |- warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'identifier' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
49 |          An identifier for a type.
50 |          */
51 |         public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
   |                           |- warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'typeIdentifier' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
54 |          A generic parameter, such as the `T` in C++ `template <typename T>`.
55 |          */
56 |         public static let genericParameter = Kind(rawValue: "genericParameter")!
   |                           |- warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'genericParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
68 |          parameter name.
69 |          */
70 |         public static let externalParameter = Kind(rawValue: "externalParam")!
   |                           |- warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'externalParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
86 |          > to in prose.
87 |          */
88 |         public static let internalParameter = Kind(rawValue: "internalParam")!
   |                           |- warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'internalParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 |
90 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
91 |          General purpose or unlabeled text.
92 |          */
93 |         public static let text = Kind(rawValue: "text")!
   |                           |- warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'text' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 |     }
95 | }
[58/58] Compiling SymbolKit HTTP.swift
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:26:27: warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
24 |          A keyword in the programming language, such as `return` in C or `func` in Swift.
25 |          */
26 |         public static let keyword = Kind(rawValue: "keyword")!
   |                           |- warning: static property 'keyword' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'keyword' with '@MainActor' 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 |
28 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:31:27: warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
29 |          An attribute in the programming language.
30 |          */
31 |         public static let attribute = Kind(rawValue: "attribute")!
   |                           |- warning: static property 'attribute' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'attribute' with '@MainActor' 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 |
33 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:36:27: warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
34 |          An integer or floating point literal, such as `0`, `1.0f`, or `0xFF`.
35 |          */
36 |         public static let numberLiteral = Kind(rawValue: "number")!
   |                           |- warning: static property 'numberLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'numberLiteral' with '@MainActor' 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 |
38 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:41:27: warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
39 |          A string literal such as `"foo"`.
40 |          */
41 |         public static let stringLiteral = Kind(rawValue: "string")!
   |                           |- warning: static property 'stringLiteral' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'stringLiteral' with '@MainActor' 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 |
43 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:46:27: warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
44 |          An identifier such as a parameter name.
45 |          */
46 |         public static let identifier = Kind(rawValue: "identifier")!
   |                           |- warning: static property 'identifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'identifier' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:51:27: warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
49 |          An identifier for a type.
50 |          */
51 |         public static let typeIdentifier = Kind(rawValue: "typeIdentifier")!
   |                           |- warning: static property 'typeIdentifier' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'typeIdentifier' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:56:27: warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
54 |          A generic parameter, such as the `T` in C++ `template <typename T>`.
55 |          */
56 |         public static let genericParameter = Kind(rawValue: "genericParameter")!
   |                           |- warning: static property 'genericParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'genericParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:70:27: warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
68 |          parameter name.
69 |          */
70 |         public static let externalParameter = Kind(rawValue: "externalParam")!
   |                           |- warning: static property 'externalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'externalParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:88:27: warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
86 |          > to in prose.
87 |          */
88 |         public static let internalParameter = Kind(rawValue: "internalParam")!
   |                           |- warning: static property 'internalParameter' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'internalParameter' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 |
90 |         /**
/Users/admin/builder/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift:93:27: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
15 |      The kind of declaration fragment.
16 |      */
17 |     public struct Kind: Equatable, Codable, RawRepresentable {
   |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
18 |         public var rawValue: String
19 |         public init?(rawValue: String) {
   :
91 |          General purpose or unlabeled text.
92 |          */
93 |         public static let text = Kind(rawValue: "text")!
   |                           |- warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Symbol.DeclarationFragments.Fragment.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'text' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 |     }
95 | }
Build complete! (18.17s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SymbolKit",
  "name" : "SymbolKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SymbolKit",
      "targets" : [
        "SymbolKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SymbolKitTests",
      "module_type" : "SwiftTarget",
      "name" : "SymbolKitTests",
      "path" : "Tests/SymbolKitTests",
      "sources" : [
        "SymbolGraph/AnyScalarTests.swift",
        "SymbolGraph/LineList/LineListTests.swift",
        "SymbolGraph/LineList/SemanticVersionTests.swift",
        "SymbolGraph/ModuleTests.swift",
        "SymbolGraph/PlatformTests.swift",
        "SymbolGraph/Relationship/HashableTests.swift",
        "SymbolGraph/Relationship/ReferenceLocationTests.swift",
        "SymbolGraph/Symbol/DeclarationFragments+SimplifyTests.swift",
        "SymbolGraph/Symbol/FunctionSignatureTests.swift",
        "SymbolGraph/Symbol/HTTPTests.swift",
        "SymbolGraph/Symbol/PlistDetailsTests.swift",
        "SymbolGraph/Symbol/Swift/GenericConstraintTests.swift",
        "SymbolGraph/Symbol/SymbolKindTests.swift",
        "SymbolGraph/Symbol/ValueConstraintsTests.swift",
        "SymbolGraph/SymbolGraph+OverloadsTests.swift",
        "SymbolGraph/SymbolGraphCreationTests.swift",
        "SymbolGraph/SymbolGraphTests.swift",
        "SymbolGraph/SymbolTests.swift",
        "UnifiedGraph/GraphCollectorTests.swift",
        "UnifiedGraph/UnifiedGraph+OverloadsTests.swift",
        "UnifiedGraph/UnifiedGraphTests.swift",
        "UnifiedGraph/UnifiedSymbolTests.swift"
      ],
      "target_dependencies" : [
        "SymbolKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SymbolKit",
      "module_type" : "SwiftTarget",
      "name" : "SymbolKit",
      "path" : "Sources/SymbolKit",
      "product_memberships" : [
        "SymbolKit"
      ],
      "sources" : [
        "Mixin/Mixin+Equals.swift",
        "Mixin/Mixin+Hash.swift",
        "Mixin/Mixin.swift",
        "SymbolGraph/AnyScalar.swift",
        "SymbolGraph/LineList/LineList.swift",
        "SymbolGraph/LineList/SourceRange/Position.swift",
        "SymbolGraph/LineList/SourceRange/SourceRange.swift",
        "SymbolGraph/Metadata.swift",
        "SymbolGraph/Module.swift",
        "SymbolGraph/OperatingSystem.swift",
        "SymbolGraph/Platform.swift",
        "SymbolGraph/Relationship/ReferenceLocation.swift",
        "SymbolGraph/Relationship/Relationship.swift",
        "SymbolGraph/Relationship/RelationshipKind.swift",
        "SymbolGraph/Relationship/SourceOrigin.swift",
        "SymbolGraph/Relationship/Swift/GenericConstraints.swift",
        "SymbolGraph/Relationship/Swift/Swift.swift",
        "SymbolGraph/SemanticVersion.swift",
        "SymbolGraph/Symbol/AccessControl.swift",
        "SymbolGraph/Symbol/AlternateDeclarations.swift",
        "SymbolGraph/Symbol/Availability/Availability.swift",
        "SymbolGraph/Symbol/Availability/AvailabilityItem.swift",
        "SymbolGraph/Symbol/Availability/Domain.swift",
        "SymbolGraph/Symbol/DeclarationFragments/DeclarationFragments+Simplify.swift",
        "SymbolGraph/Symbol/DeclarationFragments/DeclarationFragments.swift",
        "SymbolGraph/Symbol/DeclarationFragments/Fragment/Fragment.swift",
        "SymbolGraph/Symbol/DeclarationFragments/Fragment/FragmentKind.swift",
        "SymbolGraph/Symbol/FunctionSignature/FunctionParameter.swift",
        "SymbolGraph/Symbol/FunctionSignature/FunctionSignature.swift",
        "SymbolGraph/Symbol/HTTP/HTTP.swift",
        "SymbolGraph/Symbol/Identifier.swift",
        "SymbolGraph/Symbol/KindIdentifier.swift",
        "SymbolGraph/Symbol/Location.swift",
        "SymbolGraph/Symbol/Mutability.swift",
        "SymbolGraph/Symbol/Names.swift",
        "SymbolGraph/Symbol/OverloadData.swift",
        "SymbolGraph/Symbol/PlistDetails.swift",
        "SymbolGraph/Symbol/SPI.swift",
        "SymbolGraph/Symbol/Snippet.swift",
        "SymbolGraph/Symbol/Swift/Extension.swift",
        "SymbolGraph/Symbol/Swift/GenericConstraint.swift",
        "SymbolGraph/Symbol/Swift/GenericParameter.swift",
        "SymbolGraph/Symbol/Swift/Generics.swift",
        "SymbolGraph/Symbol/Swift/Namespace.swift",
        "SymbolGraph/Symbol/Symbol.swift",
        "SymbolGraph/Symbol/SymbolKind.swift",
        "SymbolGraph/Symbol/ValueConstraints.swift",
        "SymbolGraph/SymbolGraph+Overloads.swift",
        "SymbolGraph/SymbolGraph.swift",
        "UnifiedSymbolGraph/GraphCollector.swift",
        "UnifiedSymbolGraph/UnifiedSymbol+Encodable.swift",
        "UnifiedSymbolGraph/UnifiedSymbol.swift",
        "UnifiedSymbolGraph/UnifiedSymbolGraph+Encodable.swift",
        "UnifiedSymbolGraph/UnifiedSymbolGraph+Overloads.swift",
        "UnifiedSymbolGraph/UnifiedSymbolGraph.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.