Build Information
Successful build of Workspace, reference master (0e414d
), with Swift 6.0 for macOS (SPM) on 6 Nov 2024 01:23:50 UTC.
Swift 6 data race errors: 16
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Build Log
159 | return cached(in: &PackageRepository.configurationCaches[location]) {
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:373:24: warning: static property 'fellBackToUserLocalization' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
371 | }
372 |
373 | private static var fellBackToUserLocalization = false
| |- warning: static property 'fellBackToUserLocalization' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'fellBackToUserLocalization' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'fellBackToUserLocalization' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
374 | internal static func resetLocalizationFallback() {
375 | fellBackToUserLocalization = false
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
[1499/1575] Compiling WorkspaceImplementation SwiftLanguage.Casing.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/FileType.swift:35:24: warning: static property 'unsupportedFileTypesEncountered' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | // MARK: - Static Properties
34 |
35 | private static var unsupportedFileTypesEncountered: [String: URL] = [:]
| |- warning: static property 'unsupportedFileTypesEncountered' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'unsupportedFileTypesEncountered' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'unsupportedFileTypesEncountered' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | internal static func resetUnsupportedFileTypes() {
37 | unsupportedFileTypesEncountered = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/OperatingSystem.swift:26:25: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
24 | // MARK: - Static Properties
25 |
26 | internal static let current: Platform = {
| `- warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
27 | #if os(macOS)
28 | return .macOS
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceConfiguration/Context/Platform.swift:26:13: note: enum 'Platform' does not conform to the 'Sendable' protocol
24 | // @localization(🇬🇧EN) @localization(🇺🇸EN) @localization(🇨🇦EN) @crossReference(Platform)
25 | /// A platform.
26 | public enum Platform: String, CaseIterable, Codable, Comparable, OrderedEnumeration {
| `- note: enum 'Platform' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Cases
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/OperatingSystem.swift:18:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'WorkspaceConfiguration'
16 |
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 | import WorkspaceConfiguration
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'WorkspaceConfiguration'
19 |
20 | import SDGExternalProcess
:
24 | // MARK: - Static Properties
25 |
26 | internal static let current: Platform = {
| |- note: annotate 'current' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | #if os(macOS)
28 | return .macOS
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:56:24: warning: static property 'fileCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 | fileprivate var documentation: [StrictString: StrictString]?
55 | }
56 | private static var fileCaches: [URL: FileCache] = [:]
| |- warning: static property 'fileCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'fileCaches' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'fileCaches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | private var fileCache: FileCache {
58 | return cached(in: &PackageRepository.fileCaches[location]) {
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:127:24: warning: static property 'manifestCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 | }
127 | private static var manifestCaches: [URL: ManifestCache] = [:]
| |- warning: static property 'manifestCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'manifestCaches' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'manifestCaches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | private var manifestCache: ManifestCache {
129 | return cached(in: &PackageRepository.manifestCaches[location]) {
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:157:24: warning: static property 'configurationCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
155 | fileprivate var issueTemplates: [LocalizationIdentifier: [IssueTemplate]]?
156 | }
157 | private static var configurationCaches: [URL: ConfigurationCache] = [:]
| |- warning: static property 'configurationCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configurationCaches' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configurationCaches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
158 | private var configurationCache: ConfigurationCache {
159 | return cached(in: &PackageRepository.configurationCaches[location]) {
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:373:24: warning: static property 'fellBackToUserLocalization' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
371 | }
372 |
373 | private static var fellBackToUserLocalization = false
| |- warning: static property 'fellBackToUserLocalization' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'fellBackToUserLocalization' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'fellBackToUserLocalization' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
374 | internal static func resetLocalizationFallback() {
375 | fellBackToUserLocalization = false
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
[1500/1575] Compiling WorkspaceImplementation SwiftLanguage.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/FileType.swift:35:24: warning: static property 'unsupportedFileTypesEncountered' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | // MARK: - Static Properties
34 |
35 | private static var unsupportedFileTypesEncountered: [String: URL] = [:]
| |- warning: static property 'unsupportedFileTypesEncountered' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'unsupportedFileTypesEncountered' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'unsupportedFileTypesEncountered' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | internal static func resetUnsupportedFileTypes() {
37 | unsupportedFileTypesEncountered = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/OperatingSystem.swift:26:25: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
24 | // MARK: - Static Properties
25 |
26 | internal static let current: Platform = {
| `- warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
27 | #if os(macOS)
28 | return .macOS
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceConfiguration/Context/Platform.swift:26:13: note: enum 'Platform' does not conform to the 'Sendable' protocol
24 | // @localization(🇬🇧EN) @localization(🇺🇸EN) @localization(🇨🇦EN) @crossReference(Platform)
25 | /// A platform.
26 | public enum Platform: String, CaseIterable, Codable, Comparable, OrderedEnumeration {
| `- note: enum 'Platform' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Cases
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/OperatingSystem.swift:18:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'WorkspaceConfiguration'
16 |
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 | import WorkspaceConfiguration
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'WorkspaceConfiguration'
19 |
20 | import SDGExternalProcess
:
24 | // MARK: - Static Properties
25 |
26 | internal static let current: Platform = {
| |- note: annotate 'current' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | #if os(macOS)
28 | return .macOS
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:56:24: warning: static property 'fileCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 | fileprivate var documentation: [StrictString: StrictString]?
55 | }
56 | private static var fileCaches: [URL: FileCache] = [:]
| |- warning: static property 'fileCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'fileCaches' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'fileCaches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | private var fileCache: FileCache {
58 | return cached(in: &PackageRepository.fileCaches[location]) {
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:127:24: warning: static property 'manifestCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 | }
127 | private static var manifestCaches: [URL: ManifestCache] = [:]
| |- warning: static property 'manifestCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'manifestCaches' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'manifestCaches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | private var manifestCache: ManifestCache {
129 | return cached(in: &PackageRepository.manifestCaches[location]) {
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:157:24: warning: static property 'configurationCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
155 | fileprivate var issueTemplates: [LocalizationIdentifier: [IssueTemplate]]?
156 | }
157 | private static var configurationCaches: [URL: ConfigurationCache] = [:]
| |- warning: static property 'configurationCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configurationCaches' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configurationCaches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
158 | private var configurationCache: ConfigurationCache {
159 | return cached(in: &PackageRepository.configurationCaches[location]) {
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:373:24: warning: static property 'fellBackToUserLocalization' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
371 | }
372 |
373 | private static var fellBackToUserLocalization = false
| |- warning: static property 'fellBackToUserLocalization' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'fellBackToUserLocalization' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'fellBackToUserLocalization' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
374 | internal static func resetLocalizationFallback() {
375 | fellBackToUserLocalization = false
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
[1501/1575] Compiling WorkspaceImplementation SwiftPMUnavailableError.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/FileType.swift:35:24: warning: static property 'unsupportedFileTypesEncountered' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | // MARK: - Static Properties
34 |
35 | private static var unsupportedFileTypesEncountered: [String: URL] = [:]
| |- warning: static property 'unsupportedFileTypesEncountered' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'unsupportedFileTypesEncountered' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'unsupportedFileTypesEncountered' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | internal static func resetUnsupportedFileTypes() {
37 | unsupportedFileTypesEncountered = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/OperatingSystem.swift:26:25: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
24 | // MARK: - Static Properties
25 |
26 | internal static let current: Platform = {
| `- warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
27 | #if os(macOS)
28 | return .macOS
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceConfiguration/Context/Platform.swift:26:13: note: enum 'Platform' does not conform to the 'Sendable' protocol
24 | // @localization(🇬🇧EN) @localization(🇺🇸EN) @localization(🇨🇦EN) @crossReference(Platform)
25 | /// A platform.
26 | public enum Platform: String, CaseIterable, Codable, Comparable, OrderedEnumeration {
| `- note: enum 'Platform' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Cases
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/OperatingSystem.swift:18:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'WorkspaceConfiguration'
16 |
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 | import WorkspaceConfiguration
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'WorkspaceConfiguration'
19 |
20 | import SDGExternalProcess
:
24 | // MARK: - Static Properties
25 |
26 | internal static let current: Platform = {
| |- note: annotate 'current' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | #if os(macOS)
28 | return .macOS
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:56:24: warning: static property 'fileCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 | fileprivate var documentation: [StrictString: StrictString]?
55 | }
56 | private static var fileCaches: [URL: FileCache] = [:]
| |- warning: static property 'fileCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'fileCaches' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'fileCaches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | private var fileCache: FileCache {
58 | return cached(in: &PackageRepository.fileCaches[location]) {
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:127:24: warning: static property 'manifestCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 | }
127 | private static var manifestCaches: [URL: ManifestCache] = [:]
| |- warning: static property 'manifestCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'manifestCaches' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'manifestCaches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | private var manifestCache: ManifestCache {
129 | return cached(in: &PackageRepository.manifestCaches[location]) {
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:157:24: warning: static property 'configurationCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
155 | fileprivate var issueTemplates: [LocalizationIdentifier: [IssueTemplate]]?
156 | }
157 | private static var configurationCaches: [URL: ConfigurationCache] = [:]
| |- warning: static property 'configurationCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configurationCaches' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configurationCaches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
158 | private var configurationCache: ConfigurationCache {
159 | return cached(in: &PackageRepository.configurationCaches[location]) {
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:373:24: warning: static property 'fellBackToUserLocalization' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
371 | }
372 |
373 | private static var fellBackToUserLocalization = false
| |- warning: static property 'fellBackToUserLocalization' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'fellBackToUserLocalization' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'fellBackToUserLocalization' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
374 | internal static func resetLocalizationFallback() {
375 | fellBackToUserLocalization = false
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
[1502/1575] Compiling WorkspaceImplementation Output.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/FileType.swift:35:24: warning: static property 'unsupportedFileTypesEncountered' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | // MARK: - Static Properties
34 |
35 | private static var unsupportedFileTypesEncountered: [String: URL] = [:]
| |- warning: static property 'unsupportedFileTypesEncountered' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'unsupportedFileTypesEncountered' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'unsupportedFileTypesEncountered' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | internal static func resetUnsupportedFileTypes() {
37 | unsupportedFileTypesEncountered = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/OperatingSystem.swift:26:25: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
24 | // MARK: - Static Properties
25 |
26 | internal static let current: Platform = {
| `- warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
27 | #if os(macOS)
28 | return .macOS
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceConfiguration/Context/Platform.swift:26:13: note: enum 'Platform' does not conform to the 'Sendable' protocol
24 | // @localization(🇬🇧EN) @localization(🇺🇸EN) @localization(🇨🇦EN) @crossReference(Platform)
25 | /// A platform.
26 | public enum Platform: String, CaseIterable, Codable, Comparable, OrderedEnumeration {
| `- note: enum 'Platform' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Cases
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/OperatingSystem.swift:18:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'WorkspaceConfiguration'
16 |
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 | import WorkspaceConfiguration
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'WorkspaceConfiguration'
19 |
20 | import SDGExternalProcess
:
24 | // MARK: - Static Properties
25 |
26 | internal static let current: Platform = {
| |- note: annotate 'current' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | #if os(macOS)
28 | return .macOS
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:56:24: warning: static property 'fileCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 | fileprivate var documentation: [StrictString: StrictString]?
55 | }
56 | private static var fileCaches: [URL: FileCache] = [:]
| |- warning: static property 'fileCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'fileCaches' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'fileCaches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | private var fileCache: FileCache {
58 | return cached(in: &PackageRepository.fileCaches[location]) {
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:127:24: warning: static property 'manifestCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 | }
126 | }
127 | private static var manifestCaches: [URL: ManifestCache] = [:]
| |- warning: static property 'manifestCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'manifestCaches' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'manifestCaches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | private var manifestCache: ManifestCache {
129 | return cached(in: &PackageRepository.manifestCaches[location]) {
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:157:24: warning: static property 'configurationCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
155 | fileprivate var issueTemplates: [LocalizationIdentifier: [IssueTemplate]]?
156 | }
157 | private static var configurationCaches: [URL: ConfigurationCache] = [:]
| |- warning: static property 'configurationCaches' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configurationCaches' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configurationCaches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
158 | private var configurationCache: ConfigurationCache {
159 | return cached(in: &PackageRepository.configurationCaches[location]) {
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift:373:24: warning: static property 'fellBackToUserLocalization' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
371 | }
372 |
373 | private static var fellBackToUserLocalization = false
| |- warning: static property 'fellBackToUserLocalization' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'fellBackToUserLocalization' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'fellBackToUserLocalization' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
374 | internal static func resetLocalizationFallback() {
375 | fellBackToUserLocalization = false
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
[1503/1575] Compiling WorkspaceImplementation Resources 1.swift
[1504/1575] Compiling WorkspaceImplementation Resources 2.swift
[1505/1575] Compiling WorkspaceImplementation Resources 3.swift
[1506/1575] Compiling WorkspaceImplementation Resources 4.swift
[1507/1575] Compiling WorkspaceImplementation Resources 5.swift
[1508/1575] Compiling WorkspaceImplementation Resources 6.swift
[1509/1575] Compiling WorkspaceImplementation Resources 7.swift
[1510/1575] Compiling WorkspaceImplementation CustomTask.swift
[1511/1575] Compiling WorkspaceImplementation ProcessInfo.swift
[1512/1575] Compiling WorkspaceImplementation InterfaceLocalization + Parsing.swift
[1513/1575] Compiling WorkspaceImplementation PatternMatch.swift
[1514/1575] Compiling WorkspaceImplementation BlockCommentSyntax.swift
[1515/1575] Compiling WorkspaceImplementation Copyright.swift
[1516/1575] Compiling WorkspaceImplementation FileSyntax.swift
[1517/1575] Compiling WorkspaceImplementation CheckForUpdates.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1518/1575] Compiling WorkspaceImplementation Document.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1519/1575] Compiling WorkspaceImplementation Normalize.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1520/1575] Compiling WorkspaceImplementation ContinuousIntegrationJob + Options.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1521/1575] Compiling WorkspaceImplementation Options.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1522/1575] Compiling WorkspaceImplementation Proofread.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1523/1575] Compiling WorkspaceImplementation ProofreadGenerateXcodeProject.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1524/1575] Compiling WorkspaceImplementation ProofreadProofread.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1525/1575] Compiling WorkspaceImplementation Refresh.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1526/1575] Compiling WorkspaceImplementation RefreshAll.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1527/1575] Compiling WorkspaceImplementation RefreshContinuousIntegration.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1528/1575] Compiling WorkspaceImplementation RefreshExamples.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1529/1575] Compiling WorkspaceImplementation RefreshFileHeaders.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1530/1575] Compiling WorkspaceImplementation RefreshGit.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1531/1575] Compiling WorkspaceImplementation Article.swift
[1532/1575] Compiling WorkspaceImplementation CommandArticle.swift
[1533/1575] Compiling WorkspaceImplementation DocumentationBundle.swift
[1534/1575] Compiling WorkspaceImplementation LibraryArticle.swift
[1535/1575] Compiling WorkspaceImplementation ModuleDocumenationBundle.swift
[1536/1575] Compiling WorkspaceImplementation PackageDocumentationBundle.swift
[1537/1575] Compiling WorkspaceImplementation ElementSyntax.swift
[1538/1575] Compiling WorkspaceImplementation Markdown.swift
[1539/1575] Compiling WorkspaceImplementation PackageRepository + Documentation.swift
[1540/1575] Compiling WorkspaceImplementation DocumentationStatus.swift
[1541/1575] Compiling WorkspaceImplementation DocumentationContent.swift
[1542/1575] Compiling WorkspaceImplementation PackageRepository + Examples.swift
[1543/1575] Compiling WorkspaceImplementation PackageRepository + File Headers.swift
[1544/1575] Compiling WorkspaceImplementation PackageRepository + Git.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
[1545/1575] Compiling WorkspaceImplementation PackageRepository + GitHub.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
[1546/1575] Compiling WorkspaceImplementation Licence.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
[1547/1575] Compiling WorkspaceImplementation PackageRepository + Licence.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
[1548/1575] Compiling WorkspaceImplementation Configuration + Normalization.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
[1549/1575] Compiling WorkspaceImplementation PackageRepository + Normalization.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
[1550/1575] Compiling WorkspaceImplementation PackageRepository + Open Source.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
[1551/1575] Compiling WorkspaceImplementation PackageRepository + Proofreading.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
[1552/1575] Compiling WorkspaceImplementation ProofreadingReporter.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
[1553/1575] Compiling WorkspaceImplementation ProofreadingStatus.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
[1554/1575] Compiling WorkspaceImplementation CommandLineProofreadingReporter.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
[1555/1575] Compiling WorkspaceImplementation XcodeProofreadingReporter.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
[1556/1575] Compiling WorkspaceImplementation Rule.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:24:25: warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| `- warning: static property 'baseOperators' is not concurrency-safe because non-'Sendable' type 'OperatorTable' may have shared mutable state; this is an error in the Swift 6 language mode
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftOperators/OperatorTable.swift:22:15: note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
20 | /// and "folding" sequence expression syntax into a structured expression
21 | /// syntax tree.
22 | public struct OperatorTable {
| `- note: struct 'OperatorTable' does not conform to the 'Sendable' protocol
23 | var precedenceGraph: PrecedenceGraph = .init()
24 | var infixOperators: [OperatorName: Operator] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift:19:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
17 | #if !PLATFORM_NOT_SUPPORTED_BY_WORKSPACE_WORKSPACE
18 |
19 | import SwiftOperators
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftOperators'
20 | import SwiftParser
21 |
22 | extension OperatorTable {
23 |
24 | internal static let baseOperators: OperatorTable = {
| |- note: annotate 'baseOperators' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | var table = OperatorTable.standardOperators
26 | for entry in [
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift:24:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
18 | import SDGCommandLine
19 |
20 | internal final class XcodeProofreadingReporter: ProofreadingReporter {
| `- note: class 'XcodeProofreadingReporter' does not conform to the 'Sendable' protocol
21 |
22 | // MARK: - Static Properties
23 |
24 | internal static let `default` = XcodeProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'XcodeProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | // MARK: - Initialization
[1557/1575] Compiling WorkspaceImplementation Warning.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Warnings/WorkaroundReminders.swift:106:24: warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 |
106 | private static var dependencyVersionCache: [StrictString: SDGVersioning.Version?] = [:]
| |- warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dependencyVersionCache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'dependencyVersionCache' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | private static func currentVersion(
108 | of dependency: StrictString,
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1558/1575] Compiling WorkspaceImplementation ManualWarnings.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Warnings/WorkaroundReminders.swift:106:24: warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 |
106 | private static var dependencyVersionCache: [StrictString: SDGVersioning.Version?] = [:]
| |- warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dependencyVersionCache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'dependencyVersionCache' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | private static func currentVersion(
108 | of dependency: StrictString,
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1559/1575] Compiling WorkspaceImplementation WorkaroundReminders.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Warnings/WorkaroundReminders.swift:106:24: warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 |
106 | private static var dependencyVersionCache: [StrictString: SDGVersioning.Version?] = [:]
| |- warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dependencyVersionCache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'dependencyVersionCache' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | private static func currentVersion(
108 | of dependency: StrictString,
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1560/1575] Compiling WorkspaceImplementation PackageRepository + Resources.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Warnings/WorkaroundReminders.swift:106:24: warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 |
106 | private static var dependencyVersionCache: [StrictString: SDGVersioning.Version?] = [:]
| |- warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dependencyVersionCache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'dependencyVersionCache' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | private static func currentVersion(
108 | of dependency: StrictString,
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1561/1575] Compiling WorkspaceImplementation PackageRepository.Target.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Warnings/WorkaroundReminders.swift:106:24: warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 |
106 | private static var dependencyVersionCache: [StrictString: SDGVersioning.Version?] = [:]
| |- warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dependencyVersionCache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'dependencyVersionCache' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | private static func currentVersion(
108 | of dependency: StrictString,
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1562/1575] Compiling WorkspaceImplementation Resource.Constructor.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Warnings/WorkaroundReminders.swift:106:24: warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 |
106 | private static var dependencyVersionCache: [StrictString: SDGVersioning.Version?] = [:]
| |- warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dependencyVersionCache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'dependencyVersionCache' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | private static func currentVersion(
108 | of dependency: StrictString,
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1563/1575] Compiling WorkspaceImplementation Resource.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Warnings/WorkaroundReminders.swift:106:24: warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 |
106 | private static var dependencyVersionCache: [StrictString: SDGVersioning.Version?] = [:]
| |- warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dependencyVersionCache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'dependencyVersionCache' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | private static func currentVersion(
108 | of dependency: StrictString,
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1564/1575] Compiling WorkspaceImplementation PackageRepository + Scripts.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Warnings/WorkaroundReminders.swift:106:24: warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 |
106 | private static var dependencyVersionCache: [StrictString: SDGVersioning.Version?] = [:]
| |- warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dependencyVersionCache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'dependencyVersionCache' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | private static func currentVersion(
108 | of dependency: StrictString,
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1565/1575] Compiling WorkspaceImplementation Script.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Warnings/WorkaroundReminders.swift:106:24: warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 |
106 | private static var dependencyVersionCache: [StrictString: SDGVersioning.Version?] = [:]
| |- warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dependencyVersionCache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'dependencyVersionCache' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | private static func currentVersion(
108 | of dependency: StrictString,
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1566/1575] Compiling WorkspaceImplementation ContinuousIntegrationJob + Testing.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Warnings/WorkaroundReminders.swift:106:24: warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 |
106 | private static var dependencyVersionCache: [StrictString: SDGVersioning.Version?] = [:]
| |- warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dependencyVersionCache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'dependencyVersionCache' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | private static func currentVersion(
108 | of dependency: StrictString,
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1567/1575] Compiling WorkspaceImplementation PackageRepository + Testing.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Warnings/WorkaroundReminders.swift:106:24: warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 |
106 | private static var dependencyVersionCache: [StrictString: SDGVersioning.Version?] = [:]
| |- warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dependencyVersionCache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'dependencyVersionCache' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | private static func currentVersion(
108 | of dependency: StrictString,
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1568/1575] Compiling WorkspaceImplementation PackageRepository + Xcode.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Warnings/WorkaroundReminders.swift:106:24: warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 |
106 | private static var dependencyVersionCache: [StrictString: SDGVersioning.Version?] = [:]
| |- warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dependencyVersionCache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'dependencyVersionCache' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | private static func currentVersion(
108 | of dependency: StrictString,
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1569/1575] Compiling WorkspaceImplementation resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Warnings/WorkaroundReminders.swift:106:24: warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 | }
105 |
106 | private static var dependencyVersionCache: [StrictString: SDGVersioning.Version?] = [:]
| |- warning: static property 'dependencyVersionCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dependencyVersionCache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'dependencyVersionCache' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | private static func currentVersion(
108 | of dependency: StrictString,
/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift:30:25: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import WorkspaceLocalizations
25 |
26 | internal final class CommandLineProofreadingReporter: ProofreadingReporter {
| `- note: class 'CommandLineProofreadingReporter' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Static Properties
29 |
30 | internal static let `default` = CommandLineProofreadingReporter()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CommandLineProofreadingReporter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | // MARK: - Initialization
[1570/1577] Emitting module WorkspaceTool
[1571/1577] Compiling WorkspaceTool main.swift
[1571/1577] Write Objects.LinkFileList
[1573/1577] Linking arbeitsbereich
[1574/1577] Linking workspace
[1575/1577] Applying arbeitsbereich
[1576/1577] Applying workspace
Build complete! (192.01s)
warning: failed to retrieve search paths with pkg-config; maybe pkg-config is not installed
warning: couldn't find pc file for sqlite3
warning: 'swift-package-manager': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/PackageMetadata/CMakeLists.txt
warning: 'swift-package-manager': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/PackageCollections/CMakeLists.txt
warning: 'swift-package-manager': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/PackageCollectionsSigning/CMakeLists.txt
warning: 'swift-package-manager': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/PackageCollectionsModel/CMakeLists.txt
warning: couldn't find pc file for sqlite3
Build complete.
{
"dependencies" : [
{
"identity" : "sdgcornerstone",
"requirement" : {
"range" : [
{
"lower_bound" : "10.1.3",
"upper_bound" : "11.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/SDGGiesbrecht/SDGCornerstone"
},
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.6",
"upper_bound" : "1.1.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections"
},
{
"identity" : "sdgcommandline",
"requirement" : {
"range" : [
{
"lower_bound" : "3.0.6",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/SDGGiesbrecht/SDGCommandLine"
},
{
"identity" : "sdgswift",
"requirement" : {
"range" : [
{
"lower_bound" : "14.0.0",
"upper_bound" : "15.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/SDGGiesbrecht/SDGSwift"
},
{
"identity" : "swift-package-manager",
"requirement" : {
"exact" : [
"0.50800.0"
]
},
"type" : "sourceControl",
"url" : "https://github.com/SDGGiesbrecht/swift-package-manager"
},
{
"identity" : "swift-syntax",
"requirement" : {
"exact" : [
"0.50800.0"
]
},
"type" : "sourceControl",
"url" : "https://github.com/SDGGiesbrecht/swift-syntax"
},
{
"identity" : "swift-markdown",
"requirement" : {
"exact" : [
"0.50800.0"
]
},
"type" : "sourceControl",
"url" : "https://github.com/SDGGiesbrecht/swift-markdown"
},
{
"identity" : "swift-docc-symbolkit",
"requirement" : {
"exact" : [
"0.50800.0"
]
},
"type" : "sourceControl",
"url" : "https://github.com/SDGGiesbrecht/swift-docc-symbolkit"
},
{
"identity" : "swift-format",
"requirement" : {
"exact" : [
"0.50800.0"
]
},
"type" : "sourceControl",
"url" : "https://github.com/SDGGiesbrecht/swift-format"
},
{
"identity" : "sdgweb",
"requirement" : {
"range" : [
{
"lower_bound" : "6.1.2",
"upper_bound" : "7.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/SDGGiesbrecht/SDGWeb"
}
],
"manifest_display_name" : "Workspace",
"name" : "Workspace",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "WorkspaceConfiguration",
"targets" : [
"WorkspaceConfiguration"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "workspace",
"targets" : [
"WorkspaceTool"
],
"type" : {
"executable" : null
}
},
{
"name" : "arbeitsbereich",
"targets" : [
"WorkspaceTool"
],
"type" : {
"executable" : null
}
},
{
"name" : "cross_platform_tool",
"targets" : [
"cross_platform_tool"
],
"type" : {
"executable" : null
}
},
{
"name" : "WorkspaceConfigurationExample",
"targets" : [
"WorkspaceConfigurationExample"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "cross_platform_tool",
"module_type" : "SwiftTarget",
"name" : "cross_platform_tool",
"path" : "Tests/cross_platform_tool",
"product_memberships" : [
"cross_platform_tool"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"CrossPlatform"
],
"type" : "executable"
},
{
"c99name" : "WorkspaceTool",
"module_type" : "SwiftTarget",
"name" : "WorkspaceTool",
"path" : "Sources/WorkspaceTool",
"product_memberships" : [
"workspace",
"arbeitsbereich"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"WorkspaceImplementation"
],
"type" : "executable"
},
{
"c99name" : "WorkspaceTests",
"module_type" : "SwiftTarget",
"name" : "WorkspaceTests",
"path" : "Tests/WorkspaceTests",
"product_dependencies" : [
"SDGControlFlow",
"SDGLogic",
"SDGCollections",
"SDGText",
"SDGLocalization",
"SDGExternalProcess",
"SDGXCTestUtilities",
"SDGPersistenceTestUtilities",
"SDGLocalizationTestUtilities",
"SDGCommandLine",
"SDGCommandLineTestUtilities",
"SDGSwift",
"SDGSwiftDocumentation",
"SymbolKit",
"SDGHTML",
"SDGWeb"
],
"sources" : [
"APITests.swift",
"FastTestLocalization.swift",
"InternalTests.swift",
"MockCommand.swift",
"MockProject.swift",
"NurDeutsch.swift",
"OnlyBritish.swift",
"RepositoryRoot.swift",
"Test Helpers/Command.Output.swift",
"Test Helpers/CustomTask.swift",
"Test Helpers/PackageRepository.swift",
"Test Helpers/ProcessInfo.swift"
],
"target_dependencies" : [
"WorkspaceLocalizations",
"WorkspaceConfiguration",
"WorkspaceProjectConfiguration",
"WorkspaceImplementation"
],
"type" : "test"
},
{
"c99name" : "WorkspaceProjectConfiguration",
"module_type" : "SwiftTarget",
"name" : "WorkspaceProjectConfiguration",
"path" : "Sources/WorkspaceProjectConfiguration",
"product_dependencies" : [
"SDGCopySources"
],
"product_memberships" : [
"workspace",
"arbeitsbereich"
],
"sources" : [
"Placeholder.swift"
],
"target_dependencies" : [
"WorkspaceConfiguration"
],
"type" : "library"
},
{
"c99name" : "WorkspaceLocalizations",
"module_type" : "SwiftTarget",
"name" : "WorkspaceLocalizations",
"path" : "Sources/WorkspaceLocalizations",
"product_dependencies" : [
"SDGLocalization"
],
"product_memberships" : [
"WorkspaceConfiguration",
"workspace",
"arbeitsbereich",
"WorkspaceConfigurationExample"
],
"sources" : [
"ContentLocalization.swift",
"InterfaceLocalization.swift"
],
"type" : "library"
},
{
"c99name" : "WorkspaceImplementation",
"module_type" : "SwiftTarget",
"name" : "WorkspaceImplementation",
"path" : "Sources/WorkspaceImplementation",
"product_dependencies" : [
"SDGControlFlow",
"SDGLogic",
"SDGMathematics",
"SDGCollections",
"SDGText",
"SDGLocalization",
"SDGCalendar",
"SDGExternalProcess",
"SDGVersioning",
"OrderedCollections",
"SDGCommandLine",
"SDGExportedCommandLineInterface",
"SDGSwiftConfigurationLoading",
"SDGSwift",
"SDGSwiftPackageManager",
"SDGSwiftSource",
"SDGSwiftDocumentation",
"SDGXcode",
"SwiftPMDataModel-auto",
"SwiftSyntax",
"SwiftSyntaxParser",
"SwiftOperators",
"SwiftParser",
"Markdown",
"SymbolKit",
"SwiftFormatConfiguration",
"SwiftFormat",
"SDGHTML",
"SDGCSS"
],
"product_memberships" : [
"workspace",
"arbeitsbereich"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Licence/Licences/Apache 2.0.md",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Licence/Licences/Copyright.md",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Licence/Licences/GNU General Public 3.0.md",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Licence/Licences/MIT.md",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Licence/Licences/Unlicense.md",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Xcode/Project Components/Proofread Scheme.xcscheme",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceImplementation/Tasks/Xcode/Project Components/ProofreadProject.pbxproj",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"Interface/CheckForUpdates.swift",
"Interface/Document.swift",
"Interface/Normalize.swift",
"Interface/Options/ContinuousIntegrationJob + Options.swift",
"Interface/Options/Options.swift",
"Interface/Proofread/Proofread.swift",
"Interface/Proofread/ProofreadGenerateXcodeProject.swift",
"Interface/Proofread/ProofreadProofread.swift",
"Interface/Refresh/Refresh.swift",
"Interface/Refresh/RefreshAll.swift",
"Interface/Refresh/RefreshContinuousIntegration.swift",
"Interface/Refresh/RefreshExamples.swift",
"Interface/Refresh/RefreshFileHeaders.swift",
"Interface/Refresh/RefreshGit.swift",
"Interface/Refresh/RefreshGitHub.swift",
"Interface/Refresh/RefreshInheritedDocumentation.swift",
"Interface/Refresh/RefreshLicence.swift",
"Interface/Refresh/RefreshReadMe.swift",
"Interface/Refresh/RefreshResources.swift",
"Interface/Refresh/RefreshScripts.swift",
"Interface/Test.swift",
"Interface/Validate/Validate.swift",
"Interface/Validate/ValidateAll.swift",
"Interface/Validate/ValidateBuild.swift",
"Interface/Validate/ValidateDocumentationCoverage.swift",
"Interface/Validate/ValidateTestCoverage.swift",
"Interface/Workspace.swift",
"Resources.swift",
"Resources/Resources 1.swift",
"Resources/Resources 2.swift",
"Resources/Resources 3.swift",
"Resources/Resources 4.swift",
"Resources/Resources 5.swift",
"Resources/Resources 6.swift",
"Resources/Resources 7.swift",
"Shared/Custom Tasks/CustomTask.swift",
"Shared/Environment/ProcessInfo.swift",
"Shared/Parsing/InterfaceLocalization + Parsing.swift",
"Shared/Parsing/PatternMatch.swift",
"Shared/Project/BlockCommentSyntax.swift",
"Shared/Project/Copyright.swift",
"Shared/Project/FileSyntax.swift",
"Shared/Project/FileType.swift",
"Shared/Project/LineCommentSyntax.swift",
"Shared/Project/OperatingSystem.swift",
"Shared/Project/PackageRepository.swift",
"Shared/Project/ProductType.swift",
"Shared/Project/StringFamily.swift",
"Shared/Project/TextFile.swift",
"Shared/Project/Version.swift",
"Shared/Project/WorkspaceConfiguration.swift",
"Shared/Swift/OperatorTable.swift",
"Shared/Swift/SwiftLanguage.Casing.swift",
"Shared/Swift/SwiftLanguage.swift",
"Shared/Swift/SwiftPMUnavailableError.swift",
"Shared/Validation/Output.swift",
"Shared/Validation/ReportSection.swift",
"Shared/Validation/ValidationStatus.swift",
"SleeplessMain.swift",
"Tasks/Continuous Integration/ContinuousIntegrationJob.swift",
"Tasks/Continuous Integration/PackageRepository + Continuous Integration.swift",
"Tasks/Documentation/API/PackageAPI.swift",
"Tasks/Documentation/API/SymbolDocumentation.swift",
"Tasks/Documentation/API/SymbolGraph.LineList.swift",
"Tasks/Documentation/API/SymbolGraph.Symbol.KindIdentifier.swift",
"Tasks/Documentation/API/SymbolLike.swift",
"Tasks/Documentation/Command Interface/CommandInterface.swift",
"Tasks/Documentation/Command Interface/CommandInterfaceInformation.swift",
"Tasks/Documentation/Command Interface/PackageCLI.swift",
"Tasks/Documentation/Documentation Bundle/Article.swift",
"Tasks/Documentation/Documentation Bundle/CommandArticle.swift",
"Tasks/Documentation/Documentation Bundle/DocumentationBundle.swift",
"Tasks/Documentation/Documentation Bundle/LibraryArticle.swift",
"Tasks/Documentation/Documentation Bundle/ModuleDocumenationBundle.swift",
"Tasks/Documentation/Documentation Bundle/PackageDocumentationBundle.swift",
"Tasks/Documentation/HTML Syntax/ElementSyntax.swift",
"Tasks/Documentation/Markdown Syntax/Markdown.swift",
"Tasks/Documentation/PackageRepository + Documentation.swift",
"Tasks/Documentation/Status/DocumentationStatus.swift",
"Tasks/Documentation/Swift Syntax/DocumentationContent.swift",
"Tasks/Examples/PackageRepository + Examples.swift",
"Tasks/File Headers/PackageRepository + File Headers.swift",
"Tasks/Git/PackageRepository + Git.swift",
"Tasks/GitHub/PackageRepository + GitHub.swift",
"Tasks/Licence/Licence.swift",
"Tasks/Licence/PackageRepository + Licence.swift",
"Tasks/Normalization/Configuration + Normalization.swift",
"Tasks/Normalization/PackageRepository + Normalization.swift",
"Tasks/Open Source/PackageRepository + Open Source.swift",
"Tasks/Proofreading/PackageRepository + Proofreading.swift",
"Tasks/Proofreading/ProofreadingReporter.swift",
"Tasks/Proofreading/ProofreadingStatus.swift",
"Tasks/Proofreading/Reporters/CommandLineProofreadingReporter.swift",
"Tasks/Proofreading/Reporters/XcodeProofreadingReporter.swift",
"Tasks/Proofreading/Rule.swift",
"Tasks/Proofreading/RuleProtocol.swift",
"Tasks/Proofreading/Rules/Documentation/SyntaxColouring.swift",
"Tasks/Proofreading/Rules/Functionality/AccessControl.swift",
"Tasks/Proofreading/Rules/Functionality/ClassFinality.swift",
"Tasks/Proofreading/Rules/Functionality/CompatibilityCharacters.swift",
"Tasks/Proofreading/Rules/Functionality/ExplicitTypes.swift",
"Tasks/Proofreading/Rules/Functionality/HeadingLevels.swift",
"Tasks/Proofreading/Rules/Functionality/Mark.swift",
"Tasks/Proofreading/Rules/Functionality/ParameterDocumentation.swift",
"Tasks/Proofreading/Rules/Intentional/MissingImplementation.swift",
"Tasks/Proofreading/Rules/ProofreadingRule.swift",
"Tasks/Proofreading/Rules/Source Code Style/Asterisms.swift",
"Tasks/Proofreading/Rules/Source Code Style/CalloutCasing.swift",
"Tasks/Proofreading/Rules/Source Code Style/ClosureSignaturePosition.swift",
"Tasks/Proofreading/Rules/Source Code Style/ListSeparation.swift",
"Tasks/Proofreading/Rules/Source Code Style/MarkdownHeadings.swift",
"Tasks/Proofreading/Rules/Source Code Style/ParameterGrouping.swift",
"Tasks/Proofreading/Rules/Text Style/Bullets.swift",
"Tasks/Proofreading/Rules/Text Style/Unicode.swift",
"Tasks/Proofreading/Setting.swift",
"Tasks/Proofreading/StyleViolation.Location.swift",
"Tasks/Proofreading/StyleViolation.swift",
"Tasks/Proofreading/SyntaxProtocol.swift",
"Tasks/Proofreading/SyntaxRule.swift",
"Tasks/Proofreading/SyntaxScanner.swift",
"Tasks/Proofreading/TextRule.swift",
"Tasks/Proofreading/Warning.swift",
"Tasks/Proofreading/Warnings/ManualWarnings.swift",
"Tasks/Proofreading/Warnings/WorkaroundReminders.swift",
"Tasks/Resources/PackageRepository + Resources.swift",
"Tasks/Resources/PackageRepository.Target.swift",
"Tasks/Resources/Resource.Constructor.swift",
"Tasks/Resources/Resource.swift",
"Tasks/Scripts/PackageRepository + Scripts.swift",
"Tasks/Scripts/Script.swift",
"Tasks/Testing/ContinuousIntegrationJob + Testing.swift",
"Tasks/Testing/PackageRepository + Testing.swift",
"Tasks/Xcode/PackageRepository + Xcode.swift"
],
"target_dependencies" : [
"WorkspaceLocalizations",
"WorkspaceConfiguration",
"WorkspaceProjectConfiguration"
],
"type" : "library"
},
{
"c99name" : "WorkspaceConfigurationTests",
"module_type" : "SwiftTarget",
"name" : "WorkspaceConfigurationTests",
"path" : "Tests/WorkspaceConfigurationTests",
"product_dependencies" : [
"SDGXCTestUtilities",
"SDGLocalizationTestUtilities"
],
"sources" : [
"APITests.swift"
],
"target_dependencies" : [
"WorkspaceConfiguration",
"WorkspaceProjectConfiguration",
"WorkspaceLocalizations"
],
"type" : "test"
},
{
"c99name" : "WorkspaceConfigurationExample",
"module_type" : "SwiftTarget",
"name" : "WorkspaceConfigurationExample",
"path" : "Tests/WorkspaceConfigurationExample",
"product_dependencies" : [
"SDGControlFlow"
],
"product_memberships" : [
"WorkspaceConfigurationExample"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"WorkspaceConfiguration"
],
"type" : "executable"
},
{
"c99name" : "WorkspaceConfiguration",
"module_type" : "SwiftTarget",
"name" : "WorkspaceConfiguration",
"path" : "Sources/WorkspaceConfiguration",
"product_dependencies" : [
"SDGControlFlow",
"SDGLogic",
"SDGCollections",
"SDGText",
"SDGPersistence",
"SDGLocalization",
"SDGCalendar",
"SDGVersioning",
"SDGSwiftConfiguration",
"SwiftFormatConfiguration"
],
"product_memberships" : [
"WorkspaceConfiguration",
"workspace",
"arbeitsbereich",
"WorkspaceConfigurationExample"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceConfiguration/Configuration/GitHub/Contributing Template.txt",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceConfiguration/Configuration/GitHub/Mitwirken Vorlage.txt",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/WorkspaceConfiguration/Configuration/GitHub/Pull Request Template.txt",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"Configuration/ContinousIntegrationConfiguration.swift",
"Configuration/CustomTask.swift",
"Configuration/Documentation/APIDocumentationConfiguration.swift",
"Configuration/Documentation/DocumentationConfiguration.swift",
"Configuration/Documentation/ReadMeConfiguration.swift",
"Configuration/Documentation/RelatedProjectEntry.swift",
"Configuration/FileHeaderConfiguration.swift",
"Configuration/GitConfiguration.swift",
"Configuration/GitHub/GitHubConfiguration.swift",
"Configuration/GitHub/IssueTemplate.swift",
"Configuration/GitHub/ProvidedIssueTemplate.swift",
"Configuration/Licence/Licence.swift",
"Configuration/Licence/LicenceConfiguration.swift",
"Configuration/Proofreading/ProofreadingConfiguration.swift",
"Configuration/Proofreading/ProofreadingRule.swift",
"Configuration/Proofreading/ProofreadingRuleCategory.swift",
"Configuration/Proofreading/SwiftFormatConfiguration.swift",
"Configuration/Proofreading/UnicodeRuleScope.swift",
"Configuration/RepositoryConfiguration.swift",
"Configuration/Testing/TestCoverageExemptionToken.swift",
"Configuration/Testing/TestCoverageExemptionTokenScope.swift",
"Configuration/Testing/TestingConfiguration.swift",
"Configuration/WorkspaceConfiguration.swift",
"Context/PackageManifest.swift",
"Context/Platform.swift",
"Context/Product.swift",
"Context/ProductType.swift",
"Context/WorkspaceContext.swift",
"Exports.swift",
"General/Array.swift",
"General/Dictionary.swift",
"General/LazyOption.swift",
"General/LocalizationIdentifier.swift",
"General/Markdown.swift",
"Resources.swift",
"Resources/Resources 1.swift",
"Resources/Resources 2.swift",
"Resources/Resources 3.swift"
],
"target_dependencies" : [
"WorkspaceLocalizations"
],
"type" : "library"
},
{
"c99name" : "CrossPlatformTests",
"module_type" : "SwiftTarget",
"name" : "CrossPlatformTests",
"path" : "Tests/CrossPlatformTests",
"product_dependencies" : [
"SDGPersistence",
"SDGExternalProcess",
"SDGVersioning",
"SDGSwift",
"SDGXCTestUtilities",
"SDGPersistenceTestUtilities"
],
"sources" : [
"CrossPlatformTests.swift"
],
"target_dependencies" : [
"CrossPlatform"
],
"type" : "test"
},
{
"c99name" : "CrossPlatformC",
"module_type" : "ClangTarget",
"name" : "CrossPlatformC",
"path" : "Tests/CrossPlatformC",
"product_memberships" : [
"cross_platform_tool"
],
"sources" : [
"CrossPlatform.c"
],
"type" : "library"
},
{
"c99name" : "CrossPlatform",
"module_type" : "SwiftTarget",
"name" : "CrossPlatform",
"path" : "Tests/CrossPlatform",
"product_dependencies" : [
"SwiftFormatConfiguration"
],
"product_memberships" : [
"cross_platform_tool"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/CrossPlatform/Resource.txt",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"CrossPlatform.swift",
"Resources.swift",
"Resources/Resources 1.swift"
],
"target_dependencies" : [
"CrossPlatformC"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.