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 Defaults, reference 9.0.3 (00c82e), with Swift 6.2 (beta) for macOS (SPM) on 23 Jun 2025 13:30:32 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/sindresorhus/Defaults.git
Reference: 9.0.3
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/sindresorhus/Defaults
 * tag               9.0.3      -> FETCH_HEAD
HEAD is now at 00c82ef Update `swift-syntax` to 601
Cloned https://github.com/sindresorhus/Defaults.git
Revision (git rev-parse @):
00c82eff4550c87cf9c547d7e5493a6a97837061
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/sindresorhus/Defaults.git at 9.0.3
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/sindresorhus/Defaults.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/26] Write sources
[17/26] Copying PrivacyInfo.xcprivacy
[20/26] Write sources
[21/26] Copying PrivacyInfo.xcprivacy
[22/26] Compiling _SwiftSyntaxCShims dummy.c
[23/26] Write swift-version-1EA4D86E10B52AF.txt
[25/60] Emitting module SwiftSyntax510
[26/60] Compiling SwiftSyntax510 Empty.swift
[27/60] Compiling SwiftSyntax601 Empty.swift
[28/60] Emitting module SwiftSyntax601
[29/60] Emitting module SwiftSyntax600
[30/60] Compiling SwiftSyntax600 Empty.swift
[31/60] Emitting module SwiftSyntax509
[32/60] Compiling SwiftSyntax509 Empty.swift
[33/126] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[34/126] Compiling SwiftSyntax SyntaxChildren.swift
[35/126] Compiling SwiftSyntax SyntaxCollection.swift
[36/126] Compiling SwiftSyntax SyntaxHashable.swift
[37/126] Compiling SwiftSyntax SyntaxIdentifier.swift
[38/126] Compiling SwiftSyntax SyntaxNodeFactory.swift
[39/126] Compiling SwiftSyntax SyntaxNodeStructure.swift
[40/133] Compiling SwiftSyntax SourceEdit.swift
[41/133] Compiling SwiftSyntax SourceLength.swift
[42/133] Compiling SwiftSyntax SourceLocation.swift
[43/133] Compiling SwiftSyntax SourcePresence.swift
[44/133] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[45/133] Compiling SwiftSyntax Syntax.swift
[46/133] Compiling SwiftSyntax SyntaxArena.swift
[47/133] Compiling SwiftSyntax SyntaxProtocol.swift
[48/133] Compiling SwiftSyntax SyntaxText.swift
[49/133] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[50/133] Compiling SwiftSyntax TokenDiagnostic.swift
[51/133] Compiling SwiftSyntax TokenSequence.swift
[52/133] Compiling SwiftSyntax TokenSyntax.swift
[53/133] Compiling SwiftSyntax Trivia.swift
[54/133] Emitting module SwiftSyntax
[55/133] Compiling SwiftSyntax Tokens.swift
[56/133] Compiling SwiftSyntax TriviaPieces.swift
[57/133] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[58/133] Compiling SwiftSyntax RawSyntaxNodesC.swift
[59/133] Compiling SwiftSyntax RawSyntaxNodesD.swift
[60/133] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[61/133] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[62/133] Compiling SwiftSyntax EditorPlaceholder.swift
[63/133] Compiling SwiftSyntax Identifier.swift
[64/133] Compiling SwiftSyntax MemoryLayout.swift
[65/133] Compiling SwiftSyntax MissingNodeInitializers.swift
[66/133] Compiling SwiftSyntax RawSyntax.swift
[67/133] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[68/133] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[69/133] Compiling SwiftSyntax RawSyntaxTokenView.swift
[70/133] Compiling SwiftSyntax SyntaxCollections.swift
[71/133] Compiling SwiftSyntax SyntaxEnum.swift
[72/133] Compiling SwiftSyntax SyntaxKind.swift
[73/133] Compiling SwiftSyntax SyntaxRewriter.swift
[74/133] Compiling SwiftSyntax SyntaxTraits.swift
[75/133] Compiling SwiftSyntax SyntaxVisitor.swift
[76/133] Compiling SwiftSyntax TokenKind.swift
[77/133] Compiling Defaults Utilities.swift
[78/133] Compiling Defaults UserDefaults.swift
[79/134] Compiling Defaults Observation.swift
[80/134] Compiling Defaults Observation+Combine.swift
[81/135] Compiling Defaults Utilities.swift
[82/135] Compiling Defaults UserDefaults.swift
[83/135] Compiling Defaults resource_bundle_accessor.swift
[85/135] Compiling Defaults Observation+Combine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/Defaults.swift:286:33: warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
284 | 			observation.start(options: initial ? [.initial] : [])
285 |
286 | 			continuation.onTermination = { _ in
    |                                 `- warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
287 | 				// `invalidate()` should be thread-safe, but it is not in practice.
288 | 				Task { @MainActor in
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/Defaults.swift:336:33: warning: capture of non-sendable type '(each Value).Type' in an isolated closure; this is an error in the Swift 6 language mode
334 | 			let immutableObservations = observations
335 |
336 | 			continuation.onTermination = { _ in
    |                                 `- warning: capture of non-sendable type '(each Value).Type' in an isolated closure; this is an error in the Swift 6 language mode
337 | 				// `invalidate()` should be thread-safe, but it is not in practice.
338 | 				Task { @MainActor in
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/Defaults.swift:286:33: warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
284 | 			observation.start(options: initial ? [.initial] : [])
285 |
286 | 			continuation.onTermination = { _ in
    |                                 `- warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
287 | 				// `invalidate()` should be thread-safe, but it is not in practice.
288 | 				Task { @MainActor in
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/Defaults.swift:336:33: warning: capture of non-sendable type '(each Value).Type' in an isolated closure; this is an error in the Swift 6 language mode
334 | 			let immutableObservations = observations
335 |
336 | 			continuation.onTermination = { _ in
    |                                 `- warning: capture of non-sendable type '(each Value).Type' in an isolated closure; this is an error in the Swift 6 language mode
337 | 				// `invalidate()` should be thread-safe, but it is not in practice.
338 | 				Task { @MainActor in
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/Defaults.swift:286:33: warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
284 | 			observation.start(options: initial ? [.initial] : [])
285 |
286 | 			continuation.onTermination = { _ in
    |                                 `- warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
287 | 				// `invalidate()` should be thread-safe, but it is not in practice.
288 | 				Task { @MainActor in
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/Defaults.swift:336:33: warning: capture of non-sendable type '(each Value).Type' in an isolated closure; this is an error in the Swift 6 language mode
334 | 			let immutableObservations = observations
335 |
336 | 			continuation.onTermination = { _ in
    |                                 `- warning: capture of non-sendable type '(each Value).Type' in an isolated closure; this is an error in the Swift 6 language mode
337 | 				// `invalidate()` should be thread-safe, but it is not in practice.
338 | 				Task { @MainActor in
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/Defaults.swift:286:33: warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
284 | 			observation.start(options: initial ? [.initial] : [])
285 |
286 | 			continuation.onTermination = { _ in
    |                                 `- warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
287 | 				// `invalidate()` should be thread-safe, but it is not in practice.
288 | 				Task { @MainActor in
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/Defaults.swift:336:33: warning: capture of non-sendable type '(each Value).Type' in an isolated closure; this is an error in the Swift 6 language mode
334 | 			let immutableObservations = observations
335 |
336 | 			continuation.onTermination = { _ in
    |                                 `- warning: capture of non-sendable type '(each Value).Type' in an isolated closure; this is an error in the Swift 6 language mode
337 | 				// `invalidate()` should be thread-safe, but it is not in practice.
338 | 				Task { @MainActor in
[92/135] Emitting module Defaults
[95/135] Compiling Defaults SwiftUI.swift
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/SwiftUI.swift:42:30: warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 | 				// The `@MainActor` is important as the `.send()` method doesn't inherit the `@MainActor` from the class.
 41 | 				task = .detached(priority: .userInitiated) { @MainActor [weak self, key] in
 42 | 					for await _ in Defaults.updates(key, initial: false) {
    |                              `- warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 43 | 						guard let self else {
 44 | 							return
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/SwiftUI.swift:41:73: warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |
 40 | 				// The `@MainActor` is important as the `.send()` method doesn't inherit the `@MainActor` from the class.
 41 | 				task = .detached(priority: .userInitiated) { @MainActor [weak self, key] in
    |                                                                         `- warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 42 | 					for await _ in Defaults.updates(key, initial: false) {
 43 | 						guard let self else {
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/SwiftUI.swift:58:12: warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 56 |
 57 | 						Task { @MainActor in
 58 | 							self?.objectWillChange.send()
    |            `- warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 59 | 						}
 60 | 					}
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/SwiftUI.swift:52:20: warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 50 | 			} else {
 51 | 				cancellable = Defaults.publisher(key, options: [.prior])
 52 | 					.sink { [weak self] change in
    |                    `- warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 53 | 						guard change.isPrior else {
 54 | 							return
[96/135] Compiling Defaults Reset.swift
[97/135] Compiling Defaults Observation.swift
[98/135] Compiling Defaults SwiftUI.swift
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/SwiftUI.swift:42:30: warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 | 				// The `@MainActor` is important as the `.send()` method doesn't inherit the `@MainActor` from the class.
 41 | 				task = .detached(priority: .userInitiated) { @MainActor [weak self, key] in
 42 | 					for await _ in Defaults.updates(key, initial: false) {
    |                              `- warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 43 | 						guard let self else {
 44 | 							return
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/SwiftUI.swift:41:73: warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |
 40 | 				// The `@MainActor` is important as the `.send()` method doesn't inherit the `@MainActor` from the class.
 41 | 				task = .detached(priority: .userInitiated) { @MainActor [weak self, key] in
    |                                                                         `- warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 42 | 					for await _ in Defaults.updates(key, initial: false) {
 43 | 						guard let self else {
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/SwiftUI.swift:58:12: warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 56 |
 57 | 						Task { @MainActor in
 58 | 							self?.objectWillChange.send()
    |            `- warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 59 | 						}
 60 | 					}
/Users/admin/builder/spi-builder-workspace/Sources/Defaults/SwiftUI.swift:52:20: warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 50 | 			} else {
 51 | 				cancellable = Defaults.publisher(key, options: [.prior])
 52 | 					.sink { [weak self] change in
    |                    `- warning: capture of non-sendable type 'Value.Type' in an isolated closure; this is an error in the Swift 6 language mode
 53 | 						guard change.isPrior else {
 54 | 							return
[101/135] Compiling Defaults Reset.swift
[102/135] Emitting module Defaults
[105/135] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[106/135] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[107/135] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[108/135] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[109/135] Compiling SwiftSyntax RawSyntaxValidation.swift
[110/135] Compiling SwiftSyntax SyntaxNodesAB.swift
[111/135] Compiling SwiftSyntax SyntaxNodesC.swift
[112/135] Compiling SwiftSyntax AbsolutePosition.swift
[113/135] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[114/135] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[115/135] Compiling SwiftSyntax Assert.swift
[116/135] Compiling SwiftSyntax BumpPtrAllocator.swift
[117/135] Compiling SwiftSyntax CommonAncestor.swift
[118/135] Compiling SwiftSyntax Convenience.swift
[119/135] Compiling SwiftSyntax CustomTraits.swift
[120/135] Compiling SwiftSyntax Utils.swift
[121/135] Compiling SwiftSyntax ChildNameForKeyPath.swift
[122/135] Compiling SwiftSyntax Keyword.swift
[123/135] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[124/135] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[125/135] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[126/135] Compiling SwiftSyntax SyntaxBaseNodes.swift
[127/135] Compiling SwiftSyntax SyntaxNodesD.swift
[128/135] Compiling SwiftSyntax SyntaxNodesEF.swift
[129/135] Compiling SwiftSyntax SyntaxNodesGHI.swift
[130/135] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[131/135] Compiling SwiftSyntax SyntaxNodesOP.swift
[132/135] Compiling SwiftSyntax SyntaxNodesQRS.swift
[133/135] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[134/194] Compiling SwiftBasicFormat Syntax+Extensions.swift
[135/194] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[136/194] Compiling SwiftDiagnostics Message.swift
[137/195] Compiling SwiftBasicFormat InferIndentation.swift
[138/195] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[139/195] Compiling SwiftDiagnostics Note.swift
[140/195] Compiling SwiftBasicFormat Indenter.swift
[141/195] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[142/195] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[143/195] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[144/195] Compiling SwiftDiagnostics FixIt.swift
[145/195] Compiling SwiftDiagnostics Diagnostic.swift
[146/195] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[147/195] Compiling SwiftDiagnostics Convenience.swift
[148/195] Emitting module SwiftDiagnostics
[149/195] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[150/195] Emitting module SwiftBasicFormat
[151/195] Compiling SwiftBasicFormat BasicFormat.swift
[152/195] Compiling SwiftParser TopLevel.swift
[153/195] Compiling SwiftParser TriviaParser.swift
[154/195] Compiling SwiftParser Types.swift
[155/195] Compiling SwiftParser ExperimentalFeatures.swift
[156/195] Compiling SwiftParser StringLiterals.swift
[157/195] Compiling SwiftParser SwiftParserCompatibility.swift
[158/195] Compiling SwiftParser SwiftVersion.swift
[159/195] Compiling SwiftParser SyntaxUtils.swift
[160/195] Compiling SwiftParser TokenConsumer.swift
[161/195] Compiling SwiftParser TokenPrecedence.swift
[162/195] Compiling SwiftParser TokenSpec.swift
[163/195] Compiling SwiftParser TokenSpecSet.swift
[164/199] Compiling SwiftParser UnicodeScalarExtensions.swift
[165/199] Compiling SwiftParser Lookahead.swift
[166/199] Compiling SwiftParser LoopProgressCondition.swift
[167/199] Compiling SwiftParser Modifiers.swift
[168/199] Compiling SwiftParser Names.swift
[169/199] Compiling SwiftParser Nominals.swift
[170/199] Compiling SwiftParser Parameters.swift
[171/199] Compiling SwiftParser ParseSourceFile.swift
[172/199] Compiling SwiftParser Parser.swift
[173/199] Compiling SwiftParser Patterns.swift
[174/199] Compiling SwiftParser Recovery.swift
[175/199] Compiling SwiftParser Specifiers.swift
[176/199] Compiling SwiftParser Statements.swift
[177/199] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[178/199] Emitting module SwiftParser
[179/199] Compiling SwiftParser Attributes.swift
[180/199] Compiling SwiftParser Availability.swift
[181/199] Compiling SwiftParser CharacterInfo.swift
[182/199] Compiling SwiftParser CollectionNodes+Parsable.swift
[183/199] Compiling SwiftParser Declarations.swift
[184/199] Compiling SwiftParser Directives.swift
[185/199] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[186/199] Compiling SwiftParser Expressions.swift
[187/199] Compiling SwiftParser IncrementalParseTransition.swift
[188/199] Compiling SwiftParser IsValidIdentifier.swift
[189/199] Compiling SwiftParser Cursor.swift
[190/199] Compiling SwiftParser Lexeme.swift
[191/199] Compiling SwiftParser LexemeSequence.swift
[192/199] Compiling SwiftParser Lexer.swift
[193/199] Compiling SwiftParser RegexLiteralLexer.swift
[194/199] Compiling SwiftParser IsLexerClassified.swift
[195/199] Compiling SwiftParser LayoutNodes+Parsable.swift
[196/199] Compiling SwiftParser Parser+TokenSpecSet.swift
[197/199] Compiling SwiftParser TokenSpecStaticMembers.swift
[198/222] Compiling SwiftOperators PrecedenceGraph.swift
[199/223] Compiling SwiftOperators SyntaxSynthesis.swift
[200/223] Compiling SwiftOperators OperatorTable.swift
[201/223] Compiling SwiftOperators OperatorTable+Semantics.swift
[202/223] Compiling SwiftOperators PrecedenceGroup.swift
[203/223] Compiling SwiftOperators OperatorTable+Defaults.swift
[204/223] Compiling SwiftOperators OperatorError.swift
[205/223] Compiling SwiftOperators OperatorError+Diagnostics.swift
[206/223] Emitting module SwiftOperators
[207/223] Compiling SwiftOperators Operator.swift
[208/223] Compiling SwiftOperators OperatorTable+Folding.swift
[209/223] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[210/223] Compiling SwiftParserDiagnostics PresenceUtils.swift
[211/223] Compiling SwiftParserDiagnostics Utils.swift
[212/223] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[213/223] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[214/224] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[215/224] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[216/224] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[217/224] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[218/224] Compiling SwiftParserDiagnostics MissingNodesError.swift
[219/224] Compiling SwiftParserDiagnostics MissingTokenError.swift
[220/224] Emitting module SwiftParserDiagnostics
[221/224] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[222/224] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[223/239] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[224/239] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[225/240] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[226/240] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[227/240] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[228/240] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[229/240] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[230/240] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[231/240] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[232/240] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[233/240] Compiling SwiftSyntaxBuilder Indenter.swift
[234/240] Compiling SwiftSyntaxBuilder ListBuilder.swift
[235/240] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[236/240] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[237/240] Emitting module SwiftSyntaxBuilder
[238/240] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[239/258] Compiling SwiftSyntaxMacros PreambleMacro.swift
[240/259] Compiling SwiftSyntaxMacros Macro.swift
[241/259] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[242/259] Compiling SwiftSyntaxMacros MemberMacro.swift
[243/259] Compiling SwiftSyntaxMacros PeerMacro.swift
[244/259] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[245/259] Compiling SwiftSyntaxMacros Macro+Format.swift
[246/259] Compiling SwiftSyntaxMacros AttachedMacro.swift
[247/259] Compiling SwiftSyntaxMacros BodyMacro.swift
[248/259] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[249/259] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[250/259] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[251/259] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[252/259] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[253/259] Compiling SwiftSyntaxMacros AccessorMacro.swift
[254/259] Emitting module SwiftSyntaxMacros
[255/259] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[256/259] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[257/259] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[258/269] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[259/269] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[260/269] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[261/269] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[262/269] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[263/269] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[264/269] Emitting module SwiftSyntaxMacroExpansion
[265/269] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[266/269] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[267/269] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[268/281] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[269/281] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[270/281] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[271/281] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[272/281] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[273/281] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[274/281] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[275/281] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[276/281] Emitting module SwiftCompilerPluginMessageHandling
[277/281] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[278/281] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[279/281] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[280/282] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[281/284] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[282/284] Emitting module SwiftCompilerPlugin
[283/287] Emitting module DefaultsMacrosDeclarations
[284/287] Compiling DefaultsMacrosDeclarations ObservableDefaultMacro.swift
[285/287] Compiling DefaultsMacrosDeclarations DefaultsMacrosPlugin.swift
[285/287] Write Objects.LinkFileList
[286/287] Linking DefaultsMacrosDeclarations-tool
[288/291] Emitting module DefaultsMacros
[290/291] Compiling DefaultsMacros ObservableDefault.swift
Build complete! (34.91s)
Fetching https://github.com/swiftlang/swift-syntax
[1/70927] Fetching swift-syntax
Fetched https://github.com/swiftlang/swift-syntax from cache (3.68s)
Computing version for https://github.com/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 601.0.1 (6.85s)
Creating working copy for https://github.com/swiftlang/swift-syntax
Working copy of https://github.com/swiftlang/swift-syntax resolved at 601.0.1
Downloading package prebuilt https://download.swift.org/prebuilts/swift-syntax/601.0.1/swiftlang-6.2.0.9.909-MacroSupport-macos_aarch64.zip
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "601.0.0",
            "upper_bound" : "602.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax"
    }
  ],
  "manifest_display_name" : "Defaults",
  "name" : "Defaults",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "Defaults",
      "targets" : [
        "Defaults"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DefaultsMacros",
      "targets" : [
        "DefaultsMacros"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DefaultsMacrosDeclarations",
      "targets" : [
        "DefaultsMacrosDeclarations"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "DefaultsTests",
      "module_type" : "SwiftTarget",
      "name" : "DefaultsTests",
      "path" : "Tests/DefaultsTests",
      "sources" : [
        "Defaults+iCloudTests.swift",
        "DefaultsAnySeriliazableTests.swift",
        "DefaultsArrayTests.swift",
        "DefaultsCodableEnumTests.swift",
        "DefaultsCodableTests.swift",
        "DefaultsCollectionCustomElementTests.swift",
        "DefaultsCollectionTests.swift",
        "DefaultsColorTests.swift",
        "DefaultsCustomBridgeTests.swift",
        "DefaultsDictionaryTests.swift",
        "DefaultsEnumTests.swift",
        "DefaultsNSColorTests.swift",
        "DefaultsNSSecureCodingTests.swift",
        "DefaultsRangeTests.swift",
        "DefaultsSetAlgebraCustomElementTests.swift",
        "DefaultsSetAlgebraTests.swift",
        "DefaultsSetTests.swift",
        "DefaultsSwiftUITests.swift",
        "DefaultsTests.swift",
        "DefaultsUIColorTests.swift"
      ],
      "target_dependencies" : [
        "Defaults"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DefaultsMacrosTests",
      "module_type" : "SwiftTarget",
      "name" : "DefaultsMacrosTests",
      "path" : "Tests/DefaultsMacrosTests",
      "sources" : [
        "ObservableDefaultTests.swift"
      ],
      "target_dependencies" : [
        "Defaults",
        "DefaultsMacros"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DefaultsMacrosDeclarationsTests",
      "module_type" : "SwiftTarget",
      "name" : "DefaultsMacrosDeclarationsTests",
      "path" : "Tests/DefaultsMacrosDeclarationsTests",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftSyntaxMacrosTestSupport"
      ],
      "sources" : [
        "ObservableDefaultMacroTests.swift"
      ],
      "target_dependencies" : [
        "DefaultsMacros",
        "DefaultsMacrosDeclarations"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DefaultsMacrosDeclarations",
      "module_type" : "SwiftTarget",
      "name" : "DefaultsMacrosDeclarations",
      "path" : "Sources/DefaultsMacrosDeclarations",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "DefaultsMacros",
        "DefaultsMacrosDeclarations"
      ],
      "sources" : [
        "DefaultsMacrosPlugin.swift",
        "ObservableDefaultMacro.swift"
      ],
      "target_dependencies" : [
        "Defaults"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "DefaultsMacros",
      "module_type" : "SwiftTarget",
      "name" : "DefaultsMacros",
      "path" : "Sources/DefaultsMacros",
      "product_memberships" : [
        "DefaultsMacros"
      ],
      "sources" : [
        "ObservableDefault.swift"
      ],
      "target_dependencies" : [
        "Defaults",
        "DefaultsMacrosDeclarations"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Defaults",
      "module_type" : "SwiftTarget",
      "name" : "Defaults",
      "path" : "Sources/Defaults",
      "product_memberships" : [
        "Defaults",
        "DefaultsMacros",
        "DefaultsMacrosDeclarations"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Defaults/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Defaults+AnySerializable.swift",
        "Defaults+Bridge.swift",
        "Defaults+Extensions.swift",
        "Defaults+Protocol.swift",
        "Defaults+iCloud.swift",
        "Defaults.swift",
        "Observation+Combine.swift",
        "Observation.swift",
        "Reset.swift",
        "SwiftUI.swift",
        "UserDefaults.swift",
        "Utilities.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.11"
}
Done.