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 (4c245d), with Swift 6.0 for Linux on 16 Sep 2024 10:29:48 UTC.

Swift 6 data race errors: 86

Build Command

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

Build Log

116 |         // Mixins
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
    |                    |- warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'sourceOrigin' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:119:20: warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
    |                    |- warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'referenceLocation' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:121:20: warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
    |                    |- warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mixinKeys' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |             CodingKeys.swiftConstraints.codingKey.stringValue: Self.swiftConstraints,
123 |             CodingKeys.sourceOrigin.codingKey.stringValue: Self.sourceOrigin,
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:31:27: warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 29 |          symbol `B` is the owner of a member symbol `A`.
 30 |          */
 31 |         public static let memberOf = Kind(rawValue: "memberOf")
    |                           |- warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'memberOf' with '@MainActor' 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 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:43:27: warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 41 |          symbol `B` is the owner of a member symbol `A`.
 42 |          */
 43 |         public static let optionalMemberOf = Kind(rawValue: "optionalMemberOf")
    |                           |- warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalMemberOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:54:27: warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 52 |          a symbol `B` that has a conformer `A`.
 53 |          */
 54 |         public static let conformsTo = Kind(rawValue: "conformsTo")
    |                           |- warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'conformsTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:65:27: warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 63 |          a symbol `B` is a base of another symbol `A`.
 64 |          */
 65 |         public static let inheritsFrom = Kind(rawValue: "inheritsFrom")
    |                           |- warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'inheritsFrom' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |
 67 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:74:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 72 |          an interface requirement `B` has a default implementation of `A`.
 73 |          */
 74 |         public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
    |                           |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:82:27: warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 80 |          a symbol `A` is the base of symbol `B`.
 81 |          */
 82 |         public static let overrides = Kind(rawValue: "overrides")
    |                           |- warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overrides' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:90:27: warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 88 |          an interface `B` has a requirement of `A`.
 89 |          */
 90 |         public static let requirementOf = Kind(rawValue: "requirementOf")
    |                           |- warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'requirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:98:27: warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 96 |          an interface `B` has an optional requirement of `A`.
 97 |          */
 98 |         public static let optionalRequirementOf = Kind(rawValue: "optionalRequirementOf")
    |                           |- warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalRequirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:109:27: warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
107 |          by an extension block symbol `A`.
108 |          */
109 |         public static let extensionTo = Kind(rawValue: "extensionTo")
    |                           |- warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'extensionTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |
111 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:120:27: warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
118 |          symbol `A`.
119 |          */
120 |         public static let references = Kind(rawValue: "references")
    |                           |- warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'references' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 |
122 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:132:27: warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
130 |          overload group containing `A`.
131 |          */
132 |         public static let overloadOf = Kind(rawValue: "overloadOf")
    |                           |- warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overloadOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     }
134 | }
[47/58] Compiling SymbolKit Module.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/ReferenceLocation.swift:16:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     /// A mixin for `references` relationships that indicates the source location of the reference.
15 |     public struct ReferenceLocation: Mixin, Codable, Equatable {
16 |         public static var mixinKey = "referenceLocation"
   |                           |- warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'mixinKey' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |         /// The source locations where the reference occurs.
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:117:20: warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 |         // Mixins
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
    |                    |- warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'swiftConstraints' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:118:20: warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
116 |         // Mixins
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
    |                    |- warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'sourceOrigin' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:119:20: warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
    |                    |- warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'referenceLocation' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:121:20: warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
    |                    |- warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mixinKeys' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |             CodingKeys.swiftConstraints.codingKey.stringValue: Self.swiftConstraints,
123 |             CodingKeys.sourceOrigin.codingKey.stringValue: Self.sourceOrigin,
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:31:27: warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 29 |          symbol `B` is the owner of a member symbol `A`.
 30 |          */
 31 |         public static let memberOf = Kind(rawValue: "memberOf")
    |                           |- warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'memberOf' with '@MainActor' 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 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:43:27: warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 41 |          symbol `B` is the owner of a member symbol `A`.
 42 |          */
 43 |         public static let optionalMemberOf = Kind(rawValue: "optionalMemberOf")
    |                           |- warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalMemberOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:54:27: warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 52 |          a symbol `B` that has a conformer `A`.
 53 |          */
 54 |         public static let conformsTo = Kind(rawValue: "conformsTo")
    |                           |- warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'conformsTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:65:27: warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 63 |          a symbol `B` is a base of another symbol `A`.
 64 |          */
 65 |         public static let inheritsFrom = Kind(rawValue: "inheritsFrom")
    |                           |- warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'inheritsFrom' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |
 67 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:74:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 72 |          an interface requirement `B` has a default implementation of `A`.
 73 |          */
 74 |         public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
    |                           |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:82:27: warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 80 |          a symbol `A` is the base of symbol `B`.
 81 |          */
 82 |         public static let overrides = Kind(rawValue: "overrides")
    |                           |- warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overrides' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:90:27: warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 88 |          an interface `B` has a requirement of `A`.
 89 |          */
 90 |         public static let requirementOf = Kind(rawValue: "requirementOf")
    |                           |- warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'requirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:98:27: warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 96 |          an interface `B` has an optional requirement of `A`.
 97 |          */
 98 |         public static let optionalRequirementOf = Kind(rawValue: "optionalRequirementOf")
    |                           |- warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalRequirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:109:27: warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
107 |          by an extension block symbol `A`.
108 |          */
109 |         public static let extensionTo = Kind(rawValue: "extensionTo")
    |                           |- warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'extensionTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |
111 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:120:27: warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
118 |          symbol `A`.
119 |          */
120 |         public static let references = Kind(rawValue: "references")
    |                           |- warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'references' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 |
122 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:132:27: warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
130 |          overload group containing `A`.
131 |          */
132 |         public static let overloadOf = Kind(rawValue: "overloadOf")
    |                           |- warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overloadOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     }
134 | }
[48/58] Compiling SymbolKit OperatingSystem.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/ReferenceLocation.swift:16:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     /// A mixin for `references` relationships that indicates the source location of the reference.
15 |     public struct ReferenceLocation: Mixin, Codable, Equatable {
16 |         public static var mixinKey = "referenceLocation"
   |                           |- warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'mixinKey' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |         /// The source locations where the reference occurs.
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:117:20: warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 |         // Mixins
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
    |                    |- warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'swiftConstraints' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:118:20: warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
116 |         // Mixins
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
    |                    |- warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'sourceOrigin' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:119:20: warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
    |                    |- warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'referenceLocation' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:121:20: warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
    |                    |- warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mixinKeys' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |             CodingKeys.swiftConstraints.codingKey.stringValue: Self.swiftConstraints,
123 |             CodingKeys.sourceOrigin.codingKey.stringValue: Self.sourceOrigin,
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:31:27: warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 29 |          symbol `B` is the owner of a member symbol `A`.
 30 |          */
 31 |         public static let memberOf = Kind(rawValue: "memberOf")
    |                           |- warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'memberOf' with '@MainActor' 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 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:43:27: warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 41 |          symbol `B` is the owner of a member symbol `A`.
 42 |          */
 43 |         public static let optionalMemberOf = Kind(rawValue: "optionalMemberOf")
    |                           |- warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalMemberOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:54:27: warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 52 |          a symbol `B` that has a conformer `A`.
 53 |          */
 54 |         public static let conformsTo = Kind(rawValue: "conformsTo")
    |                           |- warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'conformsTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:65:27: warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 63 |          a symbol `B` is a base of another symbol `A`.
 64 |          */
 65 |         public static let inheritsFrom = Kind(rawValue: "inheritsFrom")
    |                           |- warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'inheritsFrom' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |
 67 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:74:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 72 |          an interface requirement `B` has a default implementation of `A`.
 73 |          */
 74 |         public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
    |                           |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:82:27: warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 80 |          a symbol `A` is the base of symbol `B`.
 81 |          */
 82 |         public static let overrides = Kind(rawValue: "overrides")
    |                           |- warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overrides' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:90:27: warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 88 |          an interface `B` has a requirement of `A`.
 89 |          */
 90 |         public static let requirementOf = Kind(rawValue: "requirementOf")
    |                           |- warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'requirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:98:27: warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 96 |          an interface `B` has an optional requirement of `A`.
 97 |          */
 98 |         public static let optionalRequirementOf = Kind(rawValue: "optionalRequirementOf")
    |                           |- warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalRequirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:109:27: warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
107 |          by an extension block symbol `A`.
108 |          */
109 |         public static let extensionTo = Kind(rawValue: "extensionTo")
    |                           |- warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'extensionTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |
111 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:120:27: warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
118 |          symbol `A`.
119 |          */
120 |         public static let references = Kind(rawValue: "references")
    |                           |- warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'references' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 |
122 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:132:27: warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
130 |          overload group containing `A`.
131 |          */
132 |         public static let overloadOf = Kind(rawValue: "overloadOf")
    |                           |- warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overloadOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     }
134 | }
[49/58] Compiling SymbolKit Platform.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/ReferenceLocation.swift:16:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     /// A mixin for `references` relationships that indicates the source location of the reference.
15 |     public struct ReferenceLocation: Mixin, Codable, Equatable {
16 |         public static var mixinKey = "referenceLocation"
   |                           |- warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'mixinKey' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |         /// The source locations where the reference occurs.
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:117:20: warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 |         // Mixins
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
    |                    |- warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'swiftConstraints' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:118:20: warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
116 |         // Mixins
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
    |                    |- warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'sourceOrigin' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:119:20: warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
    |                    |- warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'referenceLocation' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:121:20: warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
    |                    |- warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mixinKeys' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |             CodingKeys.swiftConstraints.codingKey.stringValue: Self.swiftConstraints,
123 |             CodingKeys.sourceOrigin.codingKey.stringValue: Self.sourceOrigin,
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:31:27: warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 29 |          symbol `B` is the owner of a member symbol `A`.
 30 |          */
 31 |         public static let memberOf = Kind(rawValue: "memberOf")
    |                           |- warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'memberOf' with '@MainActor' 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 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:43:27: warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 41 |          symbol `B` is the owner of a member symbol `A`.
 42 |          */
 43 |         public static let optionalMemberOf = Kind(rawValue: "optionalMemberOf")
    |                           |- warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalMemberOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:54:27: warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 52 |          a symbol `B` that has a conformer `A`.
 53 |          */
 54 |         public static let conformsTo = Kind(rawValue: "conformsTo")
    |                           |- warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'conformsTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:65:27: warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 63 |          a symbol `B` is a base of another symbol `A`.
 64 |          */
 65 |         public static let inheritsFrom = Kind(rawValue: "inheritsFrom")
    |                           |- warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'inheritsFrom' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |
 67 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:74:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 72 |          an interface requirement `B` has a default implementation of `A`.
 73 |          */
 74 |         public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
    |                           |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:82:27: warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 80 |          a symbol `A` is the base of symbol `B`.
 81 |          */
 82 |         public static let overrides = Kind(rawValue: "overrides")
    |                           |- warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overrides' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:90:27: warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 88 |          an interface `B` has a requirement of `A`.
 89 |          */
 90 |         public static let requirementOf = Kind(rawValue: "requirementOf")
    |                           |- warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'requirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:98:27: warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 96 |          an interface `B` has an optional requirement of `A`.
 97 |          */
 98 |         public static let optionalRequirementOf = Kind(rawValue: "optionalRequirementOf")
    |                           |- warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalRequirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:109:27: warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
107 |          by an extension block symbol `A`.
108 |          */
109 |         public static let extensionTo = Kind(rawValue: "extensionTo")
    |                           |- warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'extensionTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |
111 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:120:27: warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
118 |          symbol `A`.
119 |          */
120 |         public static let references = Kind(rawValue: "references")
    |                           |- warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'references' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 |
122 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:132:27: warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
130 |          overload group containing `A`.
131 |          */
132 |         public static let overloadOf = Kind(rawValue: "overloadOf")
    |                           |- warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overloadOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     }
134 | }
[50/58] Compiling SymbolKit ReferenceLocation.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/ReferenceLocation.swift:16:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     /// A mixin for `references` relationships that indicates the source location of the reference.
15 |     public struct ReferenceLocation: Mixin, Codable, Equatable {
16 |         public static var mixinKey = "referenceLocation"
   |                           |- warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'mixinKey' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |         /// The source locations where the reference occurs.
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:117:20: warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 |         // Mixins
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
    |                    |- warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'swiftConstraints' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:118:20: warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
116 |         // Mixins
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
    |                    |- warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'sourceOrigin' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:119:20: warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
    |                    |- warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'referenceLocation' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:121:20: warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
    |                    |- warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mixinKeys' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |             CodingKeys.swiftConstraints.codingKey.stringValue: Self.swiftConstraints,
123 |             CodingKeys.sourceOrigin.codingKey.stringValue: Self.sourceOrigin,
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:31:27: warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 29 |          symbol `B` is the owner of a member symbol `A`.
 30 |          */
 31 |         public static let memberOf = Kind(rawValue: "memberOf")
    |                           |- warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'memberOf' with '@MainActor' 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 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:43:27: warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 41 |          symbol `B` is the owner of a member symbol `A`.
 42 |          */
 43 |         public static let optionalMemberOf = Kind(rawValue: "optionalMemberOf")
    |                           |- warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalMemberOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:54:27: warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 52 |          a symbol `B` that has a conformer `A`.
 53 |          */
 54 |         public static let conformsTo = Kind(rawValue: "conformsTo")
    |                           |- warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'conformsTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:65:27: warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 63 |          a symbol `B` is a base of another symbol `A`.
 64 |          */
 65 |         public static let inheritsFrom = Kind(rawValue: "inheritsFrom")
    |                           |- warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'inheritsFrom' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |
 67 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:74:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 72 |          an interface requirement `B` has a default implementation of `A`.
 73 |          */
 74 |         public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
    |                           |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:82:27: warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 80 |          a symbol `A` is the base of symbol `B`.
 81 |          */
 82 |         public static let overrides = Kind(rawValue: "overrides")
    |                           |- warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overrides' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:90:27: warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 88 |          an interface `B` has a requirement of `A`.
 89 |          */
 90 |         public static let requirementOf = Kind(rawValue: "requirementOf")
    |                           |- warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'requirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:98:27: warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 96 |          an interface `B` has an optional requirement of `A`.
 97 |          */
 98 |         public static let optionalRequirementOf = Kind(rawValue: "optionalRequirementOf")
    |                           |- warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalRequirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:109:27: warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
107 |          by an extension block symbol `A`.
108 |          */
109 |         public static let extensionTo = Kind(rawValue: "extensionTo")
    |                           |- warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'extensionTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |
111 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:120:27: warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
118 |          symbol `A`.
119 |          */
120 |         public static let references = Kind(rawValue: "references")
    |                           |- warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'references' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 |
122 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:132:27: warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
130 |          overload group containing `A`.
131 |          */
132 |         public static let overloadOf = Kind(rawValue: "overloadOf")
    |                           |- warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overloadOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     }
134 | }
[51/58] Compiling SymbolKit Relationship.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/ReferenceLocation.swift:16:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     /// A mixin for `references` relationships that indicates the source location of the reference.
15 |     public struct ReferenceLocation: Mixin, Codable, Equatable {
16 |         public static var mixinKey = "referenceLocation"
   |                           |- warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'mixinKey' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |         /// The source locations where the reference occurs.
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:117:20: warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 |         // Mixins
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
    |                    |- warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'swiftConstraints' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:118:20: warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
116 |         // Mixins
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
    |                    |- warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'sourceOrigin' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:119:20: warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
    |                    |- warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'referenceLocation' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:121:20: warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
    |                    |- warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mixinKeys' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |             CodingKeys.swiftConstraints.codingKey.stringValue: Self.swiftConstraints,
123 |             CodingKeys.sourceOrigin.codingKey.stringValue: Self.sourceOrigin,
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:31:27: warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 29 |          symbol `B` is the owner of a member symbol `A`.
 30 |          */
 31 |         public static let memberOf = Kind(rawValue: "memberOf")
    |                           |- warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'memberOf' with '@MainActor' 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 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:43:27: warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 41 |          symbol `B` is the owner of a member symbol `A`.
 42 |          */
 43 |         public static let optionalMemberOf = Kind(rawValue: "optionalMemberOf")
    |                           |- warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalMemberOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:54:27: warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 52 |          a symbol `B` that has a conformer `A`.
 53 |          */
 54 |         public static let conformsTo = Kind(rawValue: "conformsTo")
    |                           |- warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'conformsTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:65:27: warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 63 |          a symbol `B` is a base of another symbol `A`.
 64 |          */
 65 |         public static let inheritsFrom = Kind(rawValue: "inheritsFrom")
    |                           |- warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'inheritsFrom' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |
 67 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:74:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 72 |          an interface requirement `B` has a default implementation of `A`.
 73 |          */
 74 |         public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
    |                           |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:82:27: warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 80 |          a symbol `A` is the base of symbol `B`.
 81 |          */
 82 |         public static let overrides = Kind(rawValue: "overrides")
    |                           |- warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overrides' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:90:27: warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 88 |          an interface `B` has a requirement of `A`.
 89 |          */
 90 |         public static let requirementOf = Kind(rawValue: "requirementOf")
    |                           |- warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'requirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:98:27: warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 96 |          an interface `B` has an optional requirement of `A`.
 97 |          */
 98 |         public static let optionalRequirementOf = Kind(rawValue: "optionalRequirementOf")
    |                           |- warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalRequirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:109:27: warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
107 |          by an extension block symbol `A`.
108 |          */
109 |         public static let extensionTo = Kind(rawValue: "extensionTo")
    |                           |- warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'extensionTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |
111 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:120:27: warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
118 |          symbol `A`.
119 |          */
120 |         public static let references = Kind(rawValue: "references")
    |                           |- warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'references' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 |
122 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:132:27: warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
130 |          overload group containing `A`.
131 |          */
132 |         public static let overloadOf = Kind(rawValue: "overloadOf")
    |                           |- warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overloadOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     }
134 | }
[52/58] Compiling SymbolKit RelationshipKind.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/ReferenceLocation.swift:16:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     /// A mixin for `references` relationships that indicates the source location of the reference.
15 |     public struct ReferenceLocation: Mixin, Codable, Equatable {
16 |         public static var mixinKey = "referenceLocation"
   |                           |- warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'mixinKey' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |         /// The source locations where the reference occurs.
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:117:20: warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 |         // Mixins
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
    |                    |- warning: static property 'swiftConstraints' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'swiftConstraints' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:118:20: warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
116 |         // Mixins
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
    |                    |- warning: static property 'sourceOrigin' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'sourceOrigin' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:119:20: warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
117 |         static let swiftConstraints = Swift.GenericConstraints.relationshipCodingInfo
118 |         static let sourceOrigin = SourceOrigin.relationshipCodingInfo
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
    |                    |- warning: static property 'referenceLocation' is not concurrency-safe because non-'Sendable' type 'RelationshipMixinCodingInfo' (aka 'MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'referenceLocation' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/Relationship.swift:121:20: warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
119 |         static let referenceLocation = ReferenceLocation.relationshipCodingInfo
120 |
121 |         static let mixinKeys: [String: RelationshipMixinCodingInfo] = [
    |                    |- warning: static property 'mixinKeys' is not concurrency-safe because non-'Sendable' type '[String : RelationshipMixinCodingInfo]' (aka 'Dictionary<String, MixinCodingInformation<SymbolGraph.Relationship.CodingKeys>>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mixinKeys' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |             CodingKeys.swiftConstraints.codingKey.stringValue: Self.swiftConstraints,
123 |             CodingKeys.sourceOrigin.codingKey.stringValue: Self.sourceOrigin,
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:31:27: warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 29 |          symbol `B` is the owner of a member symbol `A`.
 30 |          */
 31 |         public static let memberOf = Kind(rawValue: "memberOf")
    |                           |- warning: static property 'memberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'memberOf' with '@MainActor' 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 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:43:27: warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 41 |          symbol `B` is the owner of a member symbol `A`.
 42 |          */
 43 |         public static let optionalMemberOf = Kind(rawValue: "optionalMemberOf")
    |                           |- warning: static property 'optionalMemberOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalMemberOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:54:27: warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 52 |          a symbol `B` that has a conformer `A`.
 53 |          */
 54 |         public static let conformsTo = Kind(rawValue: "conformsTo")
    |                           |- warning: static property 'conformsTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'conformsTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:65:27: warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 63 |          a symbol `B` is a base of another symbol `A`.
 64 |          */
 65 |         public static let inheritsFrom = Kind(rawValue: "inheritsFrom")
    |                           |- warning: static property 'inheritsFrom' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'inheritsFrom' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |
 67 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:74:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 72 |          an interface requirement `B` has a default implementation of `A`.
 73 |          */
 74 |         public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
    |                           |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:82:27: warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 80 |          a symbol `A` is the base of symbol `B`.
 81 |          */
 82 |         public static let overrides = Kind(rawValue: "overrides")
    |                           |- warning: static property 'overrides' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overrides' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:90:27: warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 88 |          an interface `B` has a requirement of `A`.
 89 |          */
 90 |         public static let requirementOf = Kind(rawValue: "requirementOf")
    |                           |- warning: static property 'requirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'requirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:98:27: warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 96 |          an interface `B` has an optional requirement of `A`.
 97 |          */
 98 |         public static let optionalRequirementOf = Kind(rawValue: "optionalRequirementOf")
    |                           |- warning: static property 'optionalRequirementOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'optionalRequirementOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:109:27: warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
107 |          by an extension block symbol `A`.
108 |          */
109 |         public static let extensionTo = Kind(rawValue: "extensionTo")
    |                           |- warning: static property 'extensionTo' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'extensionTo' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |
111 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:120:27: warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
118 |          symbol `A`.
119 |          */
120 |         public static let references = Kind(rawValue: "references")
    |                           |- warning: static property 'references' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'references' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 |
122 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:132:27: warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
130 |          overload group containing `A`.
131 |          */
132 |         public static let overloadOf = Kind(rawValue: "overloadOf")
    |                           |- warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overloadOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     }
134 | }
[53/58] Compiling SymbolKit GraphCollector.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:246: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
244 |         static let plistDetails = PlistDetails.symbolCodingInfo
245 |
246 |         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
247 |             CodingKeys.availability.codingKey.stringValue: Self.availability,
248 |             CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/UnifiedSymbolGraph/UnifiedSymbolGraph+Encodable.swift:44:30: warning: 'relationships' is deprecated: Use unifiedRelationships and orphanRelationships instead
42 |
43 |         try container.encode(Array(symbols.values), forKey: .symbols)
44 |         try container.encode(relationships, forKey: .relationships)
   |                              `- warning: 'relationships' is deprecated: Use unifiedRelationships and orphanRelationships instead
45 |     }
46 | }
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:132:27: warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
130 |          overload group containing `A`.
131 |          */
132 |         public static let overloadOf = Kind(rawValue: "overloadOf")
    |                           |- warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overloadOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     }
134 | }
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:74:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 72 |          an interface requirement `B` has a default implementation of `A`.
 73 |          */
 74 |         public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
    |                           |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/OverloadData.swift:19:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     /// about detected overloads of the symbol.
18 |     public struct OverloadData: Mixin {
19 |         public static var mixinKey: String = "overloadData"
   |                           |- warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'mixinKey' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |         /// The precise identifier of the generated "overload group" symbol that references this overload.
[54/58] Compiling SymbolKit UnifiedSymbol+Encodable.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:246: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
244 |         static let plistDetails = PlistDetails.symbolCodingInfo
245 |
246 |         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
247 |             CodingKeys.availability.codingKey.stringValue: Self.availability,
248 |             CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/UnifiedSymbolGraph/UnifiedSymbolGraph+Encodable.swift:44:30: warning: 'relationships' is deprecated: Use unifiedRelationships and orphanRelationships instead
42 |
43 |         try container.encode(Array(symbols.values), forKey: .symbols)
44 |         try container.encode(relationships, forKey: .relationships)
   |                              `- warning: 'relationships' is deprecated: Use unifiedRelationships and orphanRelationships instead
45 |     }
46 | }
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:132:27: warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
130 |          overload group containing `A`.
131 |          */
132 |         public static let overloadOf = Kind(rawValue: "overloadOf")
    |                           |- warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overloadOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     }
134 | }
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:74:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 72 |          an interface requirement `B` has a default implementation of `A`.
 73 |          */
 74 |         public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
    |                           |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/OverloadData.swift:19:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     /// about detected overloads of the symbol.
18 |     public struct OverloadData: Mixin {
19 |         public static var mixinKey: String = "overloadData"
   |                           |- warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'mixinKey' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |         /// The precise identifier of the generated "overload group" symbol that references this overload.
[55/58] Compiling SymbolKit UnifiedSymbol.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:246: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
244 |         static let plistDetails = PlistDetails.symbolCodingInfo
245 |
246 |         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
247 |             CodingKeys.availability.codingKey.stringValue: Self.availability,
248 |             CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/UnifiedSymbolGraph/UnifiedSymbolGraph+Encodable.swift:44:30: warning: 'relationships' is deprecated: Use unifiedRelationships and orphanRelationships instead
42 |
43 |         try container.encode(Array(symbols.values), forKey: .symbols)
44 |         try container.encode(relationships, forKey: .relationships)
   |                              `- warning: 'relationships' is deprecated: Use unifiedRelationships and orphanRelationships instead
45 |     }
46 | }
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:132:27: warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
130 |          overload group containing `A`.
131 |          */
132 |         public static let overloadOf = Kind(rawValue: "overloadOf")
    |                           |- warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overloadOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     }
134 | }
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:74:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 72 |          an interface requirement `B` has a default implementation of `A`.
 73 |          */
 74 |         public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
    |                           |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/OverloadData.swift:19:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     /// about detected overloads of the symbol.
18 |     public struct OverloadData: Mixin {
19 |         public static var mixinKey: String = "overloadData"
   |                           |- warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'mixinKey' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |         /// The precise identifier of the generated "overload group" symbol that references this overload.
[56/58] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:246: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
244 |         static let plistDetails = PlistDetails.symbolCodingInfo
245 |
246 |         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
247 |             CodingKeys.availability.codingKey.stringValue: Self.availability,
248 |             CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/UnifiedSymbolGraph/UnifiedSymbolGraph+Encodable.swift:44:30: warning: 'relationships' is deprecated: Use unifiedRelationships and orphanRelationships instead
42 |
43 |         try container.encode(Array(symbols.values), forKey: .symbols)
44 |         try container.encode(relationships, forKey: .relationships)
   |                              `- warning: 'relationships' is deprecated: Use unifiedRelationships and orphanRelationships instead
45 |     }
46 | }
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:132:27: warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
130 |          overload group containing `A`.
131 |          */
132 |         public static let overloadOf = Kind(rawValue: "overloadOf")
    |                           |- warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overloadOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     }
134 | }
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:74:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 72 |          an interface requirement `B` has a default implementation of `A`.
 73 |          */
 74 |         public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
    |                           |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/OverloadData.swift:19:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     /// about detected overloads of the symbol.
18 |     public struct OverloadData: Mixin {
19 |         public static var mixinKey: String = "overloadData"
   |                           |- warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'mixinKey' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |         /// The precise identifier of the generated "overload group" symbol that references this overload.
[57/58] Compiling SymbolKit UnifiedSymbolGraph+Overloads.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:246: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
244 |         static let plistDetails = PlistDetails.symbolCodingInfo
245 |
246 |         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
247 |             CodingKeys.availability.codingKey.stringValue: Self.availability,
248 |             CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/UnifiedSymbolGraph/UnifiedSymbolGraph+Encodable.swift:44:30: warning: 'relationships' is deprecated: Use unifiedRelationships and orphanRelationships instead
42 |
43 |         try container.encode(Array(symbols.values), forKey: .symbols)
44 |         try container.encode(relationships, forKey: .relationships)
   |                              `- warning: 'relationships' is deprecated: Use unifiedRelationships and orphanRelationships instead
45 |     }
46 | }
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:132:27: warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
130 |          overload group containing `A`.
131 |          */
132 |         public static let overloadOf = Kind(rawValue: "overloadOf")
    |                           |- warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overloadOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     }
134 | }
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:74:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 72 |          an interface requirement `B` has a default implementation of `A`.
 73 |          */
 74 |         public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
    |                           |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/OverloadData.swift:19:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     /// about detected overloads of the symbol.
18 |     public struct OverloadData: Mixin {
19 |         public static var mixinKey: String = "overloadData"
   |                           |- warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'mixinKey' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |         /// The precise identifier of the generated "overload group" symbol that references this overload.
[58/58] Compiling SymbolKit UnifiedSymbolGraph.swift
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/Symbol.swift:246: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
244 |         static let plistDetails = PlistDetails.symbolCodingInfo
245 |
246 |         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
247 |             CodingKeys.availability.codingKey.stringValue: Self.availability,
248 |             CodingKeys.declarationFragments.codingKey.stringValue: Self.declarationFragments,
/host/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
/host/spi-builder-workspace/Sources/SymbolKit/UnifiedSymbolGraph/UnifiedSymbolGraph+Encodable.swift:44:30: warning: 'relationships' is deprecated: Use unifiedRelationships and orphanRelationships instead
42 |
43 |         try container.encode(Array(symbols.values), forKey: .symbols)
44 |         try container.encode(relationships, forKey: .relationships)
   |                              `- warning: 'relationships' is deprecated: Use unifiedRelationships and orphanRelationships instead
45 |     }
46 | }
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:132:27: warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
130 |          overload group containing `A`.
131 |          */
132 |         public static let overloadOf = Kind(rawValue: "overloadOf")
    |                           |- warning: static property 'overloadOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'overloadOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     }
134 | }
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Relationship/RelationshipKind.swift:74:27: warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | extension SymbolGraph.Relationship {
 14 |     /// The kind of relationship.
 15 |     public struct Kind: Codable, RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Kind' conform to the 'Sendable' protocol
 16 |         public var rawValue: String
 17 |
    :
 72 |          an interface requirement `B` has a default implementation of `A`.
 73 |          */
 74 |         public static let defaultImplementationOf = Kind(rawValue: "defaultImplementationOf")
    |                           |- warning: static property 'defaultImplementationOf' is not concurrency-safe because non-'Sendable' type 'SymbolGraph.Relationship.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultImplementationOf' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |         /**
/host/spi-builder-workspace/Sources/SymbolKit/SymbolGraph/Symbol/OverloadData.swift:19:27: warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     /// about detected overloads of the symbol.
18 |     public struct OverloadData: Mixin {
19 |         public static var mixinKey: String = "overloadData"
   |                           |- warning: static property 'mixinKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'mixinKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'mixinKey' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |         /// The precise identifier of the generated "overload group" symbol that references this overload.
Build complete! (16.98s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SymbolKit",
  "name" : "SymbolKit",
  "path" : "/host/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"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:9d7dab235f2b0b46edadd73b1fb0c3b5323df02053420324a4a2f8ca89cb54a5
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.