The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of SwiftPM, reference main (1d9a8f), with Swift 6.1 for macOS (SPM) on 16 Jun 2025 19:46:35 UTC.

Swift 6 data race errors: 46

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64

Build Log

 23 |
    :
499 |     public struct RepositoryHandle: Sendable {
500 |         /// The manager this repository is owned by.
501 |         private unowned let manager: RepositoryManager
    |                             `- warning: stored property 'manager' of 'Sendable'-conforming struct 'RepositoryHandle' has non-sendable type 'RepositoryManager'; this is an error in the Swift 6 language mode
502 |
503 |         /// The repository specifier.
[1074/1169] Compiling SWBMacro MacroConditionParameter.swift
[1075/1169] Compiling SWBMacro MacroConditionSet.swift
[1076/1169] Compiling SWBMacro MacroExpressionDiagnostic.swift
[1077/1169] Compiling SWBMacro MacroExpressionParsing.swift
[1078/1169] Compiling SWBMacro MacroConfigFileDiagnostic.swift
[1079/1169] Compiling SWBMacro MacroConfigFileParser.swift
[1080/1169] Compiling SWBMacro MacroDeclaration.swift
[1081/1169] Compiling SWBMacro MacroEvaluationProgram.swift
[1082/1169] Compiling SWBProjectModel PIFGenerationModel.swift
[1083/1169] Compiling SWBProjectModel IDESwiftPackageExtensions.swift
[1084/1169] Emitting module PackageFingerprint
[1085/1169] Compiling PackageFingerprint FilePackageFingerprintStorage.swift
[1086/1169] Compiling SWBMacro MacroValueAssignmentTable.swift
[1087/1169] Compiling PackageSigning embedded_resources.swift
[1088/1169] Compiling PackageSigning X509Extensions.swift
[1089/1169] Emitting module PackageSigning
[1090/1169] Emitting module SWBMacro
[1091/1169] Compiling SWBMacro MacroCondition.swift
[1092/1169] Compiling SWBMacro MacroConditionExpression.swift
[1093/1318] Compiling SourceControl GitRepository.swift
/Users/admin/builder/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:90:17: warning: stored property 'repositoryCache' of 'Sendable'-conforming struct 'GitRepositoryProvider' has non-sendable type 'ThreadSafeKeyValueStore<String, any Repository>'; this is an error in the Swift 6 language mode
  88 |     private let git: GitShellHelper
  89 |
  90 |     private var repositoryCache = ThreadSafeKeyValueStore<String, Repository>()
     |                 `- warning: stored property 'repositoryCache' of 'Sendable'-conforming struct 'GitRepositoryProvider' has non-sendable type 'ThreadSafeKeyValueStore<String, any Repository>'; this is an error in the Swift 6 language mode
  91 |
  92 |     public init() {
/Users/admin/builder/spi-builder-workspace/Sources/SourceControl/Repository.swift:167:17: note: protocol 'Repository' does not conform to the 'Sendable' protocol
165 | /// although the expectation is that implementations should throw or crash when
166 | /// an inconsistency can be detected.
167 | public protocol Repository {
    |                 `- note: protocol 'Repository' does not conform to the 'Sendable' protocol
168 |     /// Get the list of tags in the repository.
169 |     func getTags() throws -> [String]
/Users/admin/builder/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:1265:29: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
1263 |     )
1264 |     """#
1265 |     static let regex = try? RegEx(pattern: pattern)
     |                             `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
1266 |
1267 |     init?(from string: String) {
[1094/1318] Emitting module SourceControl
/Users/admin/builder/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:90:17: warning: stored property 'repositoryCache' of 'Sendable'-conforming struct 'GitRepositoryProvider' has non-sendable type 'ThreadSafeKeyValueStore<String, any Repository>'; this is an error in the Swift 6 language mode
  88 |     private let git: GitShellHelper
  89 |
  90 |     private var repositoryCache = ThreadSafeKeyValueStore<String, Repository>()
     |                 `- warning: stored property 'repositoryCache' of 'Sendable'-conforming struct 'GitRepositoryProvider' has non-sendable type 'ThreadSafeKeyValueStore<String, any Repository>'; this is an error in the Swift 6 language mode
  91 |
  92 |     public init() {
/Users/admin/builder/spi-builder-workspace/Sources/SourceControl/Repository.swift:167:17: note: protocol 'Repository' does not conform to the 'Sendable' protocol
165 | /// although the expectation is that implementations should throw or crash when
166 | /// an inconsistency can be detected.
167 | public protocol Repository {
    |                 `- note: protocol 'Repository' does not conform to the 'Sendable' protocol
168 |     /// Get the list of tags in the repository.
169 |     func getTags() throws -> [String]
/Users/admin/builder/spi-builder-workspace/Sources/SourceControl/GitRepository.swift:1265:29: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
1263 |     )
1264 |     """#
1265 |     static let regex = try? RegEx(pattern: pattern)
     |                             `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
1266 |
1267 |     init?(from string: String) {
/Users/admin/builder/spi-builder-workspace/Sources/SourceControl/RepositoryManager.swift:501:29: warning: stored property 'manager' of 'Sendable'-conforming struct 'RepositoryHandle' has non-sendable type 'RepositoryManager'; this is an error in the Swift 6 language mode
 19 |
 20 | /// Manages a collection of bare repositories.
 21 | public class RepositoryManager: Cancellable {
    |              `- note: class 'RepositoryManager' does not conform to the 'Sendable' protocol
 22 |     public typealias Delegate = RepositoryManagerDelegate
 23 |
    :
499 |     public struct RepositoryHandle: Sendable {
500 |         /// The manager this repository is owned by.
501 |         private unowned let manager: RepositoryManager
    |                             `- warning: stored property 'manager' of 'Sendable'-conforming struct 'RepositoryHandle' has non-sendable type 'RepositoryManager'; this is an error in the Swift 6 language mode
502 |
503 |         /// The repository specifier.
[1095/1358] Emitting module PackageCollections
[1096/1360] Compiling PackageLoading Target+PkgConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/PackageLoading/Target+PkgConfig.swift:330:25: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
328 | /// See https://github.com/swiftlang/swift-package-manager/issues/6439 for details.
329 | public func patchSDKPaths(in flags: [String], to sdkRootPath: AbsolutePath) throws -> [String] {
330 |     let sdkRegex = try! RegEx(pattern: #"^.*\.sdk(\/.*|$)"#)
    |                         `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
331 |
332 |     return try ["-I", "-L"].reduce(flags) { (flags, flag) in
[1097/1360] Compiling PackageLoading RegistryReleaseMetadataSerialization.swift
[1098/1360] Compiling PackageLoading TargetSourcesBuilder.swift
[1099/1361] Compiling PackageCollections Trie.swift
[1100/1361] Compiling PackageCollections Utility.swift
[1101/1361] Compiling PackageCollections API.swift
[1102/1361] Compiling PackageCollections CVE.swift
[1103/1361] Compiling PackageCollections Collection.swift
[1104/1361] Compiling PackageCollections License.swift
[1105/1361] Compiling PackageCollections PackageList.swift
[1106/1361] Compiling PackageCollections PackageTypes.swift
[1107/1361] Compiling PackageCollections PackageCollectionsStorage.swift
[1108/1361] Compiling PackageCollections SQLitePackageCollectionsStorage.swift
[1109/1361] Compiling PackageLoading ToolsVersionParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/PackageLoading/ToolsVersionParser.swift:624:26: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
622 |             throw ToolsVersionParser.Error.inaccessiblePackage(path: packagePath, reason: String(describing: error))
623 |         }
624 |         let regex = try! RegEx(pattern: #"^Package@swift-(\d+)(?:\.(\d+))?(?:\.(\d+))?.swift$"#)
    |                          `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
625 |
626 |         // Collect all version-specific manifests at the given package path.
[1110/1361] Compiling PackageCollections Search.swift
[1111/1361] Compiling PackageCollections TargetListResult.swift
[1112/1361] Compiling PackageCollections PackageCollections+CertificatePolicy.swift
[1113/1361] Compiling PackageCollections PackageCollections+Configuration.swift
[1114/1361] Compiling PackageCollections PackageCollections+Storage.swift
[1115/1361] Compiling PackageCollections PackageCollections+Validation.swift
[1116/1361] Compiling PackageCollections PackageCollections.swift
[1117/1361] Compiling PackageCollections PackageIndex+Configuration.swift
[1118/1361] Compiling PackageCollections PackageIndex.swift
[1119/1361] Compiling PackageCollections PackageCollectionProvider.swift
[1120/1361] Compiling PackageCollections PackageMetadataProvider.swift
[1121/1361] Compiling PackageCollections FilePackageCollectionsSourcesStorage.swift
[1122/1361] Compiling PackageCollections PackageCollectionsSourcesStorage.swift
[1123/1361] Compiling PackageCollections PackageIndexAndCollections.swift
[1124/1361] Compiling PackageCollections GitHubPackageMetadataProvider.swift
[1125/1361] Compiling PackageCollections JSONPackageCollectionProvider.swift
[1126/1361] Compiling PackageLoading Platform.swift
/Users/admin/builder/spi-builder-workspace/Sources/PackageLoading/ManifestJSONParser.swift:257:53: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
255 |
256 |     /// Looks for Xcode-style build setting macros "$()".
257 |     fileprivate static let invalidValueRegex = try! RegEx(pattern: #"(\$\(.*?\))"#)
    |                                                     `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
258 | }
259 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageLoading/ManifestJSONParser.swift:257:53: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
255 |
256 |     /// Looks for Xcode-style build setting macros "$()".
257 |     fileprivate static let invalidValueRegex = try! RegEx(pattern: #"(\$\(.*?\))"#)
    |                                                     `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
258 | }
259 |
[1133/1361] Emitting module PackageLoading
/Users/admin/builder/spi-builder-workspace/Sources/PackageLoading/ManifestJSONParser.swift:257:53: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
255 |
256 |     /// Looks for Xcode-style build setting macros "$()".
257 |     fileprivate static let invalidValueRegex = try! RegEx(pattern: #"(\$\(.*?\))"#)
    |                                                     `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
258 | }
259 |
[1138/1396] Compiling SWBCore ActivityReporting.swift
[1139/1396] Compiling SWBCore DeviceFamily.swift
[1140/1396] Compiling SWBCore InterfaceBuilderShared.swift
[1141/1396] Compiling SWBCore BuildFileFilteringContext.swift
[1142/1396] Compiling SWBCore BuildFileResolution.swift
[1143/1396] Compiling SWBCore BuildParameters.swift
[1144/1396] Compiling SWBCore BuildRequest.swift
[1145/1396] Compiling SWBCore BuildRequestContext.swift
[1146/1396] Compiling SWBCore BuildRuleAction.swift
[1147/1396] Compiling SWBCore BuildRuleCondition.swift
[1148/1396] Compiling SWBCore BuildRuleSet.swift
[1149/1396] Compiling SWBCore CapturedBuildInfo.swift
[1150/1396] Compiling SWBCore ModuleVerifierFilenameMap.swift
[1151/1396] Compiling SWBCore ModuleVerifierFramework.swift
[1152/1396] Compiling SWBCore ModuleVerifierHeader.swift
[1153/1396] Compiling SWBCore ModuleVerifierLanguage.swift
[1154/1396] Compiling SWBCore ModuleVerifierModuleMap.swift
[1155/1412] Compiling PackageGraph PackageModel+Extensions.swift
[1156/1412] Compiling PackageGraph PackageRequirement.swift
[1157/1412] Compiling PackageGraph DependencyResolutionNode.swift
[1158/1415] Compiling PackageGraph DependencyResolverBinding.swift
[1159/1415] Compiling PackageGraph DependencyResolverDelegate.swift
[1160/1415] Compiling PackageGraph DependencyResolverError.swift
[1161/1415] Emitting module PackageGraph
[1162/1415] Compiling PackageRegistry SigningEntityTOFU.swift
[1163/1415] Compiling PackageRegistry SignatureValidation.swift
[1164/1415] Compiling PackageRegistry RegistryDownloadsManager.swift
[1165/1415] Compiling PackageGraph BoundVersion.swift
[1166/1415] Compiling PackageGraph DependencyMirrors.swift
[1167/1415] Compiling PackageGraph Diagnostics.swift
[1168/1415] Compiling PackageGraph GraphLoadingNode.swift
[1169/1415] Compiling PackageGraph ModuleAliasTracker.swift
[1170/1415] Compiling PackageGraph ModulesGraph+Loading.swift
[1171/1415] Compiling PackageGraph PlatformVersionProvider.swift
[1172/1415] Compiling PackageGraph Assignment.swift
[1173/1415] Compiling PackageGraph ContainerProvider.swift
[1174/1415] Compiling PackageGraph DiagnosticReportBuilder.swift
[1175/1415] Compiling PackageGraph Incompatibility.swift
[1176/1415] Compiling PackageGraph PartialSolution.swift
[1177/1415] Compiling PackageGraph PubGrubDependencyResolver.swift
[1178/1415] Compiling PackageGraph PubGrubPackageContainer.swift
[1179/1415] Compiling PackageGraph Term.swift
[1180/1415] Compiling PackageGraph ResolvedModule.swift
[1181/1415] Compiling PackageGraph ResolvedPackage.swift
[1182/1415] Compiling PackageGraph ModulesGraph.swift
[1183/1415] Compiling PackageGraph PackageContainer.swift
[1184/1415] Compiling PackageGraph PackageGraphRoot.swift
[1187/1415] Compiling PackageGraph ResolvedProduct.swift
[1188/1415] Compiling PackageRegistry RegistryConfiguration.swift
[1189/1415] Emitting module SWBCore
[1190/1415] Compiling SWBCore DependencyInfoFormat.swift
[1191/1415] Compiling SWBCore FilePathResolver.swift
[1192/1415] Compiling SWBCore FileTextEncoding.swift
[1193/1415] Compiling SWBCore ImpartedBuildProperties.swift
[1194/1415] Compiling SWBCore PIFLoader.swift
[1195/1415] Compiling SWBCore PlatformFilter.swift
[1196/1415] Compiling SWBCore Project.swift
[1197/1415] Compiling SWBCore ProjectModelItem.swift
[1198/1415] Compiling SWBCore Reference.swift
[1199/1415] Compiling SWBCore ReferenceLookupContext.swift
[1200/1415] Compiling SWBCore Target.swift
[1201/1415] Compiling SWBCore Workspace.swift
[1202/1415] Compiling SWBCore WorkspaceHeaderIndex.swift
[1203/1415] Compiling SWBCore ProvisionalTask.swift
[1204/1415] Compiling SWBCore Provisioning.swift
[1205/1415] Compiling SWBCore ProvisioningTaskInputs.swift
[1206/1415] Compiling SWBCore InputFileGroupingStrategyExtension.swift
[1207/1415] Compiling SWBCore PlatformInfoExtension.swift
[1208/1415] Compiling SWBCore SDKRegistryExtension.swift
[1209/1415] Compiling SWBCore SDKVariantInfoExtension.swift
[1210/1415] Compiling SWBCore SettingsBuilderExtension.swift
[1211/1415] Compiling SWBCore SpecificationsExtension.swift
[1212/1415] Compiling SWBCore ToolchainRegistryExtension.swift
[1213/1415] Compiling SWBCore FileSystemSignatureBasedCache.swift
[1214/1415] Compiling SWBCore FileToBuild.swift
[1215/1415] Compiling SWBCore LibSwiftDriver.swift
[1216/1415] Compiling SWBCore PlannedBuild.swift
[1217/1415] Compiling SWBCore ArrayExtensions.swift
[1218/1415] Compiling SWBCore CStringArray.swift
[1219/1415] Compiling SWBCore Libclang.swift
[1220/1415] Compiling SWBCore LinkageDependencyResolver.swift
[1221/1415] Compiling SWBCore MacCatalystInfo.swift
[1222/1415] Compiling SWBCore MacroConfigFileLoader.swift
[1223/1415] Compiling PackageGraph ResolvedPackagesStore.swift
[1224/1415] Compiling PackageGraph Version+Extensions.swift
[1225/1415] Compiling PackageGraph VersionSetSpecifier.swift
[1250/1415] Compiling SWBCore CreateBuildDirectory.swift
[1251/1415] Compiling SWBCore DocumentationCompiler.swift
[1252/1415] Compiling SWBCore DsymutilTool.swift
[1269/1415] Compiling SWBCore GCCCompatibleCompilerSupport.swift
[1270/1415] Compiling SWBCore Gate.swift
[1271/1415] Compiling SWBCore GenerateAppPlaygroundAssetCatalog.swift
[1272/1415] Compiling SWBCore InfoPlistTool.swift
[1273/1415] Compiling SWBCore LaunchServicesRegisterTool.swift
[1274/1415] Compiling SWBCore LinkerTools.swift
[1275/1415] Compiling SWBCore Lipo.swift
[1276/1415] Compiling SWBCore MergeInfoPlist.swift
[1277/1415] Compiling SWBCore MkdirTool.swift
[1278/1415] Compiling SWBCore ModulesVerifierTool.swift
[1279/1415] Compiling SWBCore PLUtilTool.swift
[1280/1415] Compiling SWBCore PrelinkedObjectLink.swift
[1281/1415] Compiling SWBCore ProcessSDKImports.swift
[1282/1415] Compiling SWBCore ProcessXCFrameworkLibrary.swift
[1283/1415] Compiling SWBCore ProductPackaging.swift
[1284/1415] Compiling SWBCore RegisterExecutionPolicyException.swift
[1285/1435] Compiling SPMBuildCore ResolvedPackage+Extensions.swift
[1286/1435] Compiling SPMBuildCore Triple+Extensions.swift
[1287/1437] Compiling PackageRegistry ChecksumTOFU.swift
[1288/1437] Compiling PackageRegistry RegistryClient.swift
[1289/1437] Emitting module PackageRegistry
[1290/1439] Compiling SPMBuildCore XCFrameworkMetadata.swift
[1291/1439] Compiling SPMBuildCore XcodeProjectRepresentation.swift
[1292/1439] Emitting module SPMBuildCore
[1293/1439] Compiling PackageMetadata PackageMetadata.swift
[1294/1439] Emitting module PackageMetadata
[1311/1439] Compiling SPMBuildCore PluginContextSerializer.swift
[1312/1439] Compiling SPMBuildCore PluginInvocation.swift
[1313/1439] Compiling SPMBuildCore CommandPluginResult.swift
[1314/1439] Compiling SPMBuildCore DefaultPluginScriptRunner.swift
[1315/1439] Compiling SPMBuildCore BuildSystem.swift
[1316/1439] Compiling SPMBuildCore BuildSystemCommand.swift
[1317/1439] Compiling SPMBuildCore BuildParameters+Testing.swift
[1318/1439] Compiling SPMBuildCore BuildParameters.swift
[1319/1439] Compiling SPMBuildCore BuildParameters+Linking.swift
[1320/1439] Compiling SPMBuildCore BuildParameters+Output.swift
[1321/1439] Compiling SPMBuildCore BinaryTarget+Extensions.swift
[1322/1439] Compiling SPMBuildCore BuildParameters+Debugging.swift
[1323/1439] Compiling SPMBuildCore BuildParameters+Driver.swift
[1324/1439] Compiling SPMBuildCore BuildSystemDelegate.swift
[1325/1439] Compiling SPMBuildCore BuiltTestProduct.swift
[1326/1439] Compiling SPMBuildCore PluginMessages.swift
[1327/1439] Compiling SPMBuildCore PluginScriptRunner.swift
[1328/1500] Compiling SWBCore SetAttributes.swift
[1329/1500] Compiling SWBCore ShellScriptTool.swift
[1330/1500] Compiling SWBCore SignatureCollection.swift
[1331/1500] Compiling SWBCore StripTool.swift
[1332/1500] Compiling SWBCore SwiftABICheckerTool.swift
[1333/1500] Compiling SWBCore SwiftABIGenerationTool.swift
[1334/1500] Compiling SWBCore SwiftCompiler.swift
[1335/1500] Compiling SWBCore SwiftHeaderTool.swift
[1336/1500] Compiling SWBCore SwiftStdLibTool.swift
[1337/1500] Compiling SWBCore SwiftSymbolExtractor.swift
[1338/1500] Compiling SWBCore SymlinkTool.swift
[1339/1500] Compiling SWBCore TAPISymbolExtractor.swift
[1340/1500] Compiling SWBCore TAPITools.swift
[1341/1500] Compiling SWBCore TiffUtilTool.swift
[1342/1500] Compiling SWBCore TouchTool.swift
[1343/1500] Compiling SWBCore UnifdefTool.swift
[1344/1500] Compiling SWBCore ValidateDevelopmentAssets.swift
[1345/1500] Compiling SWBCore ValidateEmbeddedBinaryTool.swift
[1346/1500] Compiling SWBCore ValidateProductTool.swift
[1347/1500] Compiling SWBCore WriteFile.swift
[1348/1500] Compiling SWBCore SwiftSDK.swift
[1349/1500] Compiling SWBCore TargetDependencyResolver.swift
[1350/1500] Compiling SWBCore TargetPlatformDiagnostics.swift
[1351/1500] Compiling SWBCore TaskGeneration.swift
[1352/1500] Compiling SWBCore TaskResult.swift
[1353/1500] Compiling SWBCore ClangToolInfo.swift
[1354/1500] Compiling SWBCore ToolchainRegistry.swift
[1355/1500] Compiling SWBCore Tuning.swift
[1356/1500] Compiling SWBCore WorkspaceContext.swift
[1357/1500] Compiling SWBCore WorkspaceSettingsCache.swift
[1358/1500] Compiling SWBCore XCFramework.swift
[1359/1500] Compiling SWBCore resource_bundle_accessor.swift
[1360/1500] Emitting module Build
[1361/1502] Compiling XCBuildSupport XCBuildOutputParser.swift
[1362/1502] Compiling XCBuildSupport XcodeBuildSystem.swift
[1363/1502] Compiling Workspace Workspace+Registry.swift
[1364/1502] Compiling Workspace Workspace+ResolvedPackages.swift
[1365/1502] Compiling Workspace Workspace+Signing.swift
[1366/1505] Compiling Workspace InitPackage.swift
[1367/1505] Compiling Workspace LoadableResult.swift
[1368/1505] Compiling Workspace CertificatePolicy.swift
[1369/1505] Compiling Build SwiftCompilerOutputParser.swift
[1370/1505] Compiling Build TestObservation.swift
[1371/1505] Compiling XCBuildSupport XCBuildMessage.swift
[1372/1505] Compiling XCBuildSupport XCBuildDelegate.swift
[1373/1505] Compiling Workspace ResolvedFileWatcher.swift
[1374/1505] Compiling Workspace ResolverPrecomputationProvider.swift
[1375/1505] Compiling Workspace ToolsVersionSpecificationRewriter.swift
/Users/admin/builder/spi-builder-workspace/Sources/Build/LLBuildProgressTracker.swift:451:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
449 |                 // will be very slow), so they can later be passed to the advice provider in case of failure.
450 |                 if output.utf8.count < 1024 * 10 {
451 |                     let regex = try! RegEx(pattern: #".*(error:[^\n]*)\n.*"#, options: .dotMatchesLineSeparators)
    |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
452 |                     for match in regex.matchGroups(in: output) {
453 |                         self.errorMessagesByTarget[parser.targetName] = (
[1376/1505] Compiling Workspace Workspace+BinaryArtifacts.swift
/Users/admin/builder/spi-builder-workspace/Sources/Build/LLBuildProgressTracker.swift:451:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
449 |                 // will be very slow), so they can later be passed to the advice provider in case of failure.
450 |                 if output.utf8.count < 1024 * 10 {
451 |                     let regex = try! RegEx(pattern: #".*(error:[^\n]*)\n.*"#, options: .dotMatchesLineSeparators)
    |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
452 |                     for match in regex.matchGroups(in: output) {
453 |                         self.errorMessagesByTarget[parser.targetName] = (
[1377/1505] Compiling SWBCore LinkerSpec.swift
[1378/1505] Compiling SWBCore ProductTypes.swift
[1379/1505] Compiling SWBCore PropertyDomainSpec.swift
[1380/1505] Compiling SWBCore ModuleVerifierModuleMapFileVerifier.swift
[1381/1505] Compiling SWBCore ModuleVerifierTarget.swift
[1382/1505] Compiling SWBCore ClangModuleVerifierOutputParser.swift
[1383/1505] Compiling SWBCore ClangSerializedDiagnostics.swift
[1384/1505] Compiling Workspace Utilities.swift
/Users/admin/builder/spi-builder-workspace/Sources/Build/BuildOperation.swift:841:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 839 |
 840 |         // Check for cases involving modules that cannot be found.
 841 |         if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
     |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 842 |             // A target is importing a module that can't be found.  We take a look at the build plan and see if can offer any advice.
 843 |
[1385/1505] Compiling Workspace X509Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Build/BuildOperation.swift:841:38: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 839 |
 840 |         // Check for cases involving modules that cannot be found.
 841 |         if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
     |                                      `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
 842 |             // A target is importing a module that can't be found.  We take a look at the build plan and see if can offer any advice.
 843 |
[1386/1505] Compiling Workspace ManifestSigning.swift
/Users/admin/builder/spi-builder-workspace/Sources/Build/BuildManifest/LLBuildManifestBuilder+Swift.swift:86:65: warning: 'makeDiagnosticsHandler()' is deprecated: temporary for transition TSCBasic.Diagnostic -> SwiftDriver.Diagnostic
 84 |         var driver = try Driver(
 85 |             args: commandLine,
 86 |             diagnosticsOutput: .handler(self.observabilityScope.makeDiagnosticsHandler()),
    |                                                                 `- warning: 'makeDiagnosticsHandler()' is deprecated: temporary for transition TSCBasic.Diagnostic -> SwiftDriver.Diagnostic
 87 |             fileSystem: self.fileSystem,
 88 |             executor: executor,
[1387/1505] Compiling Workspace Signature.swift
/Users/admin/builder/spi-builder-workspace/Sources/Build/BuildManifest/LLBuildManifestBuilder+Swift.swift:86:65: warning: 'makeDiagnosticsHandler()' is deprecated: temporary for transition TSCBasic.Diagnostic -> SwiftDriver.Diagnostic
 84 |         var driver = try Driver(
 85 |             args: commandLine,
 86 |             diagnosticsOutput: .handler(self.observabilityScope.makeDiagnosticsHandler()),
    |                                                                 `- warning: 'makeDiagnosticsHandler()' is deprecated: temporary for transition TSCBasic.Diagnostic -> SwiftDriver.Diagnostic
 87 |             fileSystem: self.fileSystem,
 88 |             executor: executor,
[1388/1505] Compiling Workspace Base64URL.swift
[1389/1505] Compiling Workspace CheckoutState.swift
[1390/1505] Compiling Workspace Diagnostics.swift
[1391/1505] Compiling Workspace ManagedArtifact.swift
[1392/1505] Compiling Workspace ManagedDependency.swift
[1393/1505] Compiling Workspace ManagedPrebuilt.swift
[1394/1505] Emitting module Workspace
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:220:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
 27 |
 28 | /// The delegate interface used by the workspace to report status information.
 29 | public protocol WorkspaceDelegate: AnyObject {
    |                 `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
 30 |     /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
 31 |     /// Note that this does not include speculative loading of manifests that may occur during
    :
218 |
219 | struct WorkspaceManifestLoaderDelegate: ManifestLoader.Delegate {
220 |     private weak var workspaceDelegate: Workspace.Delegate?
    |                      `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
221 |
222 |     init(workspaceDelegate: Workspace.Delegate) {
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:283:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
 27 |
 28 | /// The delegate interface used by the workspace to report status information.
 29 | public protocol WorkspaceDelegate: AnyObject {
    |                 `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
 30 |     /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
 31 |     /// Note that this does not include speculative loading of manifests that may occur during
    :
281 |
282 | struct WorkspaceRepositoryManagerDelegate: RepositoryManager.Delegate {
283 |     private weak var workspaceDelegate: Workspace.Delegate?
    |                      `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
284 |
285 |     init(workspaceDelegate: Workspace.Delegate) {
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:339:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
 27 |
 28 | /// The delegate interface used by the workspace to report status information.
 29 | public protocol WorkspaceDelegate: AnyObject {
    |                 `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
 30 |     /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
 31 |     /// Note that this does not include speculative loading of manifests that may occur during
    :
337 |
338 | struct WorkspaceRegistryDownloadsManagerDelegate: RegistryDownloadsManager.Delegate {
339 |     private weak var workspaceDelegate: Workspace.Delegate?
    |                      `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
340 |
341 |     init(workspaceDelegate: Workspace.Delegate) {
[1396/1505] Compiling Workspace embedded_resources.swift
[1397/1505] Compiling Workspace FileSystemPackageContainer.swift
[1398/1505] Compiling Workspace RegistryPackageContainer.swift
[1399/1565] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[1400/1565] Compiling SwiftDiagnostics Message.swift
[1401/1566] Compiling SwiftParser IsValidIdentifier.swift
[1402/1566] Compiling SwiftParser Cursor.swift
[1403/1566] Compiling SwiftParser Lexeme.swift
[1404/1566] Compiling SwiftParser LexemeSequence.swift
[1405/1566] Compiling SwiftParser LoopProgressCondition.swift
[1406/1566] Compiling SwiftParser Modifiers.swift
[1407/1566] Compiling SwiftParser Declarations.swift
[1408/1566] Compiling SwiftParser Directives.swift
[1409/1566] Compiling SwiftParser Lexer.swift
[1410/1566] Compiling SwiftParser RegexLiteralLexer.swift
[1411/1566] Compiling SwiftParser UnicodeScalarExtensions.swift
[1412/1566] Compiling SwiftParser Lookahead.swift
[1413/1566] Compiling SwiftDiagnostics Note.swift
[1414/1566] Compiling SwiftParser Attributes.swift
[1415/1566] Compiling SwiftParser Availability.swift
[1416/1566] Compiling SwiftParser Expressions.swift
[1417/1566] Compiling SwiftParser IncrementalParseTransition.swift
[1418/1566] Compiling SwiftDiagnostics FixIt.swift
[1419/1566] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[1420/1566] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[1421/1566] Compiling SwiftBasicFormat Syntax+Extensions.swift
[1422/1566] Compiling SwiftBasicFormat InferIndentation.swift
[1423/1566] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[1424/1566] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[1425/1566] Compiling SwiftDiagnostics Diagnostic.swift
[1426/1566] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[1427/1566] Compiling SwiftDiagnostics Convenience.swift
[1428/1566] Emitting module SwiftDiagnostics
[1429/1566] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[1430/1569] Compiling XCBuildSupport PIFBuilder.swift
[1431/1569] Emitting module XCBuildSupport
[1432/1569] Compiling XCBuildSupport PIF.swift
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/PackageContainer/SourceControlPackageContainer.swift:283:42: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
281 |                 } else {
282 |                     // Revision does not exist, so we customize the error.
283 |                     let sha1RegEx = try! RegEx(pattern: #"\A[:xdigit:]{40}\Z"#)
    |                                          `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
284 |                     let isBranchRev = sha1RegEx.matchGroups(in: revision).compactMap { $0 }.isEmpty
285 |                     let errorMessage = "could not find " + (isBranchRev ? "a branch named ‘\(revision)’" : "the commit \(revision)")
[1434/1569] Compiling SwiftParser CharacterInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/PackageContainer/SourceControlPackageContainer.swift:283:42: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
281 |                 } else {
282 |                     // Revision does not exist, so we customize the error.
283 |                     let sha1RegEx = try! RegEx(pattern: #"\A[:xdigit:]{40}\Z"#)
    |                                          `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
284 |                     let isBranchRev = sha1RegEx.matchGroups(in: revision).compactMap { $0 }.isEmpty
285 |                     let errorMessage = "could not find " + (isBranchRev ? "a branch named ‘\(revision)’" : "the commit \(revision)")
[1435/1569] Compiling SwiftParser CollectionNodes+Parsable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/PackageContainer/SourceControlPackageContainer.swift:283:42: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
281 |                 } else {
282 |                     // Revision does not exist, so we customize the error.
283 |                     let sha1RegEx = try! RegEx(pattern: #"\A[:xdigit:]{40}\Z"#)
    |                                          `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
284 |                     let isBranchRev = sha1RegEx.matchGroups(in: revision).compactMap { $0 }.isEmpty
285 |                     let errorMessage = "could not find " + (isBranchRev ? "a branch named ‘\(revision)’" : "the commit \(revision)")
[1436/1569] Compiling SwiftParser CompilerFiles.swift
[1437/1569] Compiling SwiftParser TokenConsumer.swift
[1438/1569] Compiling SwiftParser TokenPrecedence.swift
[1439/1569] Emitting module SwiftBasicFormat
[1440/1569] Compiling SwiftBasicFormat BasicFormat.swift
[1441/1569] Compiling SwiftBasicFormat Indenter.swift
[1442/1569] Compiling SwiftParser StringLiterals.swift
[1443/1569] Compiling SwiftParser SwiftParserCompatibility.swift
[1444/1569] Compiling SwiftParser SwiftVersion.swift
[1445/1569] Compiling SwiftParser SyntaxUtils.swift
[1446/1573] Compiling SourceKitLSPAPI PluginTargetBuildDescription.swift
[1447/1573] Compiling SwiftParser Nominals.swift
[1448/1573] Compiling SwiftParser Parameters.swift
[1449/1573] Compiling SwiftParser ParseSourceFile.swift
[1450/1573] Compiling SwiftParser TokenSpec.swift
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:220:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
 27 |
 28 | /// The delegate interface used by the workspace to report status information.
 29 | public protocol WorkspaceDelegate: AnyObject {
    |                 `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
 30 |     /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
 31 |     /// Note that this does not include speculative loading of manifests that may occur during
    :
218 |
219 | struct WorkspaceManifestLoaderDelegate: ManifestLoader.Delegate {
220 |     private weak var workspaceDelegate: Workspace.Delegate?
    |                      `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
221 |
222 |     init(workspaceDelegate: Workspace.Delegate) {
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:283:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
 27 |
 28 | /// The delegate interface used by the workspace to report status information.
 29 | public protocol WorkspaceDelegate: AnyObject {
    |                 `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
 30 |     /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
 31 |     /// Note that this does not include speculative loading of manifests that may occur during
    :
281 |
282 | struct WorkspaceRepositoryManagerDelegate: RepositoryManager.Delegate {
283 |     private weak var workspaceDelegate: Workspace.Delegate?
    |                      `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
284 |
285 |     init(workspaceDelegate: Workspace.Delegate) {
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:339:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
 27 |
 28 | /// The delegate interface used by the workspace to report status information.
 29 | public protocol WorkspaceDelegate: AnyObject {
    |                 `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
 30 |     /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
 31 |     /// Note that this does not include speculative loading of manifests that may occur during
    :
337 |
338 | struct WorkspaceRegistryDownloadsManagerDelegate: RegistryDownloadsManager.Delegate {
339 |     private weak var workspaceDelegate: Workspace.Delegate?
    |                      `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
340 |
341 |     init(workspaceDelegate: Workspace.Delegate) {
[1451/1573] Compiling SwiftParser TokenSpecSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:220:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
 27 |
 28 | /// The delegate interface used by the workspace to report status information.
 29 | public protocol WorkspaceDelegate: AnyObject {
    |                 `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
 30 |     /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
 31 |     /// Note that this does not include speculative loading of manifests that may occur during
    :
218 |
219 | struct WorkspaceManifestLoaderDelegate: ManifestLoader.Delegate {
220 |     private weak var workspaceDelegate: Workspace.Delegate?
    |                      `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
221 |
222 |     init(workspaceDelegate: Workspace.Delegate) {
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:283:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
 27 |
 28 | /// The delegate interface used by the workspace to report status information.
 29 | public protocol WorkspaceDelegate: AnyObject {
    |                 `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
 30 |     /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
 31 |     /// Note that this does not include speculative loading of manifests that may occur during
    :
281 |
282 | struct WorkspaceRepositoryManagerDelegate: RepositoryManager.Delegate {
283 |     private weak var workspaceDelegate: Workspace.Delegate?
    |                      `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
284 |
285 |     init(workspaceDelegate: Workspace.Delegate) {
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:339:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
 27 |
 28 | /// The delegate interface used by the workspace to report status information.
 29 | public protocol WorkspaceDelegate: AnyObject {
    |                 `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
 30 |     /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
 31 |     /// Note that this does not include speculative loading of manifests that may occur during
    :
337 |
338 | struct WorkspaceRegistryDownloadsManagerDelegate: RegistryDownloadsManager.Delegate {
339 |     private weak var workspaceDelegate: Workspace.Delegate?
    |                      `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
340 |
341 |     init(workspaceDelegate: Workspace.Delegate) {
[1452/1573] Compiling SwiftParser Names.swift
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:220:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
 27 |
 28 | /// The delegate interface used by the workspace to report status information.
 29 | public protocol WorkspaceDelegate: AnyObject {
    |                 `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
 30 |     /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
 31 |     /// Note that this does not include speculative loading of manifests that may occur during
    :
218 |
219 | struct WorkspaceManifestLoaderDelegate: ManifestLoader.Delegate {
220 |     private weak var workspaceDelegate: Workspace.Delegate?
    |                      `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceManifestLoaderDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
221 |
222 |     init(workspaceDelegate: Workspace.Delegate) {
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:283:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
 27 |
 28 | /// The delegate interface used by the workspace to report status information.
 29 | public protocol WorkspaceDelegate: AnyObject {
    |                 `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
 30 |     /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
 31 |     /// Note that this does not include speculative loading of manifests that may occur during
    :
281 |
282 | struct WorkspaceRepositoryManagerDelegate: RepositoryManager.Delegate {
283 |     private weak var workspaceDelegate: Workspace.Delegate?
    |                      `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRepositoryManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
284 |
285 |     init(workspaceDelegate: Workspace.Delegate) {
/Users/admin/builder/spi-builder-workspace/Sources/Workspace/Workspace+Delegation.swift:339:22: warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
 27 |
 28 | /// The delegate interface used by the workspace to report status information.
 29 | public protocol WorkspaceDelegate: AnyObject {
    |                 `- note: protocol 'WorkspaceDelegate' does not conform to the 'Sendable' protocol
 30 |     /// The workspace is about to load a package manifest (which might be in the cache, or might need to be parsed).
 31 |     /// Note that this does not include speculative loading of manifests that may occur during
    :
337 |
338 | struct WorkspaceRegistryDownloadsManagerDelegate: RegistryDownloadsManager.Delegate {
339 |     private weak var workspaceDelegate: Workspace.Delegate?
    |                      `- warning: stored property 'workspaceDelegate' of 'Sendable'-conforming struct 'WorkspaceRegistryDownloadsManagerDelegate' has non-sendable type '(any Workspace.Delegate)?' (aka 'Optional<any WorkspaceDelegate>'); this is an error in the Swift 6 language mode
340 |
341 |     init(workspaceDelegate: Workspace.Delegate) {
[1453/1573] Compiling SourceKitLSPAPI BuildDescription.swift
[1454/1573] Emitting module SourceKitLSPAPI
[1455/1573] Compiling SwiftParser TopLevel.swift
[1456/1573] Compiling SwiftParser TriviaParser.swift
[1457/1573] Compiling SwiftParser Types.swift
[1458/1573] Compiling SwiftParser ExperimentalFeatures.swift
[1464/1573] Emitting module SwiftParser
[1469/1573] Compiling SwiftParser Parser.swift
[1470/1573] Compiling SwiftParser Patterns.swift
[1471/1573] Compiling SwiftParser Recovery.swift
[1472/1573] Compiling SwiftParser Specifiers.swift
[1473/1573] Compiling SwiftParser Statements.swift
[1474/1573] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[1483/1573] Compiling SWBCore CommandLineArgument.swift
[1484/1573] Compiling SWBCore ConfiguredTarget.swift
[1485/1573] Compiling SWBCore Core.swift
[1486/1573] Compiling SWBCore CustomTaskTypeDescription.swift
[1487/1573] Compiling SWBCore DependencyInfoEditPayload.swift
[1488/1573] Compiling SWBCore DependencyResolution.swift
[1489/1573] Compiling SWBCore DiagnosticSupport.swift
[1490/1573] Compiling SWBCore EnvironmentBindings.swift
[1491/1573] Compiling SWBCore ExecutableTask.swift
[1492/1573] Compiling SWBCore DeveloperDirectoryExtension.swift
[1493/1573] Compiling SWBCore DiagnosticToolingExtension.swift
[1494/1573] Compiling SWBCore EnvironmentExtension.swift
[1495/1573] Compiling SWBCore FeatureAvailabilityExtension.swift
[1496/1573] Compiling SWBCore SDKRegistry.swift
[1497/1573] Compiling SWBCore SWBFeatureFlag.swift
[1498/1573] Compiling SWBCore BuildRuleFile.swift
[1499/1573] Compiling SWBCore BuiltinMacros.swift
[1500/1573] Compiling SWBCore CASOptions.swift
[1501/1573] Compiling SWBCore RecursiveSearchPathResolver.swift
[1502/1573] Compiling SWBCore Settings.swift
[1503/1573] Compiling SWBCore StackedSearchPaths.swift
[1504/1573] Compiling SWBCore ShellScript.swift
[1505/1573] Compiling SWBCore SigningSupport.swift
[1506/1573] Compiling SWBCore CommandLineToolSpec.swift
[1507/1573] Compiling SWBCore CompilerSpec.swift
[1508/1573] Compiling SWBCore FileTypes.swift
[1512/1684] Compiling SWBTaskConstruction BuildDirectoryContext.swift
[1513/1684] Compiling SWBTaskConstruction DiagnosticSupport.swift
[1514/1684] Compiling SWBTaskConstruction BuildPlan.swift
[1515/1684] Compiling SWBTaskConstruction BuildPlanDumping.swift
[1516/1684] Compiling SWBTaskConstruction ProductPlan.swift
[1517/1684] Compiling SWBTaskConstruction RezTaskProducer.swift
[1518/1684] Compiling SWBTaskConstruction ShellBasedTaskProducer.swift
[1519/1684] Compiling SWBTaskConstruction ShellScriptTaskProducer.swift
[1520/1684] Compiling SWBTaskConstruction SourcesTaskProducer.swift
[1521/1684] Compiling SWBTaskConstruction SwiftPackageCopyFilesTaskProducer.swift
[1522/1684] Compiling SWBTaskConstruction ProductPlanner.swift
[1523/1684] Compiling SWBTaskConstruction StaleFileRemovalContext.swift
[1524/1684] Compiling SWBTaskConstruction TaskPlanningDelegate.swift
[1525/1684] Compiling SwiftBuild ImpartedBuildProperties.swift
[1526/1684] Compiling SwiftBuild PlatformFilter.swift
[1527/1684] Compiling SWBWebAssemblyPlatform resource_bundle_accessor.swift
[1528/1684] Compiling SWBWindowsPlatform resource_bundle_accessor.swift
[1529/1684] Compiling SWBGenericUnixPlatform resource_bundle_accessor.swift
[1530/1684] Compiling SWBAndroidPlatform resource_bundle_accessor.swift
[1531/1684] Compiling SWBQNXPlatform resource_bundle_accessor.swift
[1532/1684] Emitting module SWBWebAssemblyPlatform
[1533/1684] Compiling SWBWebAssemblyPlatform Plugin.swift
[1534/1684] Compiling SwiftBuild SWBTerminal.swift
[1535/1684] Compiling SwiftBuild SWBUserInfo.swift
[1536/1684] Compiling SwiftBuild SWBWorkspaceInfo.swift
[1537/1684] Compiling SwiftParser TokenSpecStaticMembers.swift
[1538/1706] Compiling SWBWindowsPlatform VSInstallation.swift
[1539/1706] Compiling SWBWindowsPlatform KnownFolders.swift
[1540/1706] Emitting module SWBWindowsPlatform
[1541/1706] Compiling SWBWindowsPlatform Plugin.swift
[1542/1706] Emitting module SWBAndroidPlatform
[1543/1706] Compiling SWBAndroidPlatform AndroidSDK.swift
[1544/1706] Compiling SWBAndroidPlatform Plugin.swift
[1545/1706] Emitting module SWBGenericUnixPlatform
[1546/1706] Compiling SWBGenericUnixPlatform Plugin.swift
[1547/1706] Compiling SWBQNXPlatform Plugin.swift
[1548/1706] Emitting module SWBQNXPlatform
[1549/1706] Compiling SWBQNXPlatform QNXSDP.swift
[1550/1706] Compiling SwiftBuild SWBSystemInfo.swift
[1551/1706] Compiling SwiftBuild SWBTargetGUID.swift
[1555/1710] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[1556/1711] Compiling SwiftIDEUtils SyntaxClassification.swift
[1557/1711] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[1558/1711] Compiling SwiftIDEUtils Utils.swift
[1559/1711] Compiling SwiftIDEUtils Syntax+Classifications.swift
[1560/1711] Compiling SwiftIDEUtils SyntaxClassifier.swift
[1561/1711] Compiling SwiftIDEUtils SwiftIDEUtilsCompatibility.swift
[1562/1711] Compiling SwiftBuild SWBClientExchangeSupport.swift
[1563/1711] Compiling SwiftBuild SWBDocumentationSupport.swift
[1564/1711] Compiling SwiftBuild SWBIndexingSupport.swift
[1565/1744] Compiling SwiftIDEUtils FixItApplier.swift
[1566/1744] Compiling SwiftIDEUtils NameMatcher.swift
[1567/1744] Emitting module SwiftIDEUtils
[1568/1744] Compiling SwiftIDEUtils DeclNameLocation.swift
[1569/1744] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[1570/1744] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[1571/1744] Compiling SwiftParserDiagnostics Utils.swift
[1572/1746] Compiling SwiftParserDiagnostics PresenceUtils.swift
[1573/1746] Compiling SwiftBuild SWBChannel.swift
[1577/1746] Compiling SwiftBuild SWBLocalizationSupport.swift
[1578/1746] Compiling SwiftBuild SWBMacroEvaluation.swift
[1579/1746] Compiling SwiftBuild SWBPreviewSupport.swift
[1580/1746] Compiling SwiftBuild SWBProductPlannerSupport.swift
[1581/1746] Compiling SwiftBuild SWBPropertyList.swift
[1582/1746] Compiling SwiftBuild SWBProvisioningTaskInputs.swift
[1583/1746] Emitting module SWBTaskConstruction
[1584/1750] Emitting module package_info
[1585/1750] Compiling package_info example.swift
[1585/1750] Write Objects.LinkFileList
[1587/1750] Emitting module SwiftBuild
[1588/1750] Emitting module SwiftFixIt
[1589/1750] Compiling SwiftFixIt SwiftFixIt.swift
[1590/1750] Compiling _InternalTestSupport SkippedTestSupport.swift
[1591/1750] Compiling _InternalTestSupport SwiftPMProduct.swift
[1592/1750] Compiling _InternalTestSupport MockBuildTestHelper.swift
[1593/1750] Compiling _InternalTestSupport MockDependency.swift
[1594/1750] Compiling _InternalTestSupport MockDependencyGraph.swift
[1595/1750] Compiling SWBTaskConstruction IndexBuildVFSDirectoryRemapTaskProducer.swift
[1596/1750] Compiling SWBTaskConstruction PCHModuleMapTaskProducer.swift
[1597/1750] Compiling SWBTaskConstruction XCFrameworkTaskProducer.swift
[1598/1750] Compiling SWBTaskConstruction XCFrameworkContext.swift
[1603/1750] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[1604/1750] Compiling _InternalTestSupport MockRegistry.swift
[1605/1750] Compiling _InternalTestSupport MockTarget.swift
[1606/1750] Emitting module SwiftParserDiagnostics
[1607/1750] Compiling _InternalTestSupport MockWorkspace.swift
[1608/1750] Compiling _InternalTestSupport InMemoryGitRepository.swift
[1609/1750] Compiling _InternalTestSupport ManifestExtensions.swift
[1610/1750] Compiling _InternalTestSupport MockArchiver.swift
[1611/1750] Emitting module swift_build_prebuilts
[1612/1750] Compiling swift_build_prebuilts BuildPrebuilts.swift
[1622/1765] Write Objects.LinkFileList
[1624/1765] Compiling _InternalTestSupport BuildSystemProvider+Supported.swift
[1625/1765] Compiling _InternalTestSupport Commands.swift
[1626/1765] Compiling _InternalTestSupport GitRepositoryExtensions.swift
[1627/1765] Compiling _InternalTestSupport MockHTTPClient.swift
[1628/1765] Compiling _InternalTestSupport MockHashAlgorithm.swift
[1629/1765] Compiling _InternalTestSupport MockManifestLoader.swift
[1630/1765] Compiling _InternalTestSupport Observability.swift
[1631/1765] Compiling _InternalTestSupport PackageDependencyDescriptionExtensions.swift
[1632/1765] Compiling _InternalTestSupport PackageGraphTester.swift
[1633/1765] Compiling _InternalTestSupport ResolvedModule+Mock.swift
[1634/1765] Compiling _InternalTestSupport MockPackage.swift
[1635/1765] Compiling _InternalTestSupport MockPackageContainer.swift
[1636/1765] Compiling _InternalTestSupport MockPackageFingerprintStorage.swift
[1637/1765] Compiling SwiftBuild SWBBuildServiceConsole.swift
[1638/1765] Compiling SwiftBuild SWBBuildServiceSession.swift
[1643/1765] Linking package-info
[1644/1765] Applying package-info
[1646/1765] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[1657/1766] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[1658/1766] Compiling SwiftSyntaxBuilder Indenter.swift
[1659/1766] Compiling SwiftSyntaxBuilder ListBuilder.swift
[1660/1766] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[1661/1766] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[1672/1766] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[1673/1766] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[1674/1766] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[1675/1766] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[1676/1766] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[1677/1766] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[1684/1766] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[1687/1766] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[1690/1766] Emitting module SwiftSyntaxBuilder
[1691/1766] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[1691/1778] Linking swift-build-prebuilts
[1692/1778] Applying swift-build-prebuilts
[1694/1778] Compiling PackageModelSyntax AddSwiftSetting.swift
[1695/1778] Compiling PackageModelSyntax AddTarget.swift
[1696/1778] Emitting module PackageModelSyntax
[1697/1778] Compiling PackageModelSyntax AddPackageDependency.swift
[1698/1778] Compiling PackageModelSyntax AddProduct.swift
[1699/1779] Compiling PackageModelSyntax PackageDependency+Syntax.swift
[1700/1779] Compiling PackageModelSyntax ProductDescription+Syntax.swift
[1701/1779] Compiling PackageModelSyntax PackageEditResult.swift
[1702/1779] Compiling PackageModelSyntax ManifestSyntaxRepresentable.swift
[1703/1779] Compiling PackageModelSyntax AddTargetDependency.swift
[1704/1779] Compiling PackageModelSyntax ManifestEditError.swift
[1705/1779] Compiling PackageModelSyntax SyntaxEditUtils.swift
[1706/1779] Compiling PackageModelSyntax TargetDescription+Syntax.swift
[1706/1779] Write Objects.LinkFileList
[1708/1779] Emitting module _InternalTestSupport
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/InMemoryGitRepository.swift:401:16: warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
399 | public final class InMemoryGitRepositoryProvider: RepositoryProvider {
400 |     /// Contains the repository added to this provider.
401 |     public var specifierMap = ThreadSafeKeyValueStore<RepositorySpecifier, InMemoryGitRepository>()
    |                `- warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
402 |
403 |     /// Contains the repositories which are fetched using this provider.
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/InMemoryGitRepository.swift:401:16: warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
399 | public final class InMemoryGitRepositoryProvider: RepositoryProvider {
400 |     /// Contains the repository added to this provider.
401 |     public var specifierMap = ThreadSafeKeyValueStore<RepositorySpecifier, InMemoryGitRepository>()
    |                `- warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
402 |
403 |     /// Contains the repositories which are fetched using this provider.
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/InMemoryGitRepository.swift:401:16: warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
399 | public final class InMemoryGitRepositoryProvider: RepositoryProvider {
400 |     /// Contains the repository added to this provider.
401 |     public var specifierMap = ThreadSafeKeyValueStore<RepositorySpecifier, InMemoryGitRepository>()
    |                `- warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
402 |
403 |     /// Contains the repositories which are fetched using this provider.
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/InMemoryGitRepository.swift:401:16: warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
399 | public final class InMemoryGitRepositoryProvider: RepositoryProvider {
400 |     /// Contains the repository added to this provider.
401 |     public var specifierMap = ThreadSafeKeyValueStore<RepositorySpecifier, InMemoryGitRepository>()
    |                `- warning: stored property 'specifierMap' of 'Sendable'-conforming class 'InMemoryGitRepositoryProvider' is mutable; this is an error in the Swift 6 language mode
402 |
403 |     /// Contains the repositories which are fetched using this provider.
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:24:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
22 |     /// Create the repository using git init.
23 |     func create() throws {
24 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "init"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
25 |     }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:41:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
39 |     /// Stage a file.
40 |     func stage(file: String) throws {
41 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "add", file])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
42 |     }
43 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:46:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
44 |     /// Stage multiple files.
45 |     func stage(files: String...) throws {
46 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "add"] + files)
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
47 |     }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:51:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
49 |     /// Stage entire unstaged changes.
50 |     func stageEverything() throws {
51 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "add", "."])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
52 |     }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:57:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
55 |     func commit(message: String? = nil) throws {
56 |         // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:58:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
56 |         // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:59:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
57 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:60:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
61 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
62 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:61:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
62 |     }
63 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:66:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
64 |     /// Tag the git repo.
65 |     func tag(name: String) throws {
66 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "tag", name])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
67 |     }
68 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:71:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
69 |     /// Push the changes to specified remote and branch.
70 |     func push(remote: String, branch: String) throws {
71 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "push", remote, branch])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
72 |     }
73 | }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:24:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
22 |     /// Create the repository using git init.
23 |     func create() throws {
24 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "init"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
25 |     }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:41:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
39 |     /// Stage a file.
40 |     func stage(file: String) throws {
41 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "add", file])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
42 |     }
43 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:46:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
44 |     /// Stage multiple files.
45 |     func stage(files: String...) throws {
46 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "add"] + files)
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
47 |     }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:51:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
49 |     /// Stage entire unstaged changes.
50 |     func stageEverything() throws {
51 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "add", "."])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
52 |     }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:57:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
55 |     func commit(message: String? = nil) throws {
56 |         // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:58:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
56 |         // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:59:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
57 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:60:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
61 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
62 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:61:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
62 |     }
63 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:66:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
64 |     /// Tag the git repo.
65 |     func tag(name: String) throws {
66 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "tag", name])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
67 |     }
68 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:71:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
69 |     /// Push the changes to specified remote and branch.
70 |     func push(remote: String, branch: String) throws {
71 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "push", remote, branch])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
72 |     }
73 | }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:24:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
22 |     /// Create the repository using git init.
23 |     func create() throws {
24 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "init"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
25 |     }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:41:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
39 |     /// Stage a file.
40 |     func stage(file: String) throws {
41 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "add", file])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
42 |     }
43 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:46:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
44 |     /// Stage multiple files.
45 |     func stage(files: String...) throws {
46 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "add"] + files)
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
47 |     }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:51:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
49 |     /// Stage entire unstaged changes.
50 |     func stageEverything() throws {
51 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "add", "."])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
52 |     }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:57:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
55 |     func commit(message: String? = nil) throws {
56 |         // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:58:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
56 |         // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:59:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
57 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:60:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
61 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
62 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:61:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
62 |     }
63 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:66:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
64 |     /// Tag the git repo.
65 |     func tag(name: String) throws {
66 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "tag", name])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
67 |     }
68 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:71:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
69 |     /// Push the changes to specified remote and branch.
70 |     func push(remote: String, branch: String) throws {
71 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "push", remote, branch])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
72 |     }
73 | }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:24:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
22 |     /// Create the repository using git init.
23 |     func create() throws {
24 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "init"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
25 |     }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:41:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
39 |     /// Stage a file.
40 |     func stage(file: String) throws {
41 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "add", file])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
42 |     }
43 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:46:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
44 |     /// Stage multiple files.
45 |     func stage(files: String...) throws {
46 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "add"] + files)
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
47 |     }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:51:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
49 |     /// Stage entire unstaged changes.
50 |     func stageEverything() throws {
51 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "add", "."])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
52 |     }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:57:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
55 |     func commit(message: String? = nil) throws {
56 |         // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:58:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
56 |         // FIXME: We don't need to set these every time but we usually only commit once or twice for a test repo.
57 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:59:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
57 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.email", "example@example.com"])
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:60:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
58 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "user.name", "Example Example"])
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
61 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
62 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:61:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
59 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "commit.gpgsign", "false"])
60 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "config", "tag.gpgsign", "false"])
61 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "commit", "-m", message ?? "Add some files."])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
62 |     }
63 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:66:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
64 |     /// Tag the git repo.
65 |     func tag(name: String) throws {
66 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "tag", name])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
67 |     }
68 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/GitRepositoryExtensions.swift:71:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
69 |     /// Push the changes to specified remote and branch.
70 |     func push(remote: String, branch: String) throws {
71 |         try systemQuietly([Git.tool, "-C", self.path.pathString, "push", remote, branch])
   |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
72 |     }
73 | }
[1734/1782] Compiling _InternalTestSupport Toolchain.swift
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/XCTAssertHelpers.swift:51:8: warning: 'isInCiEnvironment' is deprecated: Use CiEnvironment.runningInSmokeTestPipeline
 49 | public func XCTSkipIfPlatformCI(because reason: String? = nil, file: StaticString = #filePath, line: UInt = #line) throws {
 50 |     // TODO: is this actually the right variable now?
 51 |     if isInCiEnvironment {
    |        `- warning: 'isInCiEnvironment' is deprecated: Use CiEnvironment.runningInSmokeTestPipeline
 52 |         let failureCause = reason ?? "Skipping because the test is being run on CI"
 53 |         throw XCTSkip(failureCause, file: file, line: line)
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:210:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(_:) instead.
208 |         try localFileSystem.copy(from: srcDir, to: dstDir)
209 |         #else
210 |         try systemQuietly("cp", "-R", "-H", srcDir.pathString, dstDir.pathString)
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(_:) instead.
211 |         #endif
212 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:266:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
264 |         }
265 |
266 |         try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
267 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:267:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
265 |
266 |         try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
267 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
268 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
269 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:268:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
266 |         try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
267 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
269 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
270 |         let repo = GitRepository(path: dir)
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:269:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
267 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
269 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
270 |         let repo = GitRepository(path: dir)
271 |         try repo.stageEverything()
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:276:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
274 |             try repo.tag(name: tag)
275 |         }
276 |         try systemQuietly([Git.tool, "-C", dir.pathString, "branch", "-m", "main"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
277 |     } catch {
278 |         XCTFail("\(error.interpolationDescription)", file: file, line: line)
[1735/1782] Compiling _InternalTestSupport XCTAssertHelpers.swift
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/XCTAssertHelpers.swift:51:8: warning: 'isInCiEnvironment' is deprecated: Use CiEnvironment.runningInSmokeTestPipeline
 49 | public func XCTSkipIfPlatformCI(because reason: String? = nil, file: StaticString = #filePath, line: UInt = #line) throws {
 50 |     // TODO: is this actually the right variable now?
 51 |     if isInCiEnvironment {
    |        `- warning: 'isInCiEnvironment' is deprecated: Use CiEnvironment.runningInSmokeTestPipeline
 52 |         let failureCause = reason ?? "Skipping because the test is being run on CI"
 53 |         throw XCTSkip(failureCause, file: file, line: line)
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:210:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(_:) instead.
208 |         try localFileSystem.copy(from: srcDir, to: dstDir)
209 |         #else
210 |         try systemQuietly("cp", "-R", "-H", srcDir.pathString, dstDir.pathString)
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(_:) instead.
211 |         #endif
212 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:266:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
264 |         }
265 |
266 |         try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
267 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:267:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
265 |
266 |         try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
267 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
268 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
269 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:268:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
266 |         try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
267 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
269 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
270 |         let repo = GitRepository(path: dir)
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:269:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
267 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
269 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
270 |         let repo = GitRepository(path: dir)
271 |         try repo.stageEverything()
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:276:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
274 |             try repo.tag(name: tag)
275 |         }
276 |         try systemQuietly([Git.tool, "-C", dir.pathString, "branch", "-m", "main"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
277 |     } catch {
278 |         XCTFail("\(error.interpolationDescription)", file: file, line: line)
[1736/1782] Compiling _InternalTestSupport misc.swift
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/XCTAssertHelpers.swift:51:8: warning: 'isInCiEnvironment' is deprecated: Use CiEnvironment.runningInSmokeTestPipeline
 49 | public func XCTSkipIfPlatformCI(because reason: String? = nil, file: StaticString = #filePath, line: UInt = #line) throws {
 50 |     // TODO: is this actually the right variable now?
 51 |     if isInCiEnvironment {
    |        `- warning: 'isInCiEnvironment' is deprecated: Use CiEnvironment.runningInSmokeTestPipeline
 52 |         let failureCause = reason ?? "Skipping because the test is being run on CI"
 53 |         throw XCTSkip(failureCause, file: file, line: line)
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:210:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(_:) instead.
208 |         try localFileSystem.copy(from: srcDir, to: dstDir)
209 |         #else
210 |         try systemQuietly("cp", "-R", "-H", srcDir.pathString, dstDir.pathString)
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(_:) instead.
211 |         #endif
212 |
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:266:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
264 |         }
265 |
266 |         try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
267 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:267:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
265 |
266 |         try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
267 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
268 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
269 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:268:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
266 |         try systemQuietly([Git.tool, "-C", dir.pathString, "init"])
267 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
269 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
270 |         let repo = GitRepository(path: dir)
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:269:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
267 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.email", "example@example.com"])
268 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "user.name", "Example Example"])
269 |         try systemQuietly([Git.tool, "-C", dir.pathString, "config", "commit.gpgsign", "false"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
270 |         let repo = GitRepository(path: dir)
271 |         try repo.stageEverything()
/Users/admin/builder/spi-builder-workspace/Sources/_InternalTestSupport/misc.swift:276:13: warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
274 |             try repo.tag(name: tag)
275 |         }
276 |         try systemQuietly([Git.tool, "-C", dir.pathString, "branch", "-m", "main"])
    |             `- warning: 'systemQuietly' is deprecated: Use Process.checkNonZeroExit(arguments:) instead.
277 |     } catch {
278 |         XCTFail("\(error.interpolationDescription)", file: file, line: line)
[1750/1876] Compiling SWBTaskExecution ClangCachingKeyQueryDynamicTaskSpec.swift
[1751/1876] Compiling SWBTaskExecution ClangCachingMaterializeKeyDynamicTaskSpec.swift
[1752/1876] Compiling SWBTaskExecution ClangCachingOutputMaterializerDynamicTaskSpec.swift
[1753/1879] Emitting module SWBApplePlatform
[1754/1879] Compiling SWBTaskExecution ConcatenateTaskAction.swift
[1755/1879] Compiling SWBTaskExecution ConstructStubExecutorInputFileListTaskAction.swift
[1756/1879] Compiling SWBTaskExecution CopyPlistTaskAction.swift
[1757/1879] Compiling SWBTaskExecution CopyStringsFileTaskAction.swift
[1758/1879] Compiling SWBTaskExecution ClangCompileTaskAction.swift
[1759/1879] Compiling SWBTaskExecution ClangModuleVerifierInputGeneratorTaskAction.swift
[1760/1879] Compiling SWBTaskExecution ClangScanTaskAction.swift
[1761/1879] Compiling SWBTaskExecution CodeSignTaskAction.swift
[1762/1879] Compiling SWBTaskExecution ClangCachingTaskCacheKey.swift
[1763/1879] Compiling SWBTaskExecution ClangModuleDependencyGraph.swift
[1764/1879] Compiling SWBTaskExecution CompilationCachingDataPruner.swift
[1765/1879] Compiling SWBTaskExecution CompilationCachingUploader.swift
[1766/1879] Compiling SWBApplePlatform XCStringsCompiler.swift
[1767/1879] Compiling SWBApplePlatform XCStringsInputFileGroupingStrategy.swift
[1768/1879] Compiling SWBApplePlatform resource_bundle_accessor.swift
[1769/1879] Compiling SWBTaskExecution DynamicTaskOperationContext.swift
[1770/1879] Compiling SWBTaskExecution DynamicTaskSpecRegistry.swift
[1771/1879] Compiling SWBTaskExecution PrecompileClangModuleDynamicTaskSpec.swift
[1772/1879] Compiling SWBTaskExecution SwiftCachingDynamicTaskSpec.swift
[1773/1879] Compiling SWBTaskExecution BuildDescription.swift
[1774/1879] Compiling SWBTaskExecution BuildDescriptionManager.swift
[1775/1879] Compiling SWBTaskExecution BuildDescriptionSignature.swift
[1776/1879] Compiling SWBTaskExecution BuiltinTaskActionsExtension.swift
[1777/1879] Emitting module SWBTaskExecution
[1778/1885] Compiling SWBTaskExecution ProjectPlanner.swift
[1779/1885] Compiling SWBTaskExecution Task.swift
[1780/1885] Compiling SWBTaskExecution TaskActionExtensionPoint.swift
[1781/1885] Compiling SWBTaskExecution AuxiliaryFileTaskAction.swift
[1782/1885] Compiling SWBTaskExecution ClangCachingKeyQueryTaskAction.swift
[1783/1885] Compiling SWBTaskExecution ClangCachingMaterializeKeyTaskAction.swift
[1784/1885] Compiling SWBTaskExecution ClangCachingOutputMaterializerTaskAction.swift
[1785/1885] Compiling SWBTaskExecution SwiftCachingTaskKeys.swift
[1786/1885] Compiling SWBTaskExecution SwiftDriverJobDynamicTaskSpec.swift
[1787/1885] Compiling SWBTaskExecution SwiftDriverPlanningDynamicTaskSpec.swift
[1803/1885] Compiling SWBTaskExecution SwiftCompilationTaskAction.swift
[1804/1885] Compiling SWBTaskExecution SwiftDriverCompilationRequirementTaskAction.swift
[1805/1885] Compiling SWBTaskExecution SwiftDriverJobSchedulingTaskAction.swift
[1806/1885] Compiling SWBTaskExecution SwiftDriverJobTaskAction.swift
[1807/1885] Compiling SWBTaskExecution SwiftDriverTaskAction.swift
[1814/1885] Linking libSwiftPMDataModel.dylib
[1823/1885] Compiling SWBTaskExecution SwiftHeaderToolTaskAction.swift
[1824/1885] Compiling SWBTaskExecution TaskAction.swift
[1825/1885] Compiling SWBTaskExecution ValidateDevelopmentAssetsTaskAction.swift
[1826/1885] Compiling SWBTaskExecution ValidateProductTaskAction.swift
[1827/1885] Compiling SWBTaskExecution TaskResult.swift
[1828/1885] Compiling SWBTaskExecution TaskStore.swift
[1829/1885] Compiling SWBTaskExecution ProcessSDKImportsTaskAction.swift
[1830/1885] Compiling SWBTaskExecution ProcessXCFrameworkTaskAction.swift
[1831/1885] Compiling SWBTaskExecution RegisterExecutionPolicyExceptionTaskAction.swift
[1832/1885] Compiling SWBTaskExecution SignatureCollectionTaskAction.swift
[1833/1885] Compiling SWBTaskExecution SwiftCachingKeyQueryTaskAction.swift
[1834/1885] Compiling SWBTaskExecution SwiftCachingMaterializeKeyTaskAction.swift
[1835/1885] Compiling SWBTaskExecution LinkAssetCatalogTaskAction.swift
[1836/1885] Compiling SWBTaskExecution MergeInfoPlistTaskAction.swift
[1837/1885] Compiling SWBTaskExecution ODRAssetPackManifestTaskAction.swift
[1838/1885] Compiling SWBTaskExecution PrecompileClangModuleTaskAction.swift
[1839/1885] Compiling SWBTaskExecution ProcessProductEntitlementsTaskAction.swift
[1840/1885] Compiling SWBTaskExecution ProcessProductProvisioningProfileTaskAction.swift
[1841/1885] Compiling SWBTaskExecution DeferredExecutionTaskAction.swift
[1842/1885] Compiling SWBTaskExecution EmbedSwiftStdLibTaskAction.swift
[1843/1885] Compiling SWBTaskExecution FileCopyTaskAction.swift
[1844/1885] Compiling SWBTaskExecution GenericCachingTaskAction.swift
[1845/1885] Compiling SWBTaskExecution InfoPlistProcessorTaskAction.swift
[1846/1885] Compiling SWBTaskExecution LSRegisterURLTaskAction.swift
[1854/1904] Compiling SWBUniversalPlatform YaccCompiler.swift
[1855/1905] Compiling SWBUniversalPlatform TestEntryPointGenerationTool.swift
[1856/1905] Compiling SWBUniversalPlatform TestEntryPointTaskProducer.swift
[1857/1905] Compiling SWBUniversalPlatform Plugin.swift
[1858/1905] Compiling SWBUniversalPlatform LexCompiler.swift
[1859/1905] Compiling SWBUniversalPlatform CppTool.swift
[1860/1905] Compiling SWBUniversalPlatform DiffTool.swift
[1861/1905] Emitting module SWBUniversalPlatform
[1862/1905] Compiling SWBUniversalPlatform TestEntryPointGenerationTaskAction.swift
[1863/1905] Compiling SWBUniversalPlatform CopyPlistFile.swift
[1864/1905] Compiling SWBUniversalPlatform CopyStringsFile.swift
[1865/1905] Compiling SWBUniversalPlatform resource_bundle_accessor.swift
[1866/1905] Compiling SWBBuildSystem BuildSystemCache.swift
[1867/1905] Compiling SWBBuildSystem SandboxViolations.swift
[1868/1905] Compiling SWBBuildSystem CleanOperation.swift
[1869/1905] Compiling SWBBuildSystem DependencyCycleFormatter.swift
[1870/1905] Compiling SWBBuildSystem BuildOperationExtension.swift
[1871/1905] Emitting module SWBBuildSystem
[1872/1905] Compiling SWBBuildSystem BuildManager.swift
[1873/1905] Compiling SWBBuildSystem BuildOperation.swift
[1874/1919] Compiling SWBBuildService Session.swift
[1875/1919] Compiling SWBBuildService PreviewInfo.swift
[1876/1919] Compiling SWBBuildService ProjectDescriptor.swift
[1877/1919] Compiling SWBBuildService DocumentationInfo.swift
[1878/1919] Compiling SWBBuildService LocalizationInfo.swift
[1879/1919] Compiling SWBBuildService PlanningOperation.swift
[1880/1920] Compiling SWBBuildService Tools.swift
[1881/1920] Compiling SWBBuildService ClientExchangeDelegate.swift
[1882/1920] Compiling SWBBuildService DependencyGraphMessages.swift
[1883/1920] Compiling SWBBuildService Messages.swift
[1884/1920] Compiling SWBBuildService BuildService.swift
[1885/1920] Compiling SWBBuildService BuildServiceEntryPoint.swift
[1886/1920] Emitting module SWBBuildService
[1887/1920] Compiling SWBBuildService BuildDependencyInfo.swift
[1888/1920] Compiling SWBBuildService BuildOperationMessages.swift
[1889/1931] Compiling SwiftBuildSupport PackagePIFBuilder+Plugins.swift
[1890/1931] Compiling SwiftBuildSupport PackagePIFProjectBuilder.swift
[1891/1932] Compiling SwiftBuildSupport PackagePIFProjectBuilder+Modules.swift
[1892/1932] Compiling SwiftBuildSupport PackagePIFBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBuildSupport/PackagePIFBuilder.swift:380:20: warning: switch must be exhaustive
378 |
379 |         init(from pifProductType: ProjectModel.Target.ProductType) {
380 |             self = switch pifProductType {
    |                    |- warning: switch must be exhaustive
    |                    `- note: add missing case: '.swiftpmTestRunner'
381 |             case .application: .application
382 |             case .staticArchive: .staticArchive
[1893/1932] Compiling SwiftBuildSupport PackagePIFBuilder+Helpers.swift
[1894/1932] Compiling SwiftBuildSupport PIFBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBuildSupport/PIFBuilder.swift:362:58: warning: no calls to throwing functions occur within 'try' expression
360 |                                 var newEnv: Environment = buildCommand.configuration.environment
361 |
362 |                                 if let runtimeLibPaths = try? buildParameters.toolchain.runtimeLibraryPaths {
    |                                                          `- warning: no calls to throwing functions occur within 'try' expression
363 |                                     for libPath in runtimeLibPaths {
364 |                                         newEnv.appendPath(key: .libraryPath, value: libPath.pathString)
[1895/1932] Compiling SwiftBuildSupport PIF.swift
[1896/1932] Compiling SwiftBuildSupport BuildSystem.swift
[1897/1932] Compiling SwiftBuildSupport DotPIFSerializer.swift
[1898/1932] Compiling SwiftBuildSupport PackagePIFProjectBuilder+Products.swift
[1899/1932] Emitting module SwiftBuildSupport
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBuildSupport/SwiftBuildSystem.swift:289:64: warning: converting non-sendable function value to '@Sendable (Int32, Int32, URL?, @escaping @Sendable ((any Error)?) -> Void) -> Void' may introduce data races
287 |         let buildStartTime = ContinuousClock.Instant.now
288 |
289 |         try await withService(connectionMode: .inProcessStatic(swiftbuildServiceEntryPoint)) { service in
    |                                                                `- warning: converting non-sendable function value to '@Sendable (Int32, Int32, URL?, @escaping @Sendable ((any Error)?) -> Void) -> Void' may introduce data races
290 |             let parameters = try self.makeBuildParameters()
291 |             let derivedDataPath = self.buildParameters.dataPath.pathString
[1900/1932] Compiling SwiftBuildSupport SwiftBuildSystem.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBuildSupport/SwiftBuildSystem.swift:289:64: warning: converting non-sendable function value to '@Sendable (Int32, Int32, URL?, @escaping @Sendable ((any Error)?) -> Void) -> Void' may introduce data races
287 |         let buildStartTime = ContinuousClock.Instant.now
288 |
289 |         try await withService(connectionMode: .inProcessStatic(swiftbuildServiceEntryPoint)) { service in
    |                                                                `- warning: converting non-sendable function value to '@Sendable (Int32, Int32, URL?, @escaping @Sendable ((any Error)?) -> Void) -> Void' may introduce data races
290 |             let parameters = try self.makeBuildParameters()
291 |             let derivedDataPath = self.buildParameters.dataPath.pathString
/Users/admin/builder/spi-builder-workspace/Sources/SwiftBuildSupport/SwiftBuildSystem.swift:613:13: warning: variable 'settings' was never mutated; consider changing to 'let' constant
611 |
612 |     private static func constructDebuggingSettingsOverrides(from parameters: BuildParameters.Debugging) -> [String: String] {
613 |         var settings: [String: String] = [:]
    |             `- warning: variable 'settings' was never mutated; consider changing to 'let' constant
614 |         // TODO: debugInfoFormat: https://github.com/swiftlang/swift-build/issues/560
615 |         // TODO: shouldEnableDebuggingEntitlement: Enable/Disable get-task-allow
[1900/1932] Write Objects.LinkFileList
[1902/1942] Compiling _InternalBuildTestSupport MockBuildTestHelper.swift
[1903/1942] Emitting module _InternalBuildTestSupport
[1904/1942] Compiling _InternalBuildTestSupport PIFTester.swift
[1905/1942] Emitting module swift_bootstrap
[1906/1942] Compiling swift_bootstrap main.swift
[1907/1942] Compiling CoreCommands SwiftCommandState.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreCommands/SwiftCommandState.swift:417:22: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 415 |
 416 |         // set global process logging handler
 417 |         AsyncProcess.loggingHandler = { self.observabilityScope.emit(debug: $0) }
     |                      `- warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
 418 |     }
 419 |
/Users/admin/builder/spi-builder-workspace/Sources/CoreCommands/SwiftCommandState.swift:813:78: warning: converting non-sendable function value to '@Sendable (DispatchTime) async throws -> Void' may introduce data races
 811 |
 812 |         // register the build system with the cancellation handler
 813 |         self.cancellator.register(name: "build system", handler: buildSystem.cancel)
     |                                                                              `- warning: converting non-sendable function value to '@Sendable (DispatchTime) async throws -> Void' may introduce data races
 814 |         return buildSystem
 815 |     }
[1907/1942] Write Objects.LinkFileList
[1909/1942] Compiling CoreCommands SwiftCommandObservabilityHandler.swift
[1910/1942] Compiling CoreCommands BuildSystemSupport.swift
[1911/1942] Emitting module CoreCommands
[1912/1942] Compiling CoreCommands Options.swift
[1913/1999] Compiling SwiftSDKCommand ListSwiftSDKs.swift
[1914/2000] Compiling SwiftSDKCommand SwiftSDKCommand.swift
[1915/2000] Compiling SwiftSDKCommand RemoveSwiftSDK.swift
[1916/2000] Compiling SwiftSDKCommand InstallSwiftSDK.swift
[1917/2000] Compiling SwiftSDKCommand SwiftSDKSubcommand.swift
[1918/2000] Compiling SwiftSDKCommand SetConfiguration.swift
[1919/2000] Compiling Commands CommandWorkspaceDelegate.swift
[1920/2000] Compiling Commands APIDiff.swift
[1921/2000] Compiling SwiftSDKCommand ShowConfiguration.swift
[1922/2000] Compiling SwiftSDKCommand ResetConfiguration.swift
[1923/2000] Emitting module SwiftSDKCommand
[1924/2000] Compiling SwiftSDKCommand ConfigureSwiftSDK.swift
[1925/2000] Emitting module Commands
[1926/2004] Compiling Commands AddTarget.swift
[1927/2004] Compiling Commands AddTargetDependency.swift
[1928/2004] Compiling Commands ArchiveSource.swift
[1929/2004] Compiling Commands AuditBinaryArtifact.swift
[1930/2004] Compiling Commands CompletionCommand.swift
[1931/2004] Compiling Commands DependenciesSerializer.swift
[1932/2004] Compiling Commands DescribedPackage.swift
[1933/2004] Compiling Commands MermaidPackageSerializer.swift
[1934/2004] Compiling Commands MultiRootSupport.swift
[1935/2004] Compiling Commands PlainTextEncoder.swift
[1936/2004] Compiling Commands SwiftPackageCommand.swift
[1937/2004] Compiling Commands ToolsVersionCommand.swift
[1938/2004] Compiling Commands Update.swift
[1939/2004] Compiling Commands Card.swift
[1940/2004] Compiling Commands CardEvent.swift
[1941/2004] Compiling Commands Format.swift
[1942/2004] Compiling Commands Init.swift
[1943/2004] Compiling Commands Install.swift
[1944/2004] Compiling Commands Learn.swift
[1945/2004] Compiling Commands Migrate.swift
[1948/2004] Compiling Commands AddDependency.swift
[1949/2004] Compiling Commands AddProduct.swift
[1950/2004] Compiling Commands AddSetting.swift
[1951/2004] Compiling Commands PluginCommand.swift
[1952/2004] Compiling Commands ResetCommands.swift
[1953/2004] Compiling Commands Resolve.swift
[1954/2004] Compiling Commands ShowDependencies.swift
[1955/2004] Compiling Commands ShowExecutables.swift
[1956/2004] Compiling Commands PluginDelegate.swift
[1957/2004] Compiling Commands SymbolGraphExtract.swift
[1958/2004] Compiling Commands TestingSupport.swift
[1959/2004] Compiling Commands XCTEvents.swift
[1960/2004] Compiling Commands CardStack.swift
[1961/2004] Compiling Commands SnippetCard.swift
[1962/2004] Compiling Commands SnippetGroupCard.swift
[1963/2004] Compiling Commands TopCard.swift
[1964/2004] Compiling Commands Colorful.swift
[1965/2004] Compiling Commands ComputeChecksum.swift
[1966/2004] Compiling Commands Config.swift
[1967/2004] Compiling Commands Describe.swift
[1968/2004] Compiling Commands DumpCommands.swift
[1969/2004] Compiling Commands EditCommands.swift
[1970/2004] Compiling Commands SwiftBuildCommand.swift
[1971/2004] Compiling Commands SwiftRunCommand.swift
[1972/2004] Compiling Commands SwiftTestCommand.swift
[1973/2004] Compiling Commands APIDigester.swift
[1974/2004] Compiling Commands DOTManifestSerializer.swift
[1974/2022] Linking swift-bootstrap
[1976/2022] Emitting module swift_experimental_sdk
[1977/2022] Compiling swift_experimental_sdk Entrypoint.swift
[1978/2022] Compiling swift_run Entrypoint.swift
[1979/2022] Emitting module swift_build
[1980/2022] Compiling swift_build Entrypoint.swift
[1981/2022] Emitting module swift_run
[1982/2022] Compiling swift_package Entrypoint.swift
[1983/2022] Emitting module swift_package
[1983/2022] Applying swift-bootstrap
[1985/2022] Emitting module swift_sdk
[1986/2022] Compiling swift_sdk Entrypoint.swift
[1987/2022] Emitting module swift_test
[1988/2022] Compiling swift_test Entrypoint.swift
[1988/2022] Write Objects.LinkFileList
[1994/2022] Linking libSwiftPM.dylib
[1996/2022] Compiling PackageRegistryCommand PackageRegistryCommand.swift
[1997/2022] Compiling PackageRegistryCommand PackageRegistryCommand+Auth.swift
[1998/2022] Emitting module PackageRegistryCommand
[1999/2022] Compiling PackageRegistryCommand PackageRegistryCommand+Publish.swift
/Users/admin/builder/spi-builder-workspace/Sources/PackageRegistryCommand/PackageRegistryCommand+Publish.swift:436:25: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
434 |         manifests.append(Manifest.filename)
435 |
436 |         let regex = try RegEx(pattern: #"^Package@swift-(\d+)(?:\.(\d+))?(?:\.(\d+))?.swift$"#)
    |                         `- warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
437 |         let versionSpecificManifests: [String] = packageContents.filter { file in
438 |             let matchGroups = regex.matchGroups(in: file)
[2000/2024] Compiling PackageCollectionsCommand PackageCollectionsCommand.swift
[2001/2024] Emitting module PackageCollectionsCommand
[2002/2024] Compiling swift_package_registry runner.swift
[2003/2024] Emitting module swift_package_registry
[2003/2024] Write Objects.LinkFileList
[2005/2028] Emitting module swift_package_collection
[2006/2028] Compiling swift_package_collection Entrypoint.swift
[2007/2028] Compiling swift_package_manager SwiftPM.swift
[2008/2028] Emitting module swift_package_manager
[2008/2028] Write Objects.LinkFileList
[2010/2028] Linking swift-test
[2011/2028] Linking swift-experimental-sdk
[2012/2028] Linking swift-sdk
[2013/2028] Linking swift-run
[2014/2028] Linking swift-build
[2015/2028] Linking swift-package
[2016/2028] Applying swift-test
[2017/2028] Applying swift-experimental-sdk
[2018/2028] Applying swift-sdk
[2019/2028] Linking swift-package-registry
[2020/2028] Applying swift-run
[2021/2028] Applying swift-build
[2022/2028] Applying swift-package
[2023/2028] Applying swift-package-registry
[2024/2028] Linking swift-package-collection
[2025/2028] Linking swift-package-manager
[2026/2028] Applying swift-package-collection
[2027/2028] Applying swift-package-manager
Build complete! (59.51s)
warning: failed to retrieve search paths with pkg-config; maybe pkg-config is not installed
warning: couldn't find pc file for sqlite3
warning: couldn't find pc file for sqlite3
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-llbuild",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-llbuild.git"
    },
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.1",
            "upper_bound" : "1.6.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser.git"
    },
    {
      "identity" : "swift-crypto",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.0.0",
            "upper_bound" : "3.1.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-crypto.git"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    },
    {
      "identity" : "swift-system",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-system.git"
    },
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.1",
            "upper_bound" : "1.2.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections.git"
    },
    {
      "identity" : "swift-certificates",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.1",
            "upper_bound" : "1.6.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-certificates.git"
    },
    {
      "identity" : "swift-toolchain-sqlite",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-toolchain-sqlite.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-docc-plugin"
    },
    {
      "identity" : "swift-tools-support-core",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-tools-support-core.git"
    },
    {
      "identity" : "swift-driver",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-driver.git"
    },
    {
      "identity" : "swift-build",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-build.git"
    }
  ],
  "manifest_display_name" : "SwiftPM",
  "name" : "SwiftPM",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "17.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftPM",
      "targets" : [
        "PackageCollections",
        "PackageCollectionsModel",
        "PackageGraph",
        "PackageLoading",
        "PackageMetadata",
        "PackageModel",
        "PackageModelSyntax",
        "SourceControl",
        "Workspace",
        "Build",
        "LLBuildManifest",
        "SourceKitLSPAPI",
        "SPMLLBuild",
        "SwiftBuildSupport"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "SwiftPM-auto",
      "targets" : [
        "PackageCollections",
        "PackageCollectionsModel",
        "PackageGraph",
        "PackageLoading",
        "PackageMetadata",
        "PackageModel",
        "PackageModelSyntax",
        "SourceControl",
        "Workspace",
        "Build",
        "LLBuildManifest",
        "SourceKitLSPAPI",
        "SPMLLBuild",
        "SwiftBuildSupport"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftPMDataModel",
      "targets" : [
        "PackageCollections",
        "PackageCollectionsModel",
        "PackageGraph",
        "PackageLoading",
        "PackageMetadata",
        "PackageModel",
        "PackageModelSyntax",
        "SourceControl",
        "Workspace"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "SwiftPMDataModel-auto",
      "targets" : [
        "PackageCollections",
        "PackageCollectionsModel",
        "PackageGraph",
        "PackageLoading",
        "PackageMetadata",
        "PackageModel",
        "PackageModelSyntax",
        "SourceControl",
        "Workspace"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "XCBuildSupport",
      "targets" : [
        "XCBuildSupport"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "PackageDescription",
      "targets" : [
        "PackageDescription",
        "CompilerPluginSupport"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "AppleProductTypes",
      "targets" : [
        "AppleProductTypes"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "PackagePlugin",
      "targets" : [
        "PackagePlugin"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "PackageCollectionsModel",
      "targets" : [
        "PackageCollectionsModel"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftPMPackageCollections",
      "targets" : [
        "PackageCollections",
        "PackageCollectionsModel",
        "PackageCollectionsSigning",
        "PackageModel"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "swiftpm-testing-helper",
      "targets" : [
        "swiftpm-testing-helper"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-test",
      "targets" : [
        "swift-test"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-sdk",
      "targets" : [
        "swift-sdk"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-run",
      "targets" : [
        "swift-run"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-package-registry",
      "targets" : [
        "swift-package-registry"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-package-manager",
      "targets" : [
        "swift-package-manager"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-package-collection",
      "targets" : [
        "swift-package-collection"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-package",
      "targets" : [
        "swift-package"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-experimental-sdk",
      "targets" : [
        "swift-experimental-sdk"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-build-prebuilts",
      "targets" : [
        "swift-build-prebuilts"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-build",
      "targets" : [
        "swift-build"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "swift-bootstrap",
      "targets" : [
        "swift-bootstrap"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "package-info",
      "targets" : [
        "package-info"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "dummy-swiftc",
      "targets" : [
        "dummy-swiftc"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "tsan_utils",
      "module_type" : "ClangTarget",
      "name" : "tsan_utils",
      "path" : "Sources/tsan_utils",
      "sources" : [
        "tsan_utils.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "swiftpm_testing_helper",
      "module_type" : "SwiftTarget",
      "name" : "swiftpm-testing-helper",
      "path" : "Sources/swiftpm-testing-helper",
      "product_memberships" : [
        "swiftpm-testing-helper"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_test",
      "module_type" : "SwiftTarget",
      "name" : "swift-test",
      "path" : "Sources/swift-test",
      "product_memberships" : [
        "swift-test"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Commands"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_sdk",
      "module_type" : "SwiftTarget",
      "name" : "swift-sdk",
      "path" : "Sources/swift-sdk",
      "product_memberships" : [
        "swift-sdk"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Commands",
        "SwiftSDKCommand"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_run",
      "module_type" : "SwiftTarget",
      "name" : "swift-run",
      "path" : "Sources/swift-run",
      "product_memberships" : [
        "swift-run"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Commands"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_package_registry",
      "module_type" : "SwiftTarget",
      "name" : "swift-package-registry",
      "path" : "Sources/swift-package-registry",
      "product_memberships" : [
        "swift-package-registry"
      ],
      "sources" : [
        "runner.swift"
      ],
      "target_dependencies" : [
        "Commands",
        "PackageRegistryCommand"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_package_manager",
      "module_type" : "SwiftTarget",
      "name" : "swift-package-manager",
      "path" : "Sources/swift-package-manager",
      "product_memberships" : [
        "swift-package-manager"
      ],
      "sources" : [
        "SwiftPM.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Commands",
        "SwiftSDKCommand",
        "PackageCollectionsCommand",
        "PackageRegistryCommand"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_package_collection",
      "module_type" : "SwiftTarget",
      "name" : "swift-package-collection",
      "path" : "Sources/swift-package-collection",
      "product_memberships" : [
        "swift-package-collection"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Commands",
        "PackageCollectionsCommand"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_package",
      "module_type" : "SwiftTarget",
      "name" : "swift-package",
      "path" : "Sources/swift-package",
      "product_memberships" : [
        "swift-package"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Commands"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_experimental_sdk",
      "module_type" : "SwiftTarget",
      "name" : "swift-experimental-sdk",
      "path" : "Sources/swift-experimental-sdk",
      "product_memberships" : [
        "swift-experimental-sdk"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Commands",
        "SwiftSDKCommand"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_build_prebuilts",
      "module_type" : "SwiftTarget",
      "name" : "swift-build-prebuilts",
      "path" : "Sources/swift-build-prebuilts",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "swift-build-prebuilts"
      ],
      "sources" : [
        "BuildPrebuilts.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Workspace"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_build",
      "module_type" : "SwiftTarget",
      "name" : "swift-build",
      "path" : "Sources/swift-build",
      "product_memberships" : [
        "swift-build"
      ],
      "sources" : [
        "Entrypoint.swift"
      ],
      "target_dependencies" : [
        "Commands"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "swift_bootstrap",
      "module_type" : "SwiftTarget",
      "name" : "swift-bootstrap",
      "path" : "Sources/swift-bootstrap",
      "product_dependencies" : [
        "ArgumentParser",
        "OrderedCollections"
      ],
      "product_memberships" : [
        "swift-bootstrap"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Build",
        "PackageGraph",
        "PackageLoading",
        "PackageModel",
        "XCBuildSupport",
        "SwiftBuildSupport"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "package_info",
      "module_type" : "SwiftTarget",
      "name" : "package-info",
      "path" : "Examples/package-info/Sources/package-info",
      "product_memberships" : [
        "package-info"
      ],
      "sources" : [
        "example.swift"
      ],
      "target_dependencies" : [
        "Workspace"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "dummy_swiftc",
      "module_type" : "SwiftTarget",
      "name" : "dummy-swiftc",
      "path" : "Sources/dummy-swiftc",
      "product_memberships" : [
        "dummy-swiftc"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "Basics"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "_InternalTestSupportTests",
      "module_type" : "SwiftTarget",
      "name" : "_InternalTestSupportTests",
      "path" : "Tests/_InternalTestSupportTests",
      "sources" : [
        "Misc.swift",
        "XCTAssertHelpersTests.swift"
      ],
      "target_dependencies" : [
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "_InternalTestSupport",
      "module_type" : "SwiftTarget",
      "name" : "_InternalTestSupport",
      "path" : "Sources/_InternalTestSupport",
      "product_dependencies" : [
        "OrderedCollections",
        "TSCTestSupport"
      ],
      "sources" : [
        "BuildSystemProvider+Configuration.swift",
        "BuildSystemProvider+Supported.swift",
        "Commands.swift",
        "GitRepositoryExtensions.swift",
        "InMemoryGitRepository.swift",
        "ManifestExtensions.swift",
        "MockArchiver.swift",
        "MockBuildTestHelper.swift",
        "MockDependency.swift",
        "MockDependencyGraph.swift",
        "MockHTTPClient.swift",
        "MockHashAlgorithm.swift",
        "MockManifestLoader.swift",
        "MockPackage.swift",
        "MockPackageContainer.swift",
        "MockPackageFingerprintStorage.swift",
        "MockPackageGraphs.swift",
        "MockPackageSigningEntityStorage.swift",
        "MockProduct.swift",
        "MockRegistry.swift",
        "MockTarget.swift",
        "MockWorkspace.swift",
        "Observability.swift",
        "PackageDependencyDescriptionExtensions.swift",
        "PackageGraphTester.swift",
        "ResolvedModule+Mock.swift",
        "SkippedTestSupport.swift",
        "SwiftPMProduct.swift",
        "Toolchain.swift",
        "XCTAssertHelpers.swift",
        "misc.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageFingerprint",
        "PackageGraph",
        "PackageLoading",
        "PackageRegistry",
        "PackageSigning",
        "SourceControl",
        "Workspace"
      ],
      "type" : "library"
    },
    {
      "c99name" : "_InternalBuildTestSupport",
      "module_type" : "SwiftTarget",
      "name" : "_InternalBuildTestSupport",
      "path" : "Sources/_InternalBuildTestSupport",
      "sources" : [
        "MockBuildTestHelper.swift",
        "PIFTester.swift"
      ],
      "target_dependencies" : [
        "Build",
        "XCBuildSupport",
        "SwiftBuildSupport",
        "_InternalTestSupport"
      ],
      "type" : "library"
    },
    {
      "c99name" : "_AsyncFileSystemTests",
      "module_type" : "SwiftTarget",
      "name" : "_AsyncFileSystemTests",
      "path" : "Tests/_AsyncFileSystemTests",
      "sources" : [
        "AsyncFileSystemTests.swift"
      ],
      "target_dependencies" : [
        "_AsyncFileSystem",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "_AsyncFileSystem",
      "module_type" : "SwiftTarget",
      "name" : "_AsyncFileSystem",
      "path" : "Sources/_AsyncFileSystem",
      "product_dependencies" : [
        "SystemPackage"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "SwiftPMPackageCollections",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info",
        "dummy-swiftc"
      ],
      "sources" : [
        "AsyncFileSystem.swift",
        "ConcurrencySupport.swift",
        "MockFileSystem.swift",
        "OSFileSystem.swift",
        "OpenReadableFile.swift",
        "OpenWritableFile.swift",
        "ReadableFileStream.swift",
        "WritableStream.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "XCBuildSupportTests",
      "module_type" : "SwiftTarget",
      "name" : "XCBuildSupportTests",
      "path" : "Tests/XCBuildSupportTests",
      "sources" : [
        "PIFBuilderTests.swift",
        "PIFTests.swift"
      ],
      "target_dependencies" : [
        "XCBuildSupport",
        "_InternalTestSupport",
        "_InternalBuildTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "XCBuildSupport",
      "module_type" : "SwiftTarget",
      "name" : "XCBuildSupport",
      "path" : "Sources/XCBuildSupport",
      "product_dependencies" : [
        "OrderedCollections"
      ],
      "product_memberships" : [
        "XCBuildSupport",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build",
        "swift-bootstrap"
      ],
      "sources" : [
        "PIF.swift",
        "PIFBuilder.swift",
        "XCBuildDelegate.swift",
        "XCBuildMessage.swift",
        "XCBuildOutputParser.swift",
        "XcodeBuildSystem.swift"
      ],
      "target_dependencies" : [
        "SPMBuildCore",
        "PackageGraph"
      ],
      "type" : "library"
    },
    {
      "c99name" : "WorkspaceTests",
      "module_type" : "SwiftTarget",
      "name" : "WorkspaceTests",
      "path" : "Tests/WorkspaceTests",
      "sources" : [
        "AuthorizationProviderTests.swift",
        "InitTests.swift",
        "ManifestSourceGenerationTests.swift",
        "MirrorsConfigurationTests.swift",
        "PrebuiltsTests.swift",
        "RegistryPackageContainerTests.swift",
        "ResolvedPackagesStoreTests.swift",
        "SourceControlPackageContainerTests.swift",
        "ToolsVersionSpecificationGenerationTests.swift",
        "ToolsVersionSpecificationRewriterTests.swift",
        "WorkspaceStateTests.swift",
        "WorkspaceTests.swift"
      ],
      "target_dependencies" : [
        "Workspace",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Workspace",
      "module_type" : "SwiftTarget",
      "name" : "Workspace",
      "path" : "Sources/Workspace",
      "product_dependencies" : [
        "OrderedCollections"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "package-info"
      ],
      "sources" : [
        "CheckoutState.swift",
        "Diagnostics.swift",
        "InitPackage.swift",
        "LoadableResult.swift",
        "ManagedArtifact.swift",
        "ManagedDependency.swift",
        "ManagedPrebuilt.swift",
        "ManifestSigning/Base64URL.swift",
        "ManifestSigning/CertificatePolicy.swift",
        "ManifestSigning/ManifestSigning.swift",
        "ManifestSigning/Signature.swift",
        "ManifestSigning/Utilities.swift",
        "ManifestSigning/X509Extensions.swift",
        "ManifestSigning/embedded_resources.swift",
        "PackageContainer/FileSystemPackageContainer.swift",
        "PackageContainer/RegistryPackageContainer.swift",
        "PackageContainer/SourceControlPackageContainer.swift",
        "ResolvedFileWatcher.swift",
        "ResolverPrecomputationProvider.swift",
        "ToolsVersionSpecificationRewriter.swift",
        "Workspace+BinaryArtifacts.swift",
        "Workspace+Configuration.swift",
        "Workspace+Delegation.swift",
        "Workspace+Dependencies.swift",
        "Workspace+Editing.swift",
        "Workspace+Manifests.swift",
        "Workspace+PackageContainer.swift",
        "Workspace+Prebuilts.swift",
        "Workspace+Registry.swift",
        "Workspace+ResolvedPackages.swift",
        "Workspace+Signing.swift",
        "Workspace+SourceControl.swift",
        "Workspace+State.swift",
        "Workspace.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageFingerprint",
        "PackageGraph",
        "PackageModel",
        "PackageRegistry",
        "PackageSigning",
        "SourceControl",
        "SPMBuildCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SwiftSDKCommand",
      "module_type" : "SwiftTarget",
      "name" : "SwiftSDKCommand",
      "path" : "Sources/SwiftSDKCommand",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "swift-sdk",
        "swift-package-manager",
        "swift-experimental-sdk"
      ],
      "sources" : [
        "Configuration/ConfigurationSubcommand.swift",
        "Configuration/DeprecatedSwiftSDKConfigurationCommand.swift",
        "Configuration/ResetConfiguration.swift",
        "Configuration/SetConfiguration.swift",
        "Configuration/ShowConfiguration.swift",
        "ConfigureSwiftSDK.swift",
        "InstallSwiftSDK.swift",
        "ListSwiftSDKs.swift",
        "RemoveSwiftSDK.swift",
        "SwiftSDKCommand.swift",
        "SwiftSDKSubcommand.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "CoreCommands",
        "SPMBuildCore",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SwiftFixItTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftFixItTests",
      "path" : "Tests/SwiftFixItTests",
      "sources" : [
        "BasicTests.swift",
        "CategoryTests.swift",
        "FilteringTests.swift",
        "Utilities.swift"
      ],
      "target_dependencies" : [
        "SwiftFixIt",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftFixIt",
      "module_type" : "SwiftTarget",
      "name" : "SwiftFixIt",
      "path" : "Sources/SwiftFixIt",
      "product_dependencies" : [
        "TSCBasic",
        "SwiftDiagnostics",
        "SwiftIDEUtils",
        "SwiftParser",
        "SwiftSyntax"
      ],
      "product_memberships" : [
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build"
      ],
      "sources" : [
        "SwiftFixIt.swift"
      ],
      "target_dependencies" : [
        "Basics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SwiftBuildSupport",
      "module_type" : "SwiftTarget",
      "name" : "SwiftBuildSupport",
      "path" : "Sources/SwiftBuildSupport",
      "product_dependencies" : [
        "SwiftBuild",
        "SWBBuildService"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build",
        "swift-bootstrap"
      ],
      "sources" : [
        "BuildSystem.swift",
        "DotPIFSerializer.swift",
        "PIF.swift",
        "PIFBuilder.swift",
        "PackagePIFBuilder+Helpers.swift",
        "PackagePIFBuilder+Plugins.swift",
        "PackagePIFBuilder.swift",
        "PackagePIFProjectBuilder+Modules.swift",
        "PackagePIFProjectBuilder+Products.swift",
        "PackagePIFProjectBuilder.swift",
        "SwiftBuildSystem.swift"
      ],
      "target_dependencies" : [
        "SPMBuildCore",
        "PackageGraph"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SourceKitLSPAPITests",
      "module_type" : "SwiftTarget",
      "name" : "SourceKitLSPAPITests",
      "path" : "Tests/SourceKitLSPAPITests",
      "sources" : [
        "SourceKitLSPAPITests.swift"
      ],
      "target_dependencies" : [
        "SourceKitLSPAPI",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SourceKitLSPAPI",
      "module_type" : "SwiftTarget",
      "name" : "SourceKitLSPAPI",
      "path" : "Sources/SourceKitLSPAPI",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto"
      ],
      "sources" : [
        "BuildDescription.swift",
        "PluginTargetBuildDescription.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Build",
        "PackageGraph",
        "PackageLoading",
        "PackageModel",
        "SPMBuildCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SourceControlTests",
      "module_type" : "SwiftTarget",
      "name" : "SourceControlTests",
      "path" : "Tests/SourceControlTests",
      "sources" : [
        "GitRepositoryProviderTests.swift",
        "GitRepositoryTests.swift",
        "InMemoryGitRepositoryTests.swift",
        "RepositoryManagerTests.swift"
      ],
      "target_dependencies" : [
        "SourceControl",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SourceControl",
      "module_type" : "SwiftTarget",
      "name" : "SourceControl",
      "path" : "Sources/SourceControl",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "SwiftPMPackageCollections",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info"
      ],
      "sources" : [
        "GitRepository.swift",
        "Repository.swift",
        "RepositoryManager.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SPMSQLite3",
      "module_type" : "SystemLibraryTarget",
      "name" : "SPMSQLite3",
      "path" : "Sources/SPMSQLite3",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "SwiftPMPackageCollections",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info",
        "dummy-swiftc"
      ],
      "sources" : [
      ],
      "type" : "system-target"
    },
    {
      "c99name" : "SPMLLBuild",
      "module_type" : "SwiftTarget",
      "name" : "SPMLLBuild",
      "path" : "Sources/SPMLLBuild",
      "product_dependencies" : [
        "llbuildSwift"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build",
        "swift-bootstrap"
      ],
      "sources" : [
        "llbuild.swift"
      ],
      "target_dependencies" : [
        "Basics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SPMBuildCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "SPMBuildCoreTests",
      "path" : "Tests/SPMBuildCoreTests",
      "sources" : [
        "ArtifactsArchiveMetadataTests.swift",
        "BuildParametersTests.swift",
        "XCFrameworkMetadataTests.swift"
      ],
      "target_dependencies" : [
        "SPMBuildCore",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SPMBuildCore",
      "module_type" : "SwiftTarget",
      "name" : "SPMBuildCore",
      "path" : "Sources/SPMBuildCore",
      "product_dependencies" : [
        "OrderedCollections"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info"
      ],
      "sources" : [
        "BinaryTarget+Extensions.swift",
        "BuildParameters/BuildParameters+Debugging.swift",
        "BuildParameters/BuildParameters+Driver.swift",
        "BuildParameters/BuildParameters+Linking.swift",
        "BuildParameters/BuildParameters+Output.swift",
        "BuildParameters/BuildParameters+Testing.swift",
        "BuildParameters/BuildParameters.swift",
        "BuildSystem/BuildSystem.swift",
        "BuildSystem/BuildSystemCommand.swift",
        "BuildSystem/BuildSystemDelegate.swift",
        "BuiltTestProduct.swift",
        "CommandPluginResult.swift",
        "Plugins/DefaultPluginScriptRunner.swift",
        "Plugins/PluginContextSerializer.swift",
        "Plugins/PluginInvocation.swift",
        "Plugins/PluginMessages.swift",
        "Plugins/PluginScriptRunner.swift",
        "ResolvedPackage+Extensions.swift",
        "Triple+Extensions.swift",
        "XCFrameworkMetadata.swift",
        "XcodeProjectRepresentation.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageGraph"
      ],
      "type" : "library"
    },
    {
      "c99name" : "QueryEngineTests",
      "module_type" : "SwiftTarget",
      "name" : "QueryEngineTests",
      "path" : "Tests/QueryEngineTests",
      "sources" : [
        "QueryEngineTests.swift"
      ],
      "target_dependencies" : [
        "QueryEngine",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "QueryEngine",
      "module_type" : "SwiftTarget",
      "name" : "QueryEngine",
      "path" : "Sources/QueryEngine",
      "product_dependencies" : [
        "Crypto"
      ],
      "sources" : [
        "CacheKey.swift",
        "FileCacheRecord.swift",
        "Query.swift",
        "QueryEngine.swift"
      ],
      "target_dependencies" : [
        "_AsyncFileSystem",
        "Basics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageSigningTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageSigningTests",
      "path" : "Tests/PackageSigningTests",
      "sources" : [
        "FilePackageSigningEntityStorageTests.swift",
        "SigningEntityTests.swift",
        "SigningIdentityTests.swift",
        "SigningTests.swift",
        "Utilities.swift"
      ],
      "target_dependencies" : [
        "_InternalTestSupport",
        "PackageSigning"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageSigning",
      "module_type" : "SwiftTarget",
      "name" : "PackageSigning",
      "path" : "Sources/PackageSigning",
      "product_dependencies" : [
        "Crypto",
        "X509"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "package-info"
      ],
      "sources" : [
        "CertificateStores.swift",
        "SignatureProvider.swift",
        "SigningEntity/FilePackageSigningEntityStorage.swift",
        "SigningEntity/PackageSigningEntityStorage.swift",
        "SigningEntity/SigningEntity.swift",
        "SigningIdentity.swift",
        "VerifierPolicies.swift",
        "X509Extensions.swift",
        "embedded_resources.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageRegistryTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageRegistryTests",
      "path" : "Tests/PackageRegistryTests",
      "sources" : [
        "PackageSigningEntityTOFUTests.swift",
        "PackageVersionChecksumTOFUTests.swift",
        "RegistryClientTests.swift",
        "RegistryConfigurationTests.swift",
        "RegistryDownloadsManagerTests.swift",
        "SignatureValidationTests.swift"
      ],
      "target_dependencies" : [
        "_InternalTestSupport",
        "PackageRegistry"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageRegistryCommand",
      "module_type" : "SwiftTarget",
      "name" : "PackageRegistryCommand",
      "path" : "Sources/PackageRegistryCommand",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "swift-package-registry",
        "swift-package-manager"
      ],
      "sources" : [
        "PackageRegistryCommand+Auth.swift",
        "PackageRegistryCommand+Publish.swift",
        "PackageRegistryCommand.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Commands",
        "CoreCommands",
        "PackageGraph",
        "PackageLoading",
        "PackageModel",
        "PackageRegistry",
        "PackageSigning",
        "SourceControl",
        "SPMBuildCore",
        "Workspace"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageRegistry",
      "module_type" : "SwiftTarget",
      "name" : "PackageRegistry",
      "path" : "Sources/PackageRegistry",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "package-info"
      ],
      "sources" : [
        "ChecksumTOFU.swift",
        "RegistryClient.swift",
        "RegistryConfiguration.swift",
        "RegistryDownloadsManager.swift",
        "SignatureValidation.swift",
        "SigningEntityTOFU.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageFingerprint",
        "PackageLoading",
        "PackageModel",
        "PackageSigning"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackagePluginAPITests",
      "module_type" : "SwiftTarget",
      "name" : "PackagePluginAPITests",
      "path" : "Tests/PackagePluginAPITests",
      "sources" : [
        "ArgumentExtractorTests.swift",
        "PathTests.swift"
      ],
      "target_dependencies" : [
        "PackagePlugin",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackagePlugin",
      "module_type" : "SwiftTarget",
      "name" : "PackagePlugin",
      "path" : "Sources/PackagePlugin",
      "product_memberships" : [
        "PackagePlugin"
      ],
      "sources" : [
        "ArgumentExtractor.swift",
        "Command.swift",
        "Context.swift",
        "Diagnostics.swift",
        "Errors.swift",
        "PackageManagerProxy.swift",
        "PackageModel.swift",
        "Path.swift",
        "Plugin.swift",
        "PluginContextDeserializer.swift",
        "PluginMessages.swift",
        "Protocols.swift",
        "Utilities.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageModelTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageModelTests",
      "path" : "Tests/PackageModelTests",
      "sources" : [
        "CanonicalPackageLocationTests.swift",
        "InstalledSwiftPMConfigurationTests.swift",
        "ManifestTests.swift",
        "MinimumDeploymentTargetTests.swift",
        "PackageIdentityNameTests.swift",
        "PackageIdentityParser.swift",
        "PackageIdentityScopeTests.swift",
        "PackageModelTests.swift",
        "SnippetTests.swift",
        "SwiftLanguageVersionTests.swift",
        "SwiftSDKBundleTests.swift",
        "SwiftSDKTests.swift",
        "ToolsVersionTests.swift",
        "ToolsetTests.swift"
      ],
      "target_dependencies" : [
        "PackageModel",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageModelSyntaxTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageModelSyntaxTests",
      "path" : "Tests/PackageModelSyntaxTests",
      "product_dependencies" : [
        "SwiftIDEUtils"
      ],
      "sources" : [
        "ManifestEditTests.swift"
      ],
      "target_dependencies" : [
        "PackageModelSyntax",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageModelSyntax",
      "module_type" : "SwiftTarget",
      "name" : "PackageModelSyntax",
      "path" : "Sources/PackageModelSyntax",
      "product_dependencies" : [
        "SwiftBasicFormat",
        "SwiftDiagnostics",
        "SwiftIDEUtils",
        "SwiftParser",
        "SwiftSyntax",
        "SwiftSyntaxBuilder"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build"
      ],
      "sources" : [
        "AddPackageDependency.swift",
        "AddProduct.swift",
        "AddSwiftSetting.swift",
        "AddTarget.swift",
        "AddTargetDependency.swift",
        "ManifestEditError.swift",
        "ManifestSyntaxRepresentable.swift",
        "PackageDependency+Syntax.swift",
        "PackageEditResult.swift",
        "ProductDescription+Syntax.swift",
        "SyntaxEditUtils.swift",
        "TargetDescription+Syntax.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageLoading",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageModel",
      "module_type" : "SwiftTarget",
      "name" : "PackageModel",
      "path" : "Sources/PackageModel",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "SwiftPMPackageCollections",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info"
      ],
      "sources" : [
        "ArtifactsArchiveMetadata.swift",
        "BuildConfiguration.swift",
        "BuildEnvironment.swift",
        "BuildFlags.swift",
        "BuildSettings.swift",
        "DependencyMapper.swift",
        "Diagnostics.swift",
        "IdentityResolver.swift",
        "InstalledSwiftPMConfiguration.swift",
        "Manifest/Manifest+Traits.swift",
        "Manifest/Manifest.swift",
        "Manifest/PackageConditionDescription.swift",
        "Manifest/PackageDependencyDescription.swift",
        "Manifest/PlatformDescription.swift",
        "Manifest/ProductDescription.swift",
        "Manifest/SystemPackageProviderDescription.swift",
        "Manifest/TargetBuildSettingDescription.swift",
        "Manifest/TargetDescription.swift",
        "Manifest/TraitConfiguration.swift",
        "Manifest/TraitDescription.swift",
        "ManifestSourceGeneration.swift",
        "MinimumDeploymentTarget.swift",
        "Module/BinaryModule.swift",
        "Module/ClangModule.swift",
        "Module/Module.swift",
        "Module/PluginModule.swift",
        "Module/SwiftModule.swift",
        "Module/SystemLibraryModule.swift",
        "ModuleMapType.swift",
        "PackageIdentity.swift",
        "PackageModel.swift",
        "PackageReference.swift",
        "Platform.swift",
        "PlatformRegistry.swift",
        "Product.swift",
        "Registry.swift",
        "RegistryReleaseMetadata.swift",
        "Resource.swift",
        "Sanitizers.swift",
        "Snippets/Model/Snippet.swift",
        "Snippets/Model/SnippetGroup.swift",
        "Snippets/Parsing/PlainTextSnippetExtractor.swift",
        "Sources.swift",
        "SupportedLanguageExtension.swift",
        "SwiftLanguageVersion.swift",
        "SwiftSDKs/SwiftSDK.swift",
        "SwiftSDKs/SwiftSDKBundle.swift",
        "SwiftSDKs/SwiftSDKBundleStore.swift",
        "SwiftSDKs/SwiftSDKConfigurationStore.swift",
        "Toolchain+SupportedFeatures.swift",
        "Toolchain.swift",
        "ToolchainConfiguration.swift",
        "ToolsVersion.swift",
        "ToolsVersionSpecificationGeneration.swift",
        "Toolset.swift",
        "UserToolchain.swift",
        "WindowsToolchainInfo.swift"
      ],
      "target_dependencies" : [
        "Basics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageMetadata",
      "module_type" : "SwiftTarget",
      "name" : "PackageMetadata",
      "path" : "Sources/PackageMetadata",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto"
      ],
      "sources" : [
        "PackageMetadata.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageCollections",
        "PackageModel",
        "PackageRegistry",
        "PackageSigning"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageManagerDocs",
      "module_type" : "SwiftTarget",
      "name" : "PackageManagerDocs",
      "path" : "Sources/PackageManagerDocs",
      "sources" : [
        "EmptyFile.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageLoadingTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageLoadingTests",
      "path" : "Tests/PackageLoadingTests",
      "sources" : [
        "ManifestLoaderCacheTests.swift",
        "ManifestSignatureParserTests.swift",
        "ModuleMapGenerationTests.swift",
        "PDAppleProductLoadingTests.swift",
        "PDLoadingTests.swift",
        "PD_4_0_LoadingTests.swift",
        "PD_4_2_LoadingTests.swift",
        "PD_5_0_LoadingTests.swift",
        "PD_5_2_LoadingTests.swift",
        "PD_5_3_LoadingTests.swift",
        "PD_5_4_LoadingTests.swift",
        "PD_5_5_LoadingTests.swift",
        "PD_5_6_LoadingTests.swift",
        "PD_5_7_LoadingTests.swift",
        "PD_5_9_LoadingTests.swift",
        "PD_6_0_LoadingTests.swift",
        "PD_Next_LoadingTests.swift",
        "PackageBuilderTests.swift",
        "PkgConfigAllowlistTests.swift",
        "PkgConfigParserTests.swift",
        "PkgConfigTests.swift",
        "TargetSourcesBuilderTests.swift",
        "ToolsVersionParserTests.swift",
        "TraitLoadingTests.swift"
      ],
      "target_dependencies" : [
        "PackageLoading",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageLoading",
      "module_type" : "SwiftTarget",
      "name" : "PackageLoading",
      "path" : "Sources/PackageLoading",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info"
      ],
      "sources" : [
        "ContextModel.swift",
        "Diagnostics.swift",
        "ManifestJSONParser.swift",
        "ManifestLoader+Validation.swift",
        "ManifestLoader.swift",
        "ManifestSignatureParser.swift",
        "ModuleMapGenerator.swift",
        "PackageBuilder.swift",
        "PackageDescriptionSerialization.swift",
        "PkgConfig.swift",
        "Platform.swift",
        "RegistryReleaseMetadataSerialization.swift",
        "Target+PkgConfig.swift",
        "TargetSourcesBuilder.swift",
        "ToolsVersionParser.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageModel",
        "SourceControl"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageGraphTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageGraphTests",
      "path" : "Tests/PackageGraphTests",
      "sources" : [
        "CrossCompilationPackageGraphTests.swift",
        "DependencyResolverTests.swift",
        "ModulesGraphTests.swift",
        "PubGrubTests.swift",
        "ResolvedTargetTests.swift",
        "TopologicalSortTests.swift",
        "VersionSetSpecifierTests.swift"
      ],
      "target_dependencies" : [
        "PackageGraph",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageGraphPerformanceTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageGraphPerformanceTests",
      "path" : "Tests/PackageGraphPerformanceTests",
      "sources" : [
        "DependencyResolverPerfTests.swift",
        "PackageGraphPerfTests.swift"
      ],
      "target_dependencies" : [
        "PackageGraph",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageGraph",
      "module_type" : "SwiftTarget",
      "name" : "PackageGraph",
      "path" : "Sources/PackageGraph",
      "product_dependencies" : [
        "OrderedCollections"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info"
      ],
      "sources" : [
        "BoundVersion.swift",
        "DependencyMirrors.swift",
        "Diagnostics.swift",
        "GraphLoadingNode.swift",
        "ModuleAliasTracker.swift",
        "ModulesGraph+Loading.swift",
        "ModulesGraph.swift",
        "PackageContainer.swift",
        "PackageGraphRoot.swift",
        "PackageModel+Extensions.swift",
        "PackageRequirement.swift",
        "Resolution/DependencyResolutionNode.swift",
        "Resolution/DependencyResolverBinding.swift",
        "Resolution/DependencyResolverDelegate.swift",
        "Resolution/DependencyResolverError.swift",
        "Resolution/PlatformVersionProvider.swift",
        "Resolution/PubGrub/Assignment.swift",
        "Resolution/PubGrub/ContainerProvider.swift",
        "Resolution/PubGrub/DiagnosticReportBuilder.swift",
        "Resolution/PubGrub/Incompatibility.swift",
        "Resolution/PubGrub/PartialSolution.swift",
        "Resolution/PubGrub/PubGrubDependencyResolver.swift",
        "Resolution/PubGrub/PubGrubPackageContainer.swift",
        "Resolution/PubGrub/Term.swift",
        "Resolution/ResolvedModule.swift",
        "Resolution/ResolvedPackage.swift",
        "Resolution/ResolvedProduct.swift",
        "ResolvedPackagesStore.swift",
        "Version+Extensions.swift",
        "VersionSetSpecifier.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageLoading",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageFingerprintTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageFingerprintTests",
      "path" : "Tests/PackageFingerprintTests",
      "sources" : [
        "FilePackageFingerprintStorageTests.swift"
      ],
      "target_dependencies" : [
        "PackageFingerprint",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageFingerprint",
      "module_type" : "SwiftTarget",
      "name" : "PackageFingerprint",
      "path" : "Sources/PackageFingerprint",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "package-info"
      ],
      "sources" : [
        "FilePackageFingerprintStorage.swift",
        "Model.swift",
        "PackageFingerprintStorage.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageDescriptionTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageDescriptionTests",
      "path" : "Tests/PackageDescriptionTests",
      "sources" : [
        "VersionTests.swift"
      ],
      "target_dependencies" : [
        "PackageDescription"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageDescription",
      "module_type" : "SwiftTarget",
      "name" : "PackageDescription",
      "path" : "Sources/PackageDescription",
      "product_memberships" : [
        "PackageDescription",
        "AppleProductTypes"
      ],
      "sources" : [
        "BuildSettings.swift",
        "Context.swift",
        "ContextModel.swift",
        "LanguageStandardSettings.swift",
        "PackageDependency.swift",
        "PackageDependencyTrait.swift",
        "PackageDescription.swift",
        "PackageDescriptionSerialization.swift",
        "PackageDescriptionSerializationConversion.swift",
        "PackageRequirement.swift",
        "Product.swift",
        "Resource.swift",
        "SupportedPlatforms.swift",
        "Target.swift",
        "Trait.swift",
        "Version+StringLiteralConvertible.swift",
        "Version.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageCollectionsTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollectionsTests",
      "path" : "Tests/PackageCollectionsTests",
      "sources" : [
        "GitHubPackageMetadataProviderTests.swift",
        "JSONPackageCollectionProviderTests.swift",
        "PackageCollectionSourceCertificatePolicyTests.swift",
        "PackageCollectionValidationTests.swift",
        "PackageCollectionsModelTests.swift",
        "PackageCollectionsSourcesStorageTest.swift",
        "PackageCollectionsStorageTests.swift",
        "PackageCollectionsTests.swift",
        "PackageIndexAndCollectionsTests.swift",
        "PackageIndexConfigurationTests.swift",
        "PackageIndexTests.swift",
        "TrieTests.swift",
        "Utility.swift",
        "ValidationMessageTests.swift"
      ],
      "target_dependencies" : [
        "PackageCollections",
        "_InternalTestSupport",
        "tsan_utils"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageCollectionsSigningTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollectionsSigningTests",
      "path" : "Tests/PackageCollectionsSigningTests",
      "sources" : [
        "CertificatePolicyTests.swift",
        "PackageCollectionSigningTests.swift",
        "SignatureTests.swift",
        "Utilities.swift"
      ],
      "target_dependencies" : [
        "PackageCollectionsSigning",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageCollectionsSigning",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollectionsSigning",
      "path" : "Sources/PackageCollectionsSigning",
      "product_dependencies" : [
        "Crypto",
        "X509"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "SwiftPMPackageCollections",
        "swift-package-manager",
        "swift-package-collection"
      ],
      "sources" : [
        "CertificatePolicy.swift",
        "PackageCollectionSigning.swift",
        "Signature.swift",
        "Utilities/Base64URL.swift",
        "Utilities/Utilities.swift",
        "X509Extensions.swift",
        "embedded_resources.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageCollectionsModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageCollectionsModelTests",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollectionsModelTests",
      "path" : "Tests/PackageCollectionsModelTests",
      "sources" : [
        "PackageCollectionModelTests.swift"
      ],
      "target_dependencies" : [
        "PackageCollectionsModel",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PackageCollectionsModel",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollectionsModel",
      "path" : "Sources/PackageCollectionsModel",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "PackageCollectionsModel",
        "SwiftPMPackageCollections",
        "swift-package-manager",
        "swift-package-collection"
      ],
      "sources" : [
        "PackageCollectionModel+v1.swift",
        "PackageCollectionModel.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageCollectionsCommand",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollectionsCommand",
      "path" : "Sources/PackageCollectionsCommand",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "swift-package-manager",
        "swift-package-collection"
      ],
      "sources" : [
        "PackageCollectionsCommand.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Commands",
        "CoreCommands",
        "PackageCollections",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageCollections",
      "module_type" : "SwiftTarget",
      "name" : "PackageCollections",
      "path" : "Sources/PackageCollections",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "SwiftPMPackageCollections",
        "swift-package-manager",
        "swift-package-collection"
      ],
      "sources" : [
        "API.swift",
        "Model/CVE.swift",
        "Model/Collection.swift",
        "Model/License.swift",
        "Model/PackageList.swift",
        "Model/PackageTypes.swift",
        "Model/Search.swift",
        "Model/TargetListResult.swift",
        "PackageCollections+CertificatePolicy.swift",
        "PackageCollections+Configuration.swift",
        "PackageCollections+Storage.swift",
        "PackageCollections+Validation.swift",
        "PackageCollections.swift",
        "PackageIndex+Configuration.swift",
        "PackageIndex.swift",
        "PackageIndexAndCollections.swift",
        "Providers/GitHubPackageMetadataProvider.swift",
        "Providers/JSONPackageCollectionProvider.swift",
        "Providers/PackageCollectionProvider.swift",
        "Providers/PackageMetadataProvider.swift",
        "Storage/FilePackageCollectionsSourcesStorage.swift",
        "Storage/PackageCollectionsSourcesStorage.swift",
        "Storage/PackageCollectionsStorage.swift",
        "Storage/SQLitePackageCollectionsStorage.swift",
        "Storage/Trie.swift",
        "Utility.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageCollectionsModel",
        "PackageCollectionsSigning",
        "PackageModel",
        "SourceControl"
      ],
      "type" : "library"
    },
    {
      "c99name" : "LLBuildManifestTests",
      "module_type" : "SwiftTarget",
      "name" : "LLBuildManifestTests",
      "path" : "Tests/LLBuildManifestTests",
      "sources" : [
        "LLBuildManifestTests.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "LLBuildManifest",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "LLBuildManifest",
      "module_type" : "SwiftTarget",
      "name" : "LLBuildManifest",
      "path" : "Sources/LLBuildManifest",
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build",
        "swift-bootstrap"
      ],
      "sources" : [
        "Command.swift",
        "LLBuildManifest.swift",
        "LLBuildManifestWriter.swift",
        "Node.swift",
        "Target.swift",
        "Tools.swift"
      ],
      "target_dependencies" : [
        "Basics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FunctionalTests",
      "module_type" : "SwiftTarget",
      "name" : "FunctionalTests",
      "path" : "Tests/FunctionalTests",
      "sources" : [
        "CFamilyTargetTests.swift",
        "DependencyResolutionTests.swift",
        "MacroTests.swift",
        "MiscellaneousTests.swift",
        "ModuleAliasingFixtureTests.swift",
        "ModuleMapTests.swift",
        "PluginTests.swift",
        "ResourcesTests.swift",
        "StaticBinaryLibrary.swift",
        "TestDiscoveryTests.swift",
        "ToolsVersionTests.swift",
        "TraitTests.swift",
        "VersionSpecificTests.swift"
      ],
      "target_dependencies" : [
        "swift-package-manager",
        "PackageModel",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FunctionalPerformanceTests",
      "module_type" : "SwiftTarget",
      "name" : "FunctionalPerformanceTests",
      "path" : "Tests/FunctionalPerformanceTests",
      "sources" : [
        "BuildPerfTests.swift"
      ],
      "target_dependencies" : [
        "swift-package-manager",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DriverSupport",
      "module_type" : "SwiftTarget",
      "name" : "DriverSupport",
      "path" : "Sources/DriverSupport",
      "product_dependencies" : [
        "SwiftDriver"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build",
        "swift-bootstrap"
      ],
      "sources" : [
        "DriverSupportUtils.swift",
        "SPMSwiftDriverExecutor.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "PackageModel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CoreCommands",
      "module_type" : "SwiftTarget",
      "name" : "CoreCommands",
      "path" : "Sources/CoreCommands",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build"
      ],
      "sources" : [
        "BuildSystemSupport.swift",
        "Options.swift",
        "SwiftCommandObservabilityHandler.swift",
        "SwiftCommandState.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "Build",
        "PackageLoading",
        "PackageModel",
        "PackageGraph",
        "Workspace",
        "XCBuildSupport",
        "SwiftBuildSupport"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CompilerPluginSupport",
      "module_type" : "SwiftTarget",
      "name" : "CompilerPluginSupport",
      "path" : "Sources/CompilerPluginSupport",
      "product_memberships" : [
        "PackageDescription"
      ],
      "sources" : [
        "TargetExtensions.swift"
      ],
      "target_dependencies" : [
        "PackageDescription"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CommandsTests",
      "module_type" : "SwiftTarget",
      "name" : "CommandsTests",
      "path" : "Tests/CommandsTests",
      "sources" : [
        "APIDiffTests.swift",
        "BuildCommandTests.swift",
        "CommandsTestCase.swift",
        "MermaidPackageSerializerTests.swift",
        "MultiRootSupportTests.swift",
        "PackageCommandTests.swift",
        "PackageRegistryCommandTests.swift",
        "RunCommandTests.swift",
        "SwiftCommandStateTests.swift",
        "SwiftSDKCommandTests.swift",
        "TestCommandTests.swift"
      ],
      "target_dependencies" : [
        "swift-package-manager",
        "Basics",
        "Build",
        "Commands",
        "PackageModel",
        "PackageModelSyntax",
        "PackageRegistryCommand",
        "SourceControl",
        "_InternalTestSupport",
        "Workspace",
        "dummy-swiftc"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Commands",
      "module_type" : "SwiftTarget",
      "name" : "Commands",
      "path" : "Sources/Commands",
      "product_dependencies" : [
        "ArgumentParser",
        "OrderedCollections",
        "SwiftIDEUtils"
      ],
      "product_memberships" : [
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build"
      ],
      "sources" : [
        "CommandWorkspaceDelegate.swift",
        "PackageCommands/APIDiff.swift",
        "PackageCommands/AddDependency.swift",
        "PackageCommands/AddProduct.swift",
        "PackageCommands/AddSetting.swift",
        "PackageCommands/AddTarget.swift",
        "PackageCommands/AddTargetDependency.swift",
        "PackageCommands/ArchiveSource.swift",
        "PackageCommands/AuditBinaryArtifact.swift",
        "PackageCommands/CompletionCommand.swift",
        "PackageCommands/ComputeChecksum.swift",
        "PackageCommands/Config.swift",
        "PackageCommands/Describe.swift",
        "PackageCommands/DumpCommands.swift",
        "PackageCommands/EditCommands.swift",
        "PackageCommands/Format.swift",
        "PackageCommands/Init.swift",
        "PackageCommands/Install.swift",
        "PackageCommands/Learn.swift",
        "PackageCommands/Migrate.swift",
        "PackageCommands/PluginCommand.swift",
        "PackageCommands/ResetCommands.swift",
        "PackageCommands/Resolve.swift",
        "PackageCommands/ShowDependencies.swift",
        "PackageCommands/ShowExecutables.swift",
        "PackageCommands/SwiftPackageCommand.swift",
        "PackageCommands/ToolsVersionCommand.swift",
        "PackageCommands/Update.swift",
        "Snippets/Card.swift",
        "Snippets/CardEvent.swift",
        "Snippets/CardStack.swift",
        "Snippets/Cards/SnippetCard.swift",
        "Snippets/Cards/SnippetGroupCard.swift",
        "Snippets/Cards/TopCard.swift",
        "Snippets/Colorful.swift",
        "SwiftBuildCommand.swift",
        "SwiftRunCommand.swift",
        "SwiftTestCommand.swift",
        "Utilities/APIDigester.swift",
        "Utilities/DOTManifestSerializer.swift",
        "Utilities/DependenciesSerializer.swift",
        "Utilities/DescribedPackage.swift",
        "Utilities/MermaidPackageSerializer.swift",
        "Utilities/MultiRootSupport.swift",
        "Utilities/PlainTextEncoder.swift",
        "Utilities/PluginDelegate.swift",
        "Utilities/SymbolGraphExtract.swift",
        "Utilities/TestingSupport.swift",
        "Utilities/XCTEvents.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "BinarySymbols",
        "Build",
        "CoreCommands",
        "PackageGraph",
        "PackageModelSyntax",
        "SourceControl",
        "Workspace",
        "XCBuildSupport",
        "SwiftBuildSupport",
        "SwiftFixIt"
      ],
      "type" : "library"
    },
    {
      "c99name" : "BuildTests",
      "module_type" : "SwiftTarget",
      "name" : "BuildTests",
      "path" : "Tests/BuildTests",
      "sources" : [
        "BuildOperationTests.swift",
        "BuildPlanTests.swift",
        "BuildPlanTraversalTests.swift",
        "BuildSystemDelegateTests.swift",
        "ClangTargetBuildDescriptionTests.swift",
        "CrossCompilationBuildPlanTests.swift",
        "IncrementalBuildTests.swift",
        "LLBuildManifestBuilderTests.swift",
        "ModuleAliasingBuildTests.swift",
        "PluginInvocationTests.swift",
        "PluginsBuildPlanTests.swift",
        "PrepareForIndexTests.swift",
        "ProductBuildDescriptionTests.swift",
        "SwiftCompilerOutputParserTests.swift",
        "WindowsBuildPlanTests.swift"
      ],
      "target_dependencies" : [
        "Build",
        "PackageModel",
        "Commands",
        "_InternalTestSupport",
        "_InternalBuildTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Build",
      "module_type" : "SwiftTarget",
      "name" : "Build",
      "path" : "Sources/Build",
      "product_dependencies" : [
        "OrderedCollections",
        "SwiftDriver"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build",
        "swift-bootstrap"
      ],
      "sources" : [
        "BuildDescription/ClangModuleBuildDescription.swift",
        "BuildDescription/ModuleBuildDescription.swift",
        "BuildDescription/PluginBuildDescription.swift",
        "BuildDescription/ProductBuildDescription.swift",
        "BuildDescription/ResolvedModule+BuildDescription.swift",
        "BuildDescription/SwiftModuleBuildDescription.swift",
        "BuildManifest/LLBuildManifestBuilder+Clang.swift",
        "BuildManifest/LLBuildManifestBuilder+Product.swift",
        "BuildManifest/LLBuildManifestBuilder+Resources.swift",
        "BuildManifest/LLBuildManifestBuilder+Swift.swift",
        "BuildManifest/LLBuildManifestBuilder.swift",
        "BuildOperation.swift",
        "BuildPlan/BuildPlan+Clang.swift",
        "BuildPlan/BuildPlan+Product.swift",
        "BuildPlan/BuildPlan+Swift.swift",
        "BuildPlan/BuildPlan+Test.swift",
        "BuildPlan/BuildPlan.swift",
        "ClangSupport.swift",
        "LLBuildCommands.swift",
        "LLBuildDescription.swift",
        "LLBuildProgressTracker.swift",
        "SwiftCompilerOutputParser.swift",
        "TestObservation.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "LLBuildManifest",
        "PackageGraph",
        "SPMBuildCore",
        "SPMLLBuild",
        "DriverSupport"
      ],
      "type" : "library"
    },
    {
      "c99name" : "BinarySymbolsTests",
      "module_type" : "SwiftTarget",
      "name" : "BinarySymbolsTests",
      "path" : "Tests/BinarySymbolsTests",
      "sources" : [
        "LLVMObjdumpSymbolProviderTests.swift"
      ],
      "target_dependencies" : [
        "BinarySymbols",
        "_InternalTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "BinarySymbols",
      "module_type" : "SwiftTarget",
      "name" : "BinarySymbols",
      "path" : "Sources/BinarySymbols",
      "product_dependencies" : [
        "TSCBasic"
      ],
      "product_memberships" : [
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build"
      ],
      "sources" : [
        "ClangHostDefaultObjectsDetector.swift",
        "LLVMObjdumpSymbolProvider.swift",
        "ReferencedSymbols.swift",
        "SymbolProvider.swift"
      ],
      "target_dependencies" : [
        "Basics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "BasicsTests",
      "module_type" : "SwiftTarget",
      "name" : "BasicsTests",
      "path" : "Tests/BasicsTests",
      "sources" : [
        "Archiver/TarArchiverTests.swift",
        "Archiver/UniversalArchiverTests.swift",
        "Archiver/ZipArchiverTests.swift",
        "AsyncProcessTests.swift",
        "AuthorizationProviderTests.swift",
        "ByteStringExtensionsTests.swift",
        "CancellatorTests.swift",
        "ConcurrencyHelpersTests.swift",
        "DictionaryTest.swift",
        "DispatchTimeTests.swift",
        "Environment/EnvironmentKeyTests.swift",
        "Environment/EnvironmentTests.swift",
        "FileSystem/FileSystemTests.swift",
        "FileSystem/InMemoryFilesSystemTests.swift",
        "FileSystem/PathShimTests.swift",
        "FileSystem/PathTests.swift",
        "FileSystem/TemporaryFileTests.swift",
        "FileSystem/VFSTests.swift",
        "Graph/AdjacencyMatrixTests.swift",
        "Graph/DirectedGraphTests.swift",
        "Graph/UndirectedGraphTests.swift",
        "HTTPClientTests.swift",
        "LegacyHTTPClientTests.swift",
        "NetrcTests.swift",
        "ObservabilitySystemTests.swift",
        "ProgressAnimationTests.swift",
        "SQLiteBackedCacheTests.swift",
        "SandboxTests.swift",
        "Serialization/SerializedJSONTests.swift",
        "StringExtensionsTests.swift",
        "TripleTests.swift",
        "URLSessionHTTPClientTests.swift"
      ],
      "target_dependencies" : [
        "Basics",
        "_InternalTestSupport",
        "tsan_utils"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Basics",
      "module_type" : "SwiftTarget",
      "name" : "Basics",
      "path" : "Sources/Basics",
      "product_dependencies" : [
        "SwiftToolchainCSQLite",
        "DequeModule",
        "OrderedCollections",
        "SystemPackage",
        "SwiftToolsSupport-auto"
      ],
      "product_memberships" : [
        "SwiftPM",
        "SwiftPM-auto",
        "SwiftPMDataModel",
        "SwiftPMDataModel-auto",
        "XCBuildSupport",
        "SwiftPMPackageCollections",
        "swift-test",
        "swift-sdk",
        "swift-run",
        "swift-package-registry",
        "swift-package-manager",
        "swift-package-collection",
        "swift-package",
        "swift-experimental-sdk",
        "swift-build-prebuilts",
        "swift-build",
        "swift-bootstrap",
        "package-info",
        "dummy-swiftc"
      ],
      "sources" : [
        "Archiver/Archiver.swift",
        "Archiver/TarArchiver.swift",
        "Archiver/UniversalArchiver.swift",
        "Archiver/ZipArchiver.swift",
        "AuthorizationProvider.swift",
        "Cancellator.swift",
        "Collections/ByteString+Extensions.swift",
        "Collections/Dictionary+Extensions.swift",
        "Collections/IdentifiableSet.swift",
        "Collections/String+Extensions.swift",
        "Concurrency/AsyncProcess.swift",
        "Concurrency/ConcurrencyHelpers.swift",
        "Concurrency/NSLock+Extensions.swift",
        "Concurrency/SendableBox.swift",
        "Concurrency/ThreadSafeArrayStore.swift",
        "Concurrency/ThreadSafeBox.swift",
        "Concurrency/ThreadSafeKeyValueStore.swift",
        "Concurrency/ThrowingDefer.swift",
        "Concurrency/TokenBucket.swift",
        "DispatchTimeInterval+Extensions.swift",
        "Environment/Environment.swift",
        "Environment/EnvironmentKey.swift",
        "Environment/EnvironmentShims.swift",
        "Errors.swift",
        "FileSystem/AbsolutePath.swift",
        "FileSystem/FileSystem+Extensions.swift",
        "FileSystem/InMemoryFileSystem.swift",
        "FileSystem/NativePathExtensions.swift",
        "FileSystem/RelativePath.swift",
        "FileSystem/TSCAdapters.swift",
        "FileSystem/TemporaryFile.swift",
        "FileSystem/VFSOverlay.swift",
        "FileSystem/VirtualFileSystem.swift",
        "Graph/AdjacencyMatrix.swift",
        "Graph/DirectedGraph.swift",
        "Graph/GraphAlgorithms.swift",
        "Graph/UndirectedGraph.swift",
        "HTTPClient/HTTPClient.swift",
        "HTTPClient/HTTPClientConfiguration.swift",
        "HTTPClient/HTTPClientError.swift",
        "HTTPClient/HTTPClientHeaders.swift",
        "HTTPClient/HTTPClientRequest.swift",
        "HTTPClient/HTTPClientResponse.swift",
        "HTTPClient/HTTPMethod.swift",
        "HTTPClient/LegacyHTTPClient.swift",
        "HTTPClient/LegacyHTTPClientRequest.swift",
        "HTTPClient/URLSessionHTTPClient.swift",
        "ImportScanning.swift",
        "JSON+Extensions.swift",
        "JSONDecoder+Extensions.swift",
        "Netrc.swift",
        "OSSignpost.swift",
        "Observability.swift",
        "Process.swift",
        "ProgressAnimation/NinjaProgressAnimation.swift",
        "ProgressAnimation/PercentProgressAnimation.swift",
        "ProgressAnimation/ProgressAnimationProtocol.swift",
        "ProgressAnimation/SingleLinePercentProgressAnimation.swift",
        "ProgressAnimation/ThrottledProgressAnimation.swift",
        "SQLite.swift",
        "SQLiteBackedCache.swift",
        "Sandbox.swift",
        "SendableTimeInterval.swift",
        "Serialization/SerializedJSON.swift",
        "SourceControlURL.swift",
        "SwiftVersion.swift",
        "TestingLibrary.swift",
        "Triple+Basics.swift",
        "URL.swift",
        "Vendor/Triple+Platforms.swift",
        "Vendor/Triple.swift",
        "Version+Extensions.swift",
        "WritableByteStream+Extensions.swift"
      ],
      "target_dependencies" : [
        "_AsyncFileSystem",
        "SPMSQLite3"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AppleProductTypes",
      "module_type" : "SwiftTarget",
      "name" : "AppleProductTypes",
      "path" : "Sources/AppleProductTypes",
      "product_memberships" : [
        "AppleProductTypes"
      ],
      "sources" : [
        "Product.swift"
      ],
      "target_dependencies" : [
        "PackageDescription"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.1"
}
Done.