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 Csv2Img, reference main (c6941d), with Swift 6.2 (beta) for macOS (SPM) on 16 Aug 2025 17:13:22 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.66.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/fummicc1/csv2img.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/fummicc1/csv2img
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at c6941d8 chore: Update iossimulator
Cloned https://github.com/fummicc1/csv2img.git
Revision (git rev-parse @):
c6941d8c3a8672d1281ce9647d5ba6573832a422
SUCCESS checkout https://github.com/fummicc1/csv2img.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/fummicc1/csv2img.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
[3/3] Compiling plugin GenerateManualPlugin
Building for debugging...
[3/17] Write sources
[8/17] Write Csv2ImgCmd-entitlement.plist
[9/17] Write sources
[13/17] Write swift-version-1EA4D86E10B52AF.txt
[15/39] Compiling SwiftSyntax510 Empty.swift
[16/39] Emitting module SwiftSyntax510
[17/39] Emitting module SwiftSyntax509
[18/39] Compiling SwiftSyntax509 Empty.swift
[19/78] Compiling ArgumentParserToolInfo ToolInfo.swift
[20/78] Emitting module ArgumentParserToolInfo
[21/138] Compiling ArgumentParser SplitArguments.swift
[22/138] Compiling ArgumentParser DumpHelpGenerator.swift
[23/138] Compiling ArgumentParser HelpCommand.swift
[24/138] Compiling ArgumentParser HelpGenerator.swift
[25/138] Compiling ArgumentParser MessageInfo.swift
[26/138] Compiling ArgumentParser UsageGenerator.swift
[27/138] Compiling ArgumentParser CollectionExtensions.swift
[28/144] Compiling ArgumentParser BashCompletionsGenerator.swift
[29/144] Compiling ArgumentParser CompletionsGenerator.swift
[30/144] Compiling ArgumentParser FishCompletionsGenerator.swift
[31/144] Compiling ArgumentParser ZshCompletionsGenerator.swift
[32/144] Compiling ArgumentParser Argument.swift
[33/144] Compiling ArgumentParser ArgumentHelp.swift
[34/144] Compiling ArgumentParser ArgumentVisibility.swift
[35/144] Compiling ArgumentParser CommandConfiguration.swift
[36/144] Compiling ArgumentParser EnumerableFlag.swift
[37/144] Compiling ArgumentParser ExpressibleByArgument.swift
[38/144] Compiling ArgumentParser ParsableArguments.swift
[39/144] Compiling ArgumentParser ParsableArgumentsValidation.swift
[40/144] Compiling ArgumentParser ParsableCommand.swift
[41/144] Compiling ArgumentParser ParserError.swift
[42/144] Compiling ArgumentParser InputOrigin.swift
[43/144] Compiling ArgumentParser Name.swift
[44/144] Compiling ArgumentParser Parsed.swift
[45/144] Compiling ArgumentParser ParsedValues.swift
[46/147] Compiling ArgumentParser SequenceExtensions.swift
[47/147] Compiling ArgumentParser StringExtensions.swift
[48/147] Compiling ArgumentParser Tree.swift
[49/147] Emitting module ArgumentParser
[50/147] Compiling ArgumentParser ArgumentDecoder.swift
[51/147] Compiling ArgumentParser ArgumentDefinition.swift
[52/147] Compiling ArgumentParser ArgumentSet.swift
[53/147] Compiling ArgumentParser CommandParser.swift
[54/147] Emitting module SwiftSyntax
[55/147] Compiling ArgumentParser Errors.swift
[56/147] Compiling ArgumentParser Flag.swift
[57/147] Compiling ArgumentParser NameSpecification.swift
[58/147] Compiling ArgumentParser Option.swift
[66/147] Compiling ArgumentParser CompletionKind.swift
[67/147] Compiling ArgumentParser OptionGroup.swift
[68/147] Compiling ArgumentParser AsyncParsableCommand.swift
[90/147] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[91/147] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[92/147] Compiling SwiftSyntax SyntaxBaseNodes.swift
[93/147] Compiling SwiftSyntax SyntaxCollections.swift
[94/147] Compiling SwiftSyntax SyntaxEnum.swift
[95/147] Compiling SwiftSyntax SyntaxKind.swift
[96/147] Compiling SwiftSyntax SyntaxRewriter.swift
[97/147] Compiling Csv2ImgCore PdfSize.swift
[98/147] Compiling Csv2ImgCore String+Ex.swift
[99/148] Compiling Csv2ImgCore TypeConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/TypeConvertible.swift:25:1: warning: extension declares a conformance of imported type 'PDFDocument' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'PDFKit' introduce this conformance in the future
23 |
24 | }
25 | extension PDFDocument: @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'PDFDocument' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'PDFKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
26 | }
27 | extension PDFDocument: CsvExportable {
[100/148] Emitting module Csv2ImgCore
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/ImageMaker.swift:48:9: warning: stored property 'maximumRowCount' of 'Sendable'-conforming class 'ImageMaker' is mutable; this is an error in the Swift 6 language mode
 46 |     }
 47 |
 48 |     var maximumRowCount: Int?
    |         `- warning: stored property 'maximumRowCount' of 'Sendable'-conforming class 'ImageMaker' is mutable; this is an error in the Swift 6 language mode
 49 |
 50 |     var fontSize: Double
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/PdfMaker.swift:44:22: warning: stored property 'fontSize' of 'Sendable'-conforming class 'PdfMaker' is mutable; this is an error in the Swift 6 language mode
 42 |
 43 |     let maximumRowCount: Int?
 44 |     private(set) var fontSize: Double
    |                      `- warning: stored property 'fontSize' of 'Sendable'-conforming class 'PdfMaker' is mutable; this is an error in the Swift 6 language mode
 45 |     var metadata: PDFMetadata
 46 |
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/TypeConvertible.swift:25:1: warning: extension declares a conformance of imported type 'PDFDocument' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'PDFKit' introduce this conformance in the future
23 |
24 | }
25 | extension PDFDocument: @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'PDFDocument' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'PDFKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
26 | }
27 | extension PDFDocument: CsvExportable {
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/ImageMaker.swift:48:9: warning: stored property 'maximumRowCount' of 'Sendable'-conforming class 'ImageMaker' is mutable; this is an error in the Swift 6 language mode
 46 |     }
 47 |
 48 |     var maximumRowCount: Int?
    |         `- warning: stored property 'maximumRowCount' of 'Sendable'-conforming class 'ImageMaker' is mutable; this is an error in the Swift 6 language mode
 49 |
 50 |     var fontSize: Double
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/ImageMaker.swift:175:21: warning: immutable value 'item' was never used; consider replacing with '_' or removing it [#no-usage]
173 |         for (i, row) in rows.enumerated() {
174 |             var rowFrames: [CGRect] = []
175 |             for (j, item) in row.values.enumerated() {
    |                     `- warning: immutable value 'item' was never used; consider replacing with '_' or removing it [#no-usage]
176 |                 if columns.count <= j { continue }
177 |                 let xOffset = columnWidths[0..<j].reduce(0, +) + (j + 1) * horizontalSpace
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/ImageMaker.swift:48:9: warning: stored property 'maximumRowCount' of 'Sendable'-conforming class 'ImageMaker' is mutable; this is an error in the Swift 6 language mode
 46 |     }
 47 |
 48 |     var maximumRowCount: Int?
    |         `- warning: stored property 'maximumRowCount' of 'Sendable'-conforming class 'ImageMaker' is mutable; this is an error in the Swift 6 language mode
 49 |
 50 |     var fontSize: Double
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/ImageMaker.swift:175:21: warning: immutable value 'item' was never used; consider replacing with '_' or removing it [#no-usage]
173 |         for (i, row) in rows.enumerated() {
174 |             var rowFrames: [CGRect] = []
175 |             for (j, item) in row.values.enumerated() {
    |                     `- warning: immutable value 'item' was never used; consider replacing with '_' or removing it [#no-usage]
176 |                 if columns.count <= j { continue }
177 |                 let xOffset = columnWidths[0..<j].reduce(0, +) + (j + 1) * horizontalSpace
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/CsvColumnStyle+Ex.swift:25:16: warning: expression implicitly coerced from 'NSColor?' to 'Any'
23 |             return normalColor()
24 |         }
25 |         return Color(
   |                |- warning: expression implicitly coerced from 'NSColor?' to 'Any'
   |                |- note: provide a default value to avoid this warning
   |                |- note: force-unwrap the value to avoid this warning
   |                `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
26 |             cgColor: color
27 |         )
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/CsvColumnStyle+Ex.swift:25:16: warning: expression implicitly coerced from 'NSColor?' to 'Any'
23 |             return normalColor()
24 |         }
25 |         return Color(
   |                |- warning: expression implicitly coerced from 'NSColor?' to 'Any'
   |                |- note: provide a default value to avoid this warning
   |                |- note: force-unwrap the value to avoid this warning
   |                `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
26 |             cgColor: color
27 |         )
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/Csv.swift:87:9: warning: actor-isolated property 'isLoadingSubject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 85 |         >
 86 |     {
 87 |         isLoadingSubject.eraseToAnyPublisher()
    |         `- warning: actor-isolated property 'isLoadingSubject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 88 |     }
 89 |
 90 |     /// `CurrentValueSubject` to store ``isLoading``.
 91 |     private let isLoadingSubject:
    |                 `- note: property declared here
 92 |         CurrentValueSubject<
 93 |             Bool,
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/Csv.swift:112:9: warning: actor-isolated property 'progressSubject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
110 |         >
111 |     {
112 |         progressSubject.eraseToAnyPublisher()
    |         `- warning: actor-isolated property 'progressSubject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |     }
114 |
115 |     /// `CurrentValueSubject` to store ``progress``.
116 |     private let progressSubject:
    |                 `- note: property declared here
117 |         CurrentValueSubject<
118 |             Double,
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/Csv.swift:521:38: warning: actor-isolated property 'progressSubject' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
114 |
115 |     /// `CurrentValueSubject` to store ``progress``.
116 |     private let progressSubject:
    |                 `- note: mutation of this property is only permitted within the actor
117 |         CurrentValueSubject<
118 |             Double,
    :
519 |                                 rows: await self.rows
520 |                             ) { progress in
521 |                                 self.progressSubject.value = progress
    |                                      `- warning: actor-isolated property 'progressSubject' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
522 |                             }
523 |                             continuation.resume(returning: image)
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/Csv.swift:560:42: warning: actor-isolated property 'progressSubject' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
114 |
115 |     /// `CurrentValueSubject` to store ``progress``.
116 |     private let progressSubject:
    |                 `- note: mutation of this property is only permitted within the actor
117 |         CurrentValueSubject<
118 |             Double,
    :
558 |                                     rows: await self.rows
559 |                                 ) { progress in
560 |                                     self.progressSubject.value = progress
    |                                          `- warning: actor-isolated property 'progressSubject' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
561 |                                 }
562 |                             } else {
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/Csv.swift:567:42: warning: actor-isolated property 'progressSubject' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
114 |
115 |     /// `CurrentValueSubject` to store ``progress``.
116 |     private let progressSubject:
    |                 `- note: mutation of this property is only permitted within the actor
117 |         CurrentValueSubject<
118 |             Double,
    :
565 |                                     rows: await self.rows
566 |                                 ) { progress in
567 |                                     self.progressSubject.value = progress
    |                                          `- warning: actor-isolated property 'progressSubject' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
568 |                                 }
569 |                             }
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/Csv.swift:87:9: warning: actor-isolated property 'isLoadingSubject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 85 |         >
 86 |     {
 87 |         isLoadingSubject.eraseToAnyPublisher()
    |         `- warning: actor-isolated property 'isLoadingSubject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 88 |     }
 89 |
 90 |     /// `CurrentValueSubject` to store ``isLoading``.
 91 |     private let isLoadingSubject:
    |                 `- note: property declared here
 92 |         CurrentValueSubject<
 93 |             Bool,
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/Csv.swift:112:9: warning: actor-isolated property 'progressSubject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
110 |         >
111 |     {
112 |         progressSubject.eraseToAnyPublisher()
    |         `- warning: actor-isolated property 'progressSubject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |     }
114 |
115 |     /// `CurrentValueSubject` to store ``progress``.
116 |     private let progressSubject:
    |                 `- note: property declared here
117 |         CurrentValueSubject<
118 |             Double,
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/Csv.swift:521:38: warning: actor-isolated property 'progressSubject' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
114 |
115 |     /// `CurrentValueSubject` to store ``progress``.
116 |     private let progressSubject:
    |                 `- note: mutation of this property is only permitted within the actor
117 |         CurrentValueSubject<
118 |             Double,
    :
519 |                                 rows: await self.rows
520 |                             ) { progress in
521 |                                 self.progressSubject.value = progress
    |                                      `- warning: actor-isolated property 'progressSubject' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
522 |                             }
523 |                             continuation.resume(returning: image)
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/Csv.swift:560:42: warning: actor-isolated property 'progressSubject' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
114 |
115 |     /// `CurrentValueSubject` to store ``progress``.
116 |     private let progressSubject:
    |                 `- note: mutation of this property is only permitted within the actor
117 |         CurrentValueSubject<
118 |             Double,
    :
558 |                                     rows: await self.rows
559 |                                 ) { progress in
560 |                                     self.progressSubject.value = progress
    |                                          `- warning: actor-isolated property 'progressSubject' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
561 |                                 }
562 |                             } else {
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/Csv.swift:567:42: warning: actor-isolated property 'progressSubject' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
114 |
115 |     /// `CurrentValueSubject` to store ``progress``.
116 |     private let progressSubject:
    |                 `- note: mutation of this property is only permitted within the actor
117 |         CurrentValueSubject<
118 |             Double,
    :
565 |                                     rows: await self.rows
566 |                                 ) { progress in
567 |                                     self.progressSubject.value = progress
    |                                          `- warning: actor-isolated property 'progressSubject' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
568 |                                 }
569 |                             }
[113/148] Compiling Csv2ImgCore PdfMaker.swift
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/PdfMaker.swift:44:22: warning: stored property 'fontSize' of 'Sendable'-conforming class 'PdfMaker' is mutable; this is an error in the Swift 6 language mode
 42 |
 43 |     let maximumRowCount: Int?
 44 |     private(set) var fontSize: Double
    |                      `- warning: stored property 'fontSize' of 'Sendable'-conforming class 'PdfMaker' is mutable; this is an error in the Swift 6 language mode
 45 |     var metadata: PDFMetadata
 46 |
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/PdfMaker.swift:214:53: warning: expression implicitly coerced from 'String?' to 'Any'
212 |             let coreInfo =
213 |                 [
214 |                     kCGPDFContextTitle as CFString: metadata.title,
    |                                                     |        |- note: provide a default value to avoid this warning
    |                                                     |        |- note: force-unwrap the value to avoid this warning
    |                                                     |        `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                     `- warning: expression implicitly coerced from 'String?' to 'Any'
215 |                     kCGPDFContextAuthor as CFString: metadata.author,
216 |                     kCGPDFContextMediaBox: mediaBoxPerPage,
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/PdfMaker.swift:215:54: warning: expression implicitly coerced from 'String?' to 'Any'
213 |                 [
214 |                     kCGPDFContextTitle as CFString: metadata.title,
215 |                     kCGPDFContextAuthor as CFString: metadata.author,
    |                                                      |        |- note: provide a default value to avoid this warning
    |                                                      |        |- note: force-unwrap the value to avoid this warning
    |                                                      |        `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                      `- warning: expression implicitly coerced from 'String?' to 'Any'
216 |                     kCGPDFContextMediaBox: mediaBoxPerPage,
217 |                 ] as [CFString: Any]
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/PdfMaker.swift:418:53: warning: expression implicitly coerced from 'String?' to 'Any'
416 |             let coreInfo =
417 |                 [
418 |                     kCGPDFContextTitle as CFString: metadata.title,
    |                                                     |        |- note: provide a default value to avoid this warning
    |                                                     |        |- note: force-unwrap the value to avoid this warning
    |                                                     |        `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                     `- warning: expression implicitly coerced from 'String?' to 'Any'
419 |                     kCGPDFContextAuthor as CFString: metadata.author,
420 |                     kCGPDFContextMediaBox: mediaBoxPerPage,
/Users/admin/builder/spi-builder-workspace/Sources/Csv2ImgCore/PdfMaker.swift:419:54: warning: expression implicitly coerced from 'String?' to 'Any'
417 |                 [
418 |                     kCGPDFContextTitle as CFString: metadata.title,
419 |                     kCGPDFContextAuthor as CFString: metadata.author,
    |                                                      |        |- note: provide a default value to avoid this warning
    |                                                      |        |- note: force-unwrap the value to avoid this warning
    |                                                      |        `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                      `- warning: expression implicitly coerced from 'String?' to 'Any'
420 |                     kCGPDFContextMediaBox: mediaBoxPerPage,
421 |                 ] as [CFString: Any]
[114/150] Compiling Csv2ImgCmd command.swift
[115/150] Emitting module Csv2ImgCmd
[115/150] Write Objects.LinkFileList
[116/150] Linking Csv2ImgCmd
[117/150] Applying Csv2ImgCmd
[119/150] Compiling SwiftSyntax SourceLocation.swift
[120/150] Compiling SwiftSyntax SourcePresence.swift
[121/150] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[122/150] Compiling SwiftSyntax Syntax.swift
[123/150] Compiling SwiftSyntax SyntaxArena.swift
[124/150] Compiling SwiftSyntax SyntaxChildren.swift
[125/150] Compiling SwiftSyntax SyntaxCollection.swift
[137/150] Compiling SwiftSyntax SyntaxNodesD.swift
[138/150] Compiling SwiftSyntax SyntaxTraits.swift
[139/150] Compiling SwiftSyntax SyntaxTransform.swift
[140/150] Compiling SwiftSyntax SyntaxVisitor.swift
[141/150] Compiling SwiftSyntax TokenKind.swift
[142/150] Compiling SwiftSyntax Tokens.swift
[143/150] Compiling SwiftSyntax TriviaPieces.swift
[144/150] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[145/150] Compiling SwiftSyntax SyntaxNodesEF.swift
[146/150] Compiling SwiftSyntax SyntaxNodesGHI.swift
[147/150] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[148/150] Compiling SwiftSyntax SyntaxNodesOP.swift
[149/150] Compiling SwiftSyntax SyntaxNodesQRS.swift
[150/150] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[151/189] Compiling SwiftParser UnicodeScalarExtensions.swift
[152/189] Compiling SwiftParser Lookahead.swift
[153/189] Compiling SwiftParser LoopProgressCondition.swift
[154/189] Compiling SwiftParser Modifiers.swift
[155/193] Emitting module SwiftParser
[156/193] Compiling SwiftParser Statements.swift
[157/193] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[158/193] Compiling SwiftParser StringLiterals.swift
[159/193] Compiling SwiftParser SwiftParserCompatibility.swift
[160/193] Compiling SwiftParser SyntaxUtils.swift
[161/193] Compiling SwiftParser TokenConsumer.swift
[162/193] Compiling SwiftParser TokenPrecedence.swift
[163/193] Compiling SwiftParser TokenSpec.swift
[164/193] Compiling SwiftParser Parser.swift
[165/193] Compiling SwiftParser Patterns.swift
[166/193] Compiling SwiftParser Recovery.swift
[167/193] Compiling SwiftParser Specifiers.swift
[168/193] Compiling SwiftParser Lexeme.swift
[169/193] Compiling SwiftParser LexemeSequence.swift
[170/193] Compiling SwiftParser Lexer.swift
[171/193] Compiling SwiftParser RegexLiteralLexer.swift
[172/193] Compiling SwiftParser TokenSpecSet.swift
[173/193] Compiling SwiftParser TopLevel.swift
[174/193] Compiling SwiftParser TriviaParser.swift
[175/193] Compiling SwiftParser Types.swift
[176/193] Compiling SwiftParser Attributes.swift
[177/193] Compiling SwiftParser Availability.swift
[178/193] Compiling SwiftParser CharacterInfo.swift
[179/193] Compiling SwiftParser CollectionNodes+Parsable.swift
[180/193] Compiling SwiftParser Declarations.swift
[181/193] Compiling SwiftParser IsLexerClassified.swift
[182/193] Compiling SwiftParser LayoutNodes+Parsable.swift
[183/193] Compiling SwiftParser Parser+TokenSpecSet.swift
[184/193] Compiling SwiftParser TokenSpecStaticMembers.swift
[185/193] Compiling SwiftParser Names.swift
[186/193] Compiling SwiftParser Nominals.swift
[187/193] Compiling SwiftParser Parameters.swift
[188/193] Compiling SwiftParser ParseSourceFile.swift
[189/193] Compiling SwiftParser Directives.swift
[190/193] Compiling SwiftParser ExperimentalFeatures.swift
[191/193] Compiling SwiftParser Expressions.swift
[192/193] Compiling SwiftParser IncrementalParseTransition.swift
[193/193] Compiling SwiftParser Cursor.swift
[194/201] Compiling CsvBuilder RowWrapper.swift
[195/201] Compiling CsvBuilder NewCsvComposition.swift
[196/201] Compiling CsvBuilder CsvComposition.swift
[197/201] Compiling CsvBuilder Example.swift
[198/201] Compiling CsvBuilder CsvCompositionElement.swift
[199/201] Compiling CsvBuilder CsvBuilder.swift
[200/201] Emitting module CsvBuilder
[201/201] Compiling CsvBuilder CsvCompositionParser.swift
Build complete! (35.49s)
Fetching https://github.com/apple/swift-argument-parser
Fetching https://github.com/swiftlang/swift-docc-plugin
Fetching https://github.com/swiftlang/swift-syntax
[1/2094] Fetching swift-docc-plugin
[232/17725] Fetching swift-docc-plugin, swift-argument-parser
[7410/89480] Fetching swift-docc-plugin, swift-argument-parser, swift-syntax
Fetched https://github.com/swiftlang/swift-syntax from cache (3.06s)
Fetched https://github.com/apple/swift-argument-parser from cache (3.06s)
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (3.06s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (5.62s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3454] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.15s)
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/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 510.0.3 (0.59s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.1.4 (0.53s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.1.4
Creating working copy for https://github.com/swiftlang/swift-syntax
Working copy of https://github.com/swiftlang/swift-syntax resolved at 510.0.3
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/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.5
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "1.2.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.4.3",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-docc-plugin"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "510.0.0",
            "upper_bound" : "511.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax"
    }
  ],
  "manifest_display_name" : "Csv2Img",
  "name" : "Csv2Img",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Csv2ImgCore",
      "targets" : [
        "Csv2ImgCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CsvBuilder",
      "targets" : [
        "CsvBuilder"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Csv2ImgCmd",
      "targets" : [
        "Csv2ImgCmd"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CsvBuilderTests",
      "module_type" : "SwiftTarget",
      "name" : "CsvBuilderTests",
      "path" : "Tests/CsvBuilderTests",
      "sources" : [
        "CsvBuilderTests.swift"
      ],
      "target_dependencies" : [
        "CsvBuilder"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CsvBuilder",
      "module_type" : "SwiftTarget",
      "name" : "CsvBuilder",
      "path" : "Sources/CsvBuilder",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftParser"
      ],
      "product_memberships" : [
        "CsvBuilder"
      ],
      "sources" : [
        "CsvBuilder.swift",
        "CsvComposition.swift",
        "CsvCompositionElement.swift",
        "CsvCompositionParser.swift",
        "Example.swift",
        "NewCsvComposition.swift",
        "RowWrapper.swift"
      ],
      "target_dependencies" : [
        "Csv2ImgCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Csv2ImgCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "Csv2ImgCoreTests",
      "path" : "Tests/Csv2ImgCoreTests",
      "sources" : [
        "CsvTests.swift",
        "ImageMakerTests.swift",
        "PdfMakerTests.swift",
        "String+ExTests.swift",
        "Util.swift"
      ],
      "target_dependencies" : [
        "Csv2ImgCore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Csv2ImgCore",
      "module_type" : "SwiftTarget",
      "name" : "Csv2ImgCore",
      "path" : "Sources/Csv2ImgCore",
      "product_memberships" : [
        "Csv2ImgCore",
        "CsvBuilder",
        "Csv2ImgCmd"
      ],
      "sources" : [
        "Csv.swift",
        "CsvColumn.swift",
        "CsvColumnStyle+Ex.swift",
        "CsvError.swift",
        "CsvImageRepresentation.swift",
        "CsvRow.swift",
        "Image+Data.swift",
        "ImageMaker.swift",
        "ImageRenderer.swift",
        "Maker.swift",
        "PDFMetadata.swift",
        "Pdf+Data.swift",
        "PdfMaker.swift",
        "PdfSize.swift",
        "String+Ex.swift",
        "TypeConvertible.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Csv2ImgCmd",
      "module_type" : "SwiftTarget",
      "name" : "Csv2ImgCmd",
      "path" : "Sources/Csv2ImgCmd",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "Csv2ImgCmd"
      ],
      "sources" : [
        "command.swift"
      ],
      "target_dependencies" : [
        "Csv2ImgCore"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.10"
}
Done.