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 swift-case-paths, reference 1.7.1 (9810c8), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 02:47:21 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/pointfreeco/swift-case-paths.git
Reference: 1.7.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/pointfreeco/swift-case-paths
 * tag               1.7.1      -> FETCH_HEAD
HEAD is now at 9810c8d Run swift-format
Cloned https://github.com/pointfreeco/swift-case-paths.git
Revision (git rev-parse @):
9810c8d6c2914de251e072312f01d3bf80071852
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/pointfreeco/swift-case-paths.git at 1.7.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/pointfreeco/swift-case-paths.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/30] Write sources
[26/30] Compiling _SwiftSyntaxCShims dummy.c
[27/30] Write swift-version-1EA4D86E10B52AF.txt
[29/76] Compiling SwiftSyntax600 Empty.swift
[30/76] Emitting module SwiftSyntax600
[31/76] Compiling SwiftSyntax601 Empty.swift
[32/76] Emitting module SwiftSyntax601
[33/76] Compiling SwiftSyntax509 Empty.swift
[34/76] Emitting module SwiftSyntax509
[35/76] Compiling SwiftSyntax510 Empty.swift
[36/76] Emitting module SwiftSyntax510
[37/142] Compiling SwiftSyntax MemoryLayout.swift
[38/142] Compiling SwiftSyntax MissingNodeInitializers.swift
[41/146] Compiling IssueReporting WithExpectedIssue.swift
[42/146] Compiling IssueReporting WithIssueContext.swift
[45/146] Emitting module IssueReporting
[46/146] Compiling SwiftSyntax Tokens.swift
[47/146] Compiling SwiftSyntax TriviaPieces.swift
[48/146] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[49/146] Compiling SwiftSyntax RawSyntaxNodesC.swift
[50/146] Compiling SwiftSyntax RawSyntaxNodesD.swift
[51/146] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[52/146] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[53/146] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[54/146] Compiling SwiftSyntax SyntaxChildren.swift
[55/146] Compiling SwiftSyntax SyntaxCollection.swift
[56/146] Compiling SwiftSyntax SyntaxHashable.swift
[57/146] Compiling SwiftSyntax SyntaxIdentifier.swift
[60/146] Compiling SwiftSyntax SyntaxNodeFactory.swift
[61/146] Compiling SwiftSyntax SyntaxNodeStructure.swift
[72/146] Emitting module IssueReporting
[73/146] Compiling SwiftSyntax EditorPlaceholder.swift
[74/146] Compiling SwiftSyntax Identifier.swift
[79/152] Compiling XCTestDynamicOverlay Exports.swift
[81/152] Emitting module XCTestDynamicOverlay
[82/152] Compiling XCTestDynamicOverlay Deprecations.swift
[84/152] Emitting module XCTestDynamicOverlay
[85/172] Compiling CasePathsCore CasePathIterable.swift
[86/173] Compiling CasePathsCore UncheckedSendable.swift
[87/173] Emitting module CasePathsCore
[88/173] Compiling CasePathsCore AnyCasePath.swift
[89/173] Compiling CasePathsCore TypeName.swift
[90/173] Compiling CasePathsCore KeyPath+Sendable.swift
[91/173] Compiling CasePathsCore Never+CasePathable.swift
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/Never+CasePathable.swift:20:48: warning: capture of non-sendable type 'Value.Type' in an isolated closure
18 |   public var never: Case<Never> {
19 |     @Sendable func absurd<T>(_: Never) -> T {}
20 |     return Case<Never>(embed: absurd, extract: { (_: Value) in nil })
   |                                                `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
21 |   }
22 | }
[92/173] Compiling CasePathsCore Optional+CasePathable.swift
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/Optional+CasePathable.swift:41:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 39 |       let casePath = Wrapped.allCasePaths[keyPath: keyPath]
 40 |       return AnyCasePath(
 41 |         embed: { $0.map(casePath.embed) },
    |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 42 |         extract: {
 43 |           guard case let .some(wrapped) = $0, let member = casePath.extract(from: wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/Optional+CasePathable.swift:39:11: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 37 |     ) -> AnyCasePath<Optional, Member?>
 38 |     where Wrapped: CasePathable {
 39 |       let casePath = Wrapped.allCasePaths[keyPath: keyPath]
    |           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 40 |       return AnyCasePath(
 41 |         embed: { $0.map(casePath.embed) },
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/Optional+CasePathable.swift:43:43: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 41 |         embed: { $0.map(casePath.embed) },
 42 |         extract: {
 43 |           guard case let .some(wrapped) = $0, let member = casePath.extract(from: wrapped)
    |                                           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 44 |           else { return .none }
 45 |           return member
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/Optional+CasePathable.swift:39:11: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 37 |     ) -> AnyCasePath<Optional, Member?>
 38 |     where Wrapped: CasePathable {
 39 |       let casePath = Wrapped.allCasePaths[keyPath: keyPath]
    |           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 40 |       return AnyCasePath(
 41 |         embed: { $0.map(casePath.embed) },
[93/173] Compiling CasePathsCore Never+CasePathable.swift
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/Never+CasePathable.swift:20:48: warning: capture of non-sendable type 'Value.Type' in an isolated closure
18 |   public var never: Case<Never> {
19 |     @Sendable func absurd<T>(_: Never) -> T {}
20 |     return Case<Never>(embed: absurd, extract: { (_: Value) in nil })
   |                                                `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
21 |   }
22 | }
[94/173] Compiling CasePathsCore UncheckedSendable.swift
[95/173] Compiling CasePathsCore TypeName.swift
[96/173] Compiling CasePathsCore KeyPath+Sendable.swift
[97/173] Compiling CasePathsCore CasePathIterable.swift
[98/173] Compiling CasePathsCore AnyCasePath.swift
[99/173] Compiling CasePathsCore Optional+CasePathable.swift
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/Optional+CasePathable.swift:41:21: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 39 |       let casePath = Wrapped.allCasePaths[keyPath: keyPath]
 40 |       return AnyCasePath(
 41 |         embed: { $0.map(casePath.embed) },
    |                     `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 42 |         extract: {
 43 |           guard case let .some(wrapped) = $0, let member = casePath.extract(from: wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/Optional+CasePathable.swift:39:11: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 37 |     ) -> AnyCasePath<Optional, Member?>
 38 |     where Wrapped: CasePathable {
 39 |       let casePath = Wrapped.allCasePaths[keyPath: keyPath]
    |           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 40 |       return AnyCasePath(
 41 |         embed: { $0.map(casePath.embed) },
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/Optional+CasePathable.swift:43:43: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 41 |         embed: { $0.map(casePath.embed) },
 42 |         extract: {
 43 |           guard case let .some(wrapped) = $0, let member = casePath.extract(from: wrapped)
    |                                           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 44 |           else { return .none }
 45 |           return member
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/Optional+CasePathable.swift:39:11: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 37 |     ) -> AnyCasePath<Optional, Member?>
 38 |     where Wrapped: CasePathable {
 39 |       let casePath = Wrapped.allCasePaths[keyPath: keyPath]
    |           `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure
 40 |       return AnyCasePath(
 41 |         embed: { $0.map(casePath.embed) },
[100/174] Compiling CasePathsCore CasePathReflectable.swift
[101/174] Emitting module CasePathsCore
[102/174] Compiling CasePathsCore CasePathable.swift
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:78:9: warning: capture of non-sendable type 'Value.Type' in an isolated closure
 76 |     return Case<AppendedValue>(
 77 |       embed: {
 78 |         _embed(Value.allCasePaths[keyPath: keyPath].embed($0))
    |         `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
 79 |       },
 80 |       extract: {
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:74:29: warning: capture of non-sendable type 'Value.Type' in an isolated closure
 72 |     dynamicMember keyPath: KeyPath<Value.AllCasePaths, AnyCasePath<Value, AppendedValue>>
 73 |   ) -> Case<AppendedValue>
 74 |   where Value: CasePathable {
    |                             `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
 75 |     let keyPath = keyPath.unsafeSendable()
 76 |     return Case<AppendedValue>(
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:81:28: warning: capture of non-sendable type 'Value.Type' in an isolated closure
 79 |       },
 80 |       extract: {
 81 |         _extract(from: $0).flatMap(Value.allCasePaths[keyPath: keyPath].extract)
    |                            `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
 82 |       }
 83 |     )
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:74:29: warning: capture of non-sendable type 'Value.Type' in an isolated closure
 72 |     dynamicMember keyPath: KeyPath<Value.AllCasePaths, AnyCasePath<Value, AppendedValue>>
 73 |   ) -> Case<AppendedValue>
 74 |   where Value: CasePathable {
    |                             `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
 75 |     let keyPath = keyPath.unsafeSendable()
 76 |     return Case<AppendedValue>(
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:522:9: warning: capture of non-sendable type 'Value.Type' in an isolated closure
520 |     return AnyCasePath<Root, AppendedValue>(
521 |       embed: {
522 |         embed(Value.allCasePaths[keyPath: keyPath].embed($0))
    |         `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
523 |       },
524 |       extract: {
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:518:41: warning: capture of non-sendable type 'Value.Type' in an isolated closure
516 |   public subscript<AppendedValue>(
517 |     dynamicMember keyPath: KeyPath<Value.AllCasePaths, AnyCasePath<Value, AppendedValue>>
518 |   ) -> AnyCasePath<Root, AppendedValue> {
    |                                         `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
519 |     let keyPath = keyPath.unsafeSendable()
520 |     return AnyCasePath<Root, AppendedValue>(
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:525:27: warning: capture of non-sendable type 'Value.Type' in an isolated closure
523 |       },
524 |       extract: {
525 |         extract(from: $0).flatMap(
    |                           `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
526 |           Value.allCasePaths[keyPath: keyPath].extract(from:)
527 |         )
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:518:41: warning: capture of non-sendable type 'Value.Type' in an isolated closure
516 |   public subscript<AppendedValue>(
517 |     dynamicMember keyPath: KeyPath<Value.AllCasePaths, AnyCasePath<Value, AppendedValue>>
518 |   ) -> AnyCasePath<Root, AppendedValue> {
    |                                         `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
519 |     let keyPath = keyPath.unsafeSendable()
520 |     return AnyCasePath<Root, AppendedValue>(
[103/174] Compiling CasePathsCore CasePathReflectable.swift
[104/174] Compiling CasePathsCore CasePathable.swift
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:78:9: warning: capture of non-sendable type 'Value.Type' in an isolated closure
 76 |     return Case<AppendedValue>(
 77 |       embed: {
 78 |         _embed(Value.allCasePaths[keyPath: keyPath].embed($0))
    |         `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
 79 |       },
 80 |       extract: {
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:74:29: warning: capture of non-sendable type 'Value.Type' in an isolated closure
 72 |     dynamicMember keyPath: KeyPath<Value.AllCasePaths, AnyCasePath<Value, AppendedValue>>
 73 |   ) -> Case<AppendedValue>
 74 |   where Value: CasePathable {
    |                             `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
 75 |     let keyPath = keyPath.unsafeSendable()
 76 |     return Case<AppendedValue>(
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:81:28: warning: capture of non-sendable type 'Value.Type' in an isolated closure
 79 |       },
 80 |       extract: {
 81 |         _extract(from: $0).flatMap(Value.allCasePaths[keyPath: keyPath].extract)
    |                            `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
 82 |       }
 83 |     )
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:74:29: warning: capture of non-sendable type 'Value.Type' in an isolated closure
 72 |     dynamicMember keyPath: KeyPath<Value.AllCasePaths, AnyCasePath<Value, AppendedValue>>
 73 |   ) -> Case<AppendedValue>
 74 |   where Value: CasePathable {
    |                             `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
 75 |     let keyPath = keyPath.unsafeSendable()
 76 |     return Case<AppendedValue>(
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:522:9: warning: capture of non-sendable type 'Value.Type' in an isolated closure
520 |     return AnyCasePath<Root, AppendedValue>(
521 |       embed: {
522 |         embed(Value.allCasePaths[keyPath: keyPath].embed($0))
    |         `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
523 |       },
524 |       extract: {
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:518:41: warning: capture of non-sendable type 'Value.Type' in an isolated closure
516 |   public subscript<AppendedValue>(
517 |     dynamicMember keyPath: KeyPath<Value.AllCasePaths, AnyCasePath<Value, AppendedValue>>
518 |   ) -> AnyCasePath<Root, AppendedValue> {
    |                                         `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
519 |     let keyPath = keyPath.unsafeSendable()
520 |     return AnyCasePath<Root, AppendedValue>(
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:525:27: warning: capture of non-sendable type 'Value.Type' in an isolated closure
523 |       },
524 |       extract: {
525 |         extract(from: $0).flatMap(
    |                           `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
526 |           Value.allCasePaths[keyPath: keyPath].extract(from:)
527 |         )
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsCore/CasePathable.swift:518:41: warning: capture of non-sendable type 'Value.Type' in an isolated closure
516 |   public subscript<AppendedValue>(
517 |     dynamicMember keyPath: KeyPath<Value.AllCasePaths, AnyCasePath<Value, AppendedValue>>
518 |   ) -> AnyCasePath<Root, AppendedValue> {
    |                                         `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
519 |     let keyPath = keyPath.unsafeSendable()
520 |     return AnyCasePath<Root, AppendedValue>(
[105/174] Compiling CasePathsCore Result+CasePathable.swift
[107/174] Emitting module SwiftSyntax
[114/174] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[115/174] Compiling SwiftSyntax RawSyntaxTokenView.swift
[116/174] Compiling SwiftSyntax SourceEdit.swift
[117/174] Compiling SwiftSyntax SourceLength.swift
[118/174] Compiling SwiftSyntax SourceLocation.swift
[119/174] Compiling SwiftSyntax SourcePresence.swift
[120/174] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[121/174] Compiling SwiftSyntax Syntax.swift
[122/174] Compiling SwiftSyntax SyntaxArena.swift
[137/181] Compiling SwiftSyntax SyntaxCollections.swift
[138/181] Compiling SwiftSyntax SyntaxEnum.swift
[139/181] Compiling SwiftSyntax SyntaxKind.swift
[140/181] Compiling SwiftSyntax SyntaxRewriter.swift
[141/181] Compiling SwiftSyntax SyntaxTraits.swift
[142/181] Compiling SwiftSyntax SyntaxVisitor.swift
[143/181] Compiling SwiftSyntax TokenKind.swift
[144/181] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[145/181] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[146/181] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[147/181] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[148/181] Compiling SwiftSyntax RawSyntaxValidation.swift
[149/181] Compiling SwiftSyntax SyntaxNodesAB.swift
[150/181] Compiling SwiftSyntax SyntaxNodesC.swift
[151/181] Compiling SwiftSyntax AbsolutePosition.swift
[152/181] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[153/181] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[154/181] Compiling SwiftSyntax Assert.swift
[155/181] Compiling SwiftSyntax BumpPtrAllocator.swift
[156/181] Compiling SwiftSyntax CommonAncestor.swift
[157/181] Compiling SwiftSyntax Convenience.swift
[158/181] Compiling SwiftSyntax CustomTraits.swift
[159/181] Compiling SwiftSyntax SyntaxProtocol.swift
[160/181] Compiling SwiftSyntax SyntaxText.swift
[161/181] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[162/181] Compiling SwiftSyntax TokenDiagnostic.swift
[163/181] Compiling SwiftSyntax TokenSequence.swift
[164/181] Compiling SwiftSyntax TokenSyntax.swift
[165/181] Compiling SwiftSyntax Trivia.swift
[166/181] Compiling SwiftSyntax Utils.swift
[167/181] Compiling SwiftSyntax ChildNameForKeyPath.swift
[168/181] Compiling SwiftSyntax Keyword.swift
[169/181] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[170/181] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[171/181] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[172/181] Compiling SwiftSyntax SyntaxBaseNodes.swift
[173/181] Compiling SwiftSyntax SyntaxNodesD.swift
[174/181] Compiling SwiftSyntax SyntaxNodesEF.swift
[175/181] Compiling SwiftSyntax SyntaxNodesGHI.swift
[176/181] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[177/181] Compiling SwiftSyntax SyntaxNodesOP.swift
[178/181] Compiling SwiftSyntax SyntaxNodesQRS.swift
[179/181] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[180/240] Compiling SwiftBasicFormat Syntax+Extensions.swift
[181/240] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[182/240] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[183/240] Compiling SwiftDiagnostics Message.swift
[184/241] Compiling SwiftDiagnostics Note.swift
[185/241] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[186/241] Compiling SwiftDiagnostics FixIt.swift
[187/241] Compiling SwiftBasicFormat InferIndentation.swift
[188/241] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[189/241] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[190/241] Compiling SwiftDiagnostics Diagnostic.swift
[191/241] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[192/241] Emitting module SwiftDiagnostics
[193/241] Compiling SwiftDiagnostics Convenience.swift
[194/241] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[195/241] Compiling SwiftBasicFormat Indenter.swift
[196/241] Emitting module SwiftBasicFormat
[197/241] Compiling SwiftBasicFormat BasicFormat.swift
[198/241] Compiling SwiftParser TopLevel.swift
[199/241] Compiling SwiftParser TriviaParser.swift
[200/241] Compiling SwiftParser Types.swift
[201/241] Compiling SwiftParser ExperimentalFeatures.swift
[202/245] Compiling SwiftParser StringLiterals.swift
[203/245] Compiling SwiftParser SwiftParserCompatibility.swift
[204/245] Compiling SwiftParser SwiftVersion.swift
[205/245] Compiling SwiftParser SyntaxUtils.swift
[206/245] Compiling SwiftParser TokenConsumer.swift
[207/245] Compiling SwiftParser TokenPrecedence.swift
[208/245] Compiling SwiftParser TokenSpec.swift
[209/245] Compiling SwiftParser TokenSpecSet.swift
[210/245] Compiling SwiftParser UnicodeScalarExtensions.swift
[211/245] Compiling SwiftParser Lookahead.swift
[212/245] Compiling SwiftParser LoopProgressCondition.swift
[213/245] Compiling SwiftParser Modifiers.swift
[214/245] Compiling SwiftParser Names.swift
[215/245] Compiling SwiftParser Nominals.swift
[216/245] Compiling SwiftParser Parameters.swift
[217/245] Compiling SwiftParser ParseSourceFile.swift
[218/245] Compiling SwiftParser Parser.swift
[219/245] Compiling SwiftParser Patterns.swift
[220/245] Compiling SwiftParser Recovery.swift
[221/245] Compiling SwiftParser Specifiers.swift
[222/245] Compiling SwiftParser Statements.swift
[223/245] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[224/245] Emitting module SwiftParser
[225/245] Compiling SwiftParser Cursor.swift
[226/245] Compiling SwiftParser Lexeme.swift
[227/245] Compiling SwiftParser LexemeSequence.swift
[228/245] Compiling SwiftParser Lexer.swift
[229/245] Compiling SwiftParser RegexLiteralLexer.swift
[230/245] Compiling SwiftParser Attributes.swift
[231/245] Compiling SwiftParser Availability.swift
[232/245] Compiling SwiftParser CharacterInfo.swift
[233/245] Compiling SwiftParser CollectionNodes+Parsable.swift
[234/245] Compiling SwiftParser Declarations.swift
[235/245] Compiling SwiftParser Directives.swift
[236/245] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[237/245] Compiling SwiftParser Expressions.swift
[238/245] Compiling SwiftParser IncrementalParseTransition.swift
[239/245] Compiling SwiftParser IsValidIdentifier.swift
[240/245] Compiling SwiftParser IsLexerClassified.swift
[241/245] Compiling SwiftParser LayoutNodes+Parsable.swift
[242/245] Compiling SwiftParser Parser+TokenSpecSet.swift
[243/245] Compiling SwiftParser TokenSpecStaticMembers.swift
[244/268] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[245/269] Compiling SwiftOperators PrecedenceGroup.swift
[246/269] Compiling SwiftOperators PrecedenceGraph.swift
[247/270] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[248/270] Compiling SwiftOperators SyntaxSynthesis.swift
[249/270] Compiling SwiftOperators OperatorTable.swift
[250/270] Compiling SwiftOperators OperatorTable+Defaults.swift
[251/270] Compiling SwiftOperators OperatorError+Diagnostics.swift
[252/270] Emitting module SwiftOperators
[253/270] Compiling SwiftOperators Operator.swift
[254/270] Compiling SwiftOperators OperatorTable+Folding.swift
[255/270] Compiling SwiftOperators OperatorError.swift
[256/270] Compiling SwiftOperators OperatorTable+Semantics.swift
[257/270] Compiling SwiftParserDiagnostics PresenceUtils.swift
[258/270] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[259/270] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[260/270] Compiling SwiftParserDiagnostics Utils.swift
[261/270] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[262/270] Compiling SwiftParserDiagnostics MissingNodesError.swift
[263/270] Compiling SwiftParserDiagnostics MissingTokenError.swift
[264/270] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[265/270] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[266/270] Emitting module SwiftParserDiagnostics
[267/270] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[268/270] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[269/285] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[270/285] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[271/286] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[272/286] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[273/286] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[274/286] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[275/286] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[276/286] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[277/286] Compiling SwiftSyntaxBuilder Indenter.swift
[278/286] Compiling SwiftSyntaxBuilder ListBuilder.swift
[279/286] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[280/286] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[281/286] Emitting module SwiftSyntaxBuilder
[282/286] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[283/286] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[284/286] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[285/304] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[286/304] Compiling SwiftSyntaxMacros AccessorMacro.swift
[287/305] Compiling SwiftSyntaxMacros MemberMacro.swift
[288/305] Compiling SwiftSyntaxMacros PeerMacro.swift
[289/305] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[290/305] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[291/305] Compiling SwiftSyntaxMacros AttachedMacro.swift
[292/305] Compiling SwiftSyntaxMacros BodyMacro.swift
[293/305] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[294/305] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[295/305] Compiling SwiftSyntaxMacros PreambleMacro.swift
[296/305] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[297/305] Compiling SwiftSyntaxMacros Macro+Format.swift
[298/305] Compiling SwiftSyntaxMacros Macro.swift
[299/305] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[300/305] Emitting module SwiftSyntaxMacros
[301/305] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[302/305] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[303/305] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[304/315] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[305/315] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[306/315] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[307/315] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[308/315] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[309/315] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[310/315] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[311/315] Emitting module SwiftSyntaxMacroExpansion
[312/315] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[313/315] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[314/327] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[315/328] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[316/328] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[317/328] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[318/328] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[319/328] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[320/328] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[321/328] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[322/328] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[323/328] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[324/328] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[325/328] Emitting module SwiftCompilerPluginMessageHandling
[326/328] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[327/330] Emitting module SwiftCompilerPlugin
[328/330] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[329/333] Compiling CasePathsMacros CasePathableMacro.swift
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsMacros/CasePathableMacro.swift:52:1: warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter [#DeprecatedDeclaration]
 50 | }
 51 |
 52 | extension CasePathableMacro: MemberMacro {
    | `- warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter [#DeprecatedDeclaration]
 53 |   public static func expansion<
 54 |     Declaration: DeclGroupSyntax, Context: MacroExpansionContext
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntaxMacros/MacroProtocols/MemberMacro.swift:89:22: note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
53 |   /// - Returns: the set of member declarations introduced by this macro, which
54 |   /// are nested inside the `attachedTo` declaration.
55 |   static func expansion(
   |               `- note: requirement 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
56 |     of node: AttributeSyntax,
57 |     providingMembersOf declaration: some DeclGroupSyntax,
   :
87 |     message: "`MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter"
88 |   )
89 |   public static func expansion(
   |                      `- note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
90 |     of node: AttributeSyntax,
91 |     providingMembersOf declaration: some DeclGroupSyntax,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[330/333] Compiling CasePathsMacros Plugin.swift
[331/333] Emitting module CasePathsMacros
/Users/admin/builder/spi-builder-workspace/Sources/CasePathsMacros/CasePathableMacro.swift:52:1: warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter [#DeprecatedDeclaration]
 50 | }
 51 |
 52 | extension CasePathableMacro: MemberMacro {
    | `- warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter [#DeprecatedDeclaration]
 53 |   public static func expansion<
 54 |     Declaration: DeclGroupSyntax, Context: MacroExpansionContext
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntaxMacros/MacroProtocols/MemberMacro.swift:89:22: note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
53 |   /// - Returns: the set of member declarations introduced by this macro, which
54 |   /// are nested inside the `attachedTo` declaration.
55 |   static func expansion(
   |               `- note: requirement 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
56 |     of node: AttributeSyntax,
57 |     providingMembersOf declaration: some DeclGroupSyntax,
   :
87 |     message: "`MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter"
88 |   )
89 |   public static func expansion(
   |                      `- note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
90 |     of node: AttributeSyntax,
91 |     providingMembersOf declaration: some DeclGroupSyntax,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[331/333] Write Objects.LinkFileList
[332/333] Linking CasePathsMacros-tool
[334/347] Compiling CasePaths XCTestSupport.swift
[335/347] Compiling CasePaths Exports.swift
[336/347] Compiling CasePaths LockIsolated.swift
[337/347] Compiling CasePaths Deprecations.swift
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/Internal/Deprecations.swift:65:20: warning: capture of non-sendable type 'Root.Type' in an isolated closure
 63 |   @available(*, deprecated, message: "Use the '\\Optional.Cases.some' case key path, instead")
 64 |   public static var some: Self {
 65 |     .init(embed: { Root($0) }, extract: { $0.optional })
    |                    `- warning: capture of non-sendable type 'Root.Type' in an isolated closure
 66 |   }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/Internal/Deprecations.swift:65:43: warning: capture of non-sendable type 'Root.Type' in an isolated closure
 63 |   @available(*, deprecated, message: "Use the '\\Optional.Cases.some' case key path, instead")
 64 |   public static var some: Self {
 65 |     .init(embed: { Root($0) }, extract: { $0.optional })
    |                                           `- warning: capture of non-sendable type 'Root.Type' in an isolated closure
 66 |   }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/Internal/Deprecations.swift:345:16: warning: capture of non-sendable type 'Value.Type' in an isolated closure
343 |   public static var rawValue: Self {
344 |     .init(
345 |       embed: { $0.rawValue },
    |                `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
346 |       extract: { Value(rawValue: $0) }
347 |     )
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/Internal/Deprecations.swift:346:18: warning: capture of non-sendable type 'Value.Type' in an isolated closure
344 |     .init(
345 |       embed: { $0.rawValue },
346 |       extract: { Value(rawValue: $0) }
    |                  `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
347 |     )
348 |   }
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/Internal/Deprecations.swift:357:16: warning: capture of non-sendable type 'Value.Type' in an isolated closure
355 |   public static var description: Self {
356 |     .init(
357 |       embed: { $0.description },
    |                `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
358 |       extract: { Value($0) }
359 |     )
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/Internal/Deprecations.swift:358:18: warning: capture of non-sendable type 'Value.Type' in an isolated closure
356 |     .init(
357 |       embed: { $0.description },
358 |       extract: { Value($0) }
    |                  `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
359 |     )
360 |   }
[338/347] Compiling CasePaths XCTestSupport.swift
[339/347] Compiling CasePaths Deprecations.swift
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/Internal/Deprecations.swift:65:20: warning: capture of non-sendable type 'Root.Type' in an isolated closure
 63 |   @available(*, deprecated, message: "Use the '\\Optional.Cases.some' case key path, instead")
 64 |   public static var some: Self {
 65 |     .init(embed: { Root($0) }, extract: { $0.optional })
    |                    `- warning: capture of non-sendable type 'Root.Type' in an isolated closure
 66 |   }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/Internal/Deprecations.swift:65:43: warning: capture of non-sendable type 'Root.Type' in an isolated closure
 63 |   @available(*, deprecated, message: "Use the '\\Optional.Cases.some' case key path, instead")
 64 |   public static var some: Self {
 65 |     .init(embed: { Root($0) }, extract: { $0.optional })
    |                                           `- warning: capture of non-sendable type 'Root.Type' in an isolated closure
 66 |   }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/Internal/Deprecations.swift:345:16: warning: capture of non-sendable type 'Value.Type' in an isolated closure
343 |   public static var rawValue: Self {
344 |     .init(
345 |       embed: { $0.rawValue },
    |                `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
346 |       extract: { Value(rawValue: $0) }
347 |     )
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/Internal/Deprecations.swift:346:18: warning: capture of non-sendable type 'Value.Type' in an isolated closure
344 |     .init(
345 |       embed: { $0.rawValue },
346 |       extract: { Value(rawValue: $0) }
    |                  `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
347 |     )
348 |   }
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/Internal/Deprecations.swift:357:16: warning: capture of non-sendable type 'Value.Type' in an isolated closure
355 |   public static var description: Self {
356 |     .init(
357 |       embed: { $0.description },
    |                `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
358 |       extract: { Value($0) }
359 |     )
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/Internal/Deprecations.swift:358:18: warning: capture of non-sendable type 'Value.Type' in an isolated closure
356 |     .init(
357 |       embed: { $0.description },
358 |       extract: { Value($0) }
    |                  `- warning: capture of non-sendable type 'Value.Type' in an isolated closure
359 |     )
360 |   }
[340/347] Compiling CasePaths LockIsolated.swift
[341/347] Compiling CasePaths EnumReflection.swift
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/EnumReflection.swift:246:2: warning: symbol name 'swift_getTypeByMangledNameInContext' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
244 | }
245 |
246 | @_silgen_name("swift_getTypeByMangledNameInContext")
    |  `- warning: symbol name 'swift_getTypeByMangledNameInContext' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
247 | private func swift_getTypeByMangledNameInContext(
248 |   _ name: UnsafePointer<UInt8>,
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/EnumReflection.swift:246:2: warning: symbol name 'swift_getTypeByMangledNameInContext' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
244 | }
245 |
246 | @_silgen_name("swift_getTypeByMangledNameInContext")
    |  `- warning: symbol name 'swift_getTypeByMangledNameInContext' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
247 | private func swift_getTypeByMangledNameInContext(
248 |   _ name: UnsafePointer<UInt8>,
[343/347] Compiling CasePaths Macros.swift
[345/347] Compiling CasePaths Exports.swift
[346/347] Emitting module CasePaths
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/EnumReflection.swift:246:2: warning: symbol name 'swift_getTypeByMangledNameInContext' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
244 | }
245 |
246 | @_silgen_name("swift_getTypeByMangledNameInContext")
    |  `- warning: symbol name 'swift_getTypeByMangledNameInContext' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
247 | private func swift_getTypeByMangledNameInContext(
248 |   _ name: UnsafePointer<UInt8>,
/Users/admin/builder/spi-builder-workspace/Sources/CasePaths/EnumReflection.swift:246:2: warning: symbol name 'swift_getTypeByMangledNameInContext' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
244 | }
245 |
246 | @_silgen_name("swift_getTypeByMangledNameInContext")
    |  `- warning: symbol name 'swift_getTypeByMangledNameInContext' is reserved for the Swift runtime and cannot be directly referenced without causing unpredictable behavior; this will become an error
247 | private func swift_getTypeByMangledNameInContext(
248 |   _ name: UnsafePointer<UInt8>,
Build complete! (52.21s)
Fetching https://github.com/apple/swift-docc-plugin
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
Fetching https://github.com/pointfreeco/swift-macro-testing
Fetching https://github.com/swiftlang/swift-syntax
[1/908] Fetching swift-macro-testing
[110/2990] Fetching swift-macro-testing, swift-docc-plugin
[231/8457] Fetching swift-macro-testing, swift-docc-plugin, xctest-dynamic-overlay
[8458/79363] Fetching swift-macro-testing, swift-docc-plugin, xctest-dynamic-overlay, swift-syntax
Fetched https://github.com/swiftlang/swift-syntax from cache (3.34s)
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (3.34s)
Fetched https://github.com/apple/swift-docc-plugin from cache (3.34s)
Fetched https://github.com/pointfreeco/swift-macro-testing from cache (3.34s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (5.28s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3413] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.16s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.74s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 1.5.2 (0.40s)
Computing version for https://github.com/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 601.0.1 (0.60s)
Computing version for https://github.com/pointfreeco/swift-macro-testing
Computed https://github.com/pointfreeco/swift-macro-testing at 0.6.3 (0.43s)
Fetching https://github.com/pointfreeco/swift-snapshot-testing
[1/13227] Fetching swift-snapshot-testing
Fetched https://github.com/pointfreeco/swift-snapshot-testing from cache (2.75s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing
Computed https://github.com/pointfreeco/swift-snapshot-testing at 1.18.4 (3.22s)
Fetching https://github.com/pointfreeco/swift-custom-dump
[1/4581] Fetching swift-custom-dump
Fetched https://github.com/pointfreeco/swift-custom-dump from cache (0.86s)
Computing version for https://github.com/pointfreeco/swift-custom-dump
Computed https://github.com/pointfreeco/swift-custom-dump at 1.3.3 (1.28s)
Creating working copy for https://github.com/pointfreeco/swift-custom-dump
Working copy of https://github.com/pointfreeco/swift-custom-dump resolved at 1.3.3
Creating working copy for https://github.com/swiftlang/swift-syntax
Working copy of https://github.com/swiftlang/swift-syntax resolved at 601.0.1
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.4
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing
Working copy of https://github.com/pointfreeco/swift-snapshot-testing resolved at 1.18.4
Creating working copy for https://github.com/pointfreeco/swift-macro-testing
Working copy of https://github.com/pointfreeco/swift-macro-testing resolved at 0.6.3
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 1.5.2
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" : "509.0.0",
            "upper_bound" : "602.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax"
    },
    {
      "identity" : "xctest-dynamic-overlay",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/xctest-dynamic-overlay"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "swift-macro-testing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.2.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-macro-testing"
    }
  ],
  "manifest_display_name" : "swift-case-paths",
  "name" : "swift-case-paths",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "CasePaths",
      "targets" : [
        "CasePaths"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CasePathsCore",
      "targets" : [
        "CasePathsCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CasePathsMacros",
      "targets" : [
        "CasePathsMacros"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "swift_languages_versions" : [
    "6"
  ],
  "targets" : [
    {
      "c99name" : "CasePathsTests",
      "module_type" : "SwiftTarget",
      "name" : "CasePathsTests",
      "path" : "Tests/CasePathsTests",
      "sources" : [
        "CasePathableTests.swift",
        "CasePathsTests.swift",
        "CaseSetTests.swift",
        "CompileTimeTests.swift",
        "DeprecatedTests.swift",
        "DeprecatedXCTModifyTests.swift",
        "MacroTests.swift",
        "ReflectionTests.swift",
        "XCTModifyTests.swift",
        "XCTUnwrapTests.swift"
      ],
      "target_dependencies" : [
        "CasePaths"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CasePathsMacrosTests",
      "module_type" : "SwiftTarget",
      "name" : "CasePathsMacrosTests",
      "path" : "Tests/CasePathsMacrosTests",
      "product_dependencies" : [
        "MacroTesting"
      ],
      "sources" : [
        "CasePathableMacroTests.swift"
      ],
      "target_dependencies" : [
        "CasePathsMacros"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CasePathsMacros",
      "module_type" : "SwiftTarget",
      "name" : "CasePathsMacros",
      "path" : "Sources/CasePathsMacros",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "CasePaths",
        "CasePathsMacros"
      ],
      "sources" : [
        "CasePathableMacro.swift",
        "Plugin.swift"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "CasePathsCore",
      "module_type" : "SwiftTarget",
      "name" : "CasePathsCore",
      "path" : "Sources/CasePathsCore",
      "product_dependencies" : [
        "IssueReporting",
        "XCTestDynamicOverlay"
      ],
      "product_memberships" : [
        "CasePaths",
        "CasePathsCore"
      ],
      "sources" : [
        "AnyCasePath.swift",
        "CasePathIterable.swift",
        "CasePathReflectable.swift",
        "CasePathable.swift",
        "Internal/KeyPath+Sendable.swift",
        "Internal/TypeName.swift",
        "Internal/UncheckedSendable.swift",
        "Never+CasePathable.swift",
        "Optional+CasePathable.swift",
        "Result+CasePathable.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CasePaths",
      "module_type" : "SwiftTarget",
      "name" : "CasePaths",
      "path" : "Sources/CasePaths",
      "product_memberships" : [
        "CasePaths"
      ],
      "sources" : [
        "EnumReflection.swift",
        "Internal/Deprecations.swift",
        "Internal/Exports.swift",
        "Internal/LockIsolated.swift",
        "Macros.swift",
        "XCTestSupport.swift"
      ],
      "target_dependencies" : [
        "CasePathsCore",
        "CasePathsMacros"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.