The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SwiftQL, reference main (081aee), with Swift 6.1 for macOS (SPM) on 21 Oct 2025 17:01:27 UTC.

Swift 6 data race errors: 1

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/lukevanin/swiftql.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/lukevanin/swiftql
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 081aee2 Migrate TODO to GitHub issues and remove TODO.md file.
Cloned https://github.com/lukevanin/swiftql.git
Revision (git rev-parse @):
081aee27f7e682cd8091ad2fa9c71c9e147ef4b2
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/lukevanin/swiftql.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/lukevanin/swiftql.git
https://github.com/lukevanin/swiftql.git
{
  "dependencies" : [
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "509.0.0",
            "upper_bound" : "510.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-syntax.git"
    },
    {
      "identity" : "grdb.swift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "6.29.3",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/groue/GRDB.swift.git"
    },
    {
      "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.git"
    }
  ],
  "manifest_display_name" : "SwiftQL",
  "name" : "SwiftQL",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftQL",
      "targets" : [
        "SwiftQL"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SQLMacros",
      "targets" : [
        "SQLMacros"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftQL",
      "module_type" : "SwiftTarget",
      "name" : "SwiftQL",
      "path" : "Sources/SwiftQL",
      "product_dependencies" : [
        "GRDB"
      ],
      "product_memberships" : [
        "SwiftQL"
      ],
      "sources" : [
        "Builders/InsertBuilder.swift",
        "Builders/QueryBuilder.swift",
        "Expression Builder/SQLCreateExpressionBuilder.swift",
        "Expression Builder/SQLDeleteExpressionBuilder.swift",
        "Expression Builder/SQLInsertExpressionBuilder.swift",
        "Expression Builder/SQLQueryExpressionBuilder.swift",
        "Expression Builder/SQLUpdateExpressionBuilder.swift",
        "FoundationExtensions.swift",
        "Functions/AggregateFunctions.swift",
        "Functions/ComparableFunctions.swift",
        "Functions/ConditionalFunctions.swift",
        "Functions/DateFunctions.swift",
        "Functions/ExpressionFunctions.swift",
        "Functions/JSONFunctions.swift",
        "Functions/NumericFunctions.swift",
        "Functions/StringFunctions.swift",
        "Functions/TypeCastFunctions.swift",
        "GRDBSQLDatabase.swift",
        "Operators/BooleanOperators.swift",
        "Operators/ComparableExpressionOperators.swift",
        "Operators/EquatableExpressionOperators.swift",
        "Operators/InOperator.swift",
        "Operators/IntegerOperators.swift",
        "Operators/NumericOperators.swift",
        "Operators/OptionalOperators.swift",
        "Operators/RealOperators.swift",
        "Operators/TextOperators.swift",
        "SQL.swift",
        "SQLCaseWhenThen.swift",
        "SQLCustomFunction.swift",
        "SQLDatabase.swift",
        "SQLEncoder.swift",
        "SQLExpression.swift",
        "SQLFunctionalSyntax.swift",
        "SQLLogger.swift",
        "SQLMeta.swift",
        "SQLOperators.swift",
        "SQLScalarResult.swift",
        "SQLStatements.swift",
        "Statements/SQLCreateTableStatement.swift",
        "Statements/SQLDeleteStatement.swift",
        "Statements/SQLInsertStatement.swift",
        "Statements/SQLQueryStatement.swift",
        "Statements/SQLUpdateStatement.swift",
        "Statements/SQLWithStatement.swift",
        "Types/Intrinsic.swift"
      ],
      "target_dependencies" : [
        "SQLMacros"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SQLTests",
      "module_type" : "SwiftTarget",
      "name" : "SQLTests",
      "path" : "Tests/SQLTests",
      "sources" : [
        "Common/FoundationExtensions.swift",
        "SQLExampleTests.swift",
        "SQLExecutionTests.swift",
        "SQLFunctionalQueryTests.swift",
        "SQLInsertBuilderTests.swift",
        "SQLPublisherTests.swift",
        "SQLQueryTests.swift",
        "SQLSyntaxTests.swift",
        "Tables/SampleTables.swift",
        "Tables/TestColumns.swift",
        "Tables/TestTable.swift",
        "Tests/Expression Builder/SQLCreateExpressionBuilderTests.swift",
        "Tests/Expression Builder/SQLDeleteExpressionBuilderTests.swift",
        "Tests/Expression Builder/SQLInsertExpressionBuilderTests.swift",
        "Tests/Expression Builder/SQLQueryExpressionBuilderTests.swift",
        "Tests/Expression Builder/SQLUpdateExpressionBuilderTests.swift",
        "Tests/XLQueryBuilderTests.swift"
      ],
      "target_dependencies" : [
        "SwiftQL"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SQLMacrosTests",
      "module_type" : "SwiftTarget",
      "name" : "SQLMacrosTests",
      "path" : "Tests/SQLMacrosTests",
      "product_dependencies" : [
        "GRDB",
        "SwiftSyntaxMacrosTestSupport"
      ],
      "sources" : [
        "SQLTests.swift"
      ],
      "target_dependencies" : [
        "SwiftQL"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SQLMacros",
      "module_type" : "SwiftTarget",
      "name" : "SQLMacros",
      "path" : "Sources/SQLMacros",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "SwiftQL",
        "SQLMacros"
      ],
      "sources" : [
        "MetaBuilder.swift",
        "SQLMacro.swift",
        "SwiftSyntaxBuilder.swift"
      ],
      "type" : "macro"
    }
  ],
  "tools_version" : "5.9"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/22] Write sources
[17/22] Copying Info.plist
[18/22] Copying PrivacyInfo.xcprivacy
[19/22] Write swift-version-2F0A5646E1D333AE.txt
[21/174] Emitting module SwiftSyntax509
[22/174] Compiling SwiftSyntax509 Empty.swift
[23/220] Compiling SwiftSyntax AbsolutePosition.swift
[24/220] Compiling SwiftSyntax Assert.swift
[25/220] Compiling SwiftSyntax BumpPtrAllocator.swift
[26/220] Compiling SwiftSyntax CommonAncestor.swift
[27/220] Compiling SwiftSyntax Convenience.swift
[28/225] Emitting module SwiftSyntax
[29/225] Compiling SwiftSyntax Syntax.swift
[30/225] Compiling SwiftSyntax SyntaxArena.swift
[31/225] Compiling SwiftSyntax SyntaxChildren.swift
[32/225] Compiling SwiftSyntax SyntaxCollection.swift
[33/225] Compiling SwiftSyntax SyntaxData.swift
[34/225] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[35/225] Compiling SwiftSyntax SyntaxBaseNodes.swift
[36/225] Compiling SwiftSyntax SyntaxCollections.swift
[37/225] Compiling SwiftSyntax SyntaxEnum.swift
[38/225] Compiling SwiftSyntax SyntaxKind.swift
[39/225] Emitting module GRDB
[40/225] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[41/225] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[42/225] Compiling SwiftSyntax Tokens.swift
[43/225] Compiling SwiftSyntax TriviaPieces.swift
[44/225] Compiling SwiftSyntax RawSyntaxNodes.swift
[45/225] Compiling SwiftSyntax RawSyntaxValidation.swift
[46/225] Compiling SwiftSyntax SyntaxDeclNodes.swift
[47/225] Compiling SwiftSyntax SyntaxText.swift
[48/225] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[49/225] Compiling SwiftSyntax TokenDiagnostic.swift
[50/225] Compiling SwiftSyntax TokenSyntax.swift
[51/225] Compiling SwiftSyntax Trivia.swift
[52/225] Compiling SwiftSyntax SyntaxExprNodes.swift
[53/225] Compiling SwiftSyntax SyntaxNodes.swift
[54/225] Compiling SwiftSyntax SyntaxPatternNodes.swift
[55/225] Compiling SwiftSyntax SyntaxStmtNodes.swift
[56/225] Compiling SwiftSyntax SyntaxTypeNodes.swift
[72/241] Compiling SwiftSyntax MemoryLayout.swift
[73/241] Compiling GRDB Data.swift
[74/241] Compiling GRDB DatabaseDateComponents.swift
[75/241] Compiling GRDB DatabaseValueConvertible+ReferenceConvertible.swift
[76/241] Compiling GRDB Date.swift
[77/241] Compiling GRDB Decimal.swift
[78/241] Compiling GRDB NSData.swift
[79/241] Compiling GRDB NSNull.swift
[80/241] Compiling GRDB NSNumber.swift
[81/241] Compiling GRDB NSString.swift
[82/241] Compiling GRDB SQLiteDateParser.swift
[83/241] Compiling GRDB URL.swift
[84/241] Compiling GRDB UUID.swift
[85/241] Compiling GRDB DatabaseValueConvertible+Decodable.swift
[86/241] Compiling GRDB DatabaseValueConvertible+Encodable.swift
[87/241] Compiling GRDB DatabaseValueConvertible+RawRepresentable.swift
[88/241] Compiling GRDB JSONRequiredEncoder.swift
[89/241] Compiling GRDB Optional.swift
[90/241] Compiling SwiftSyntax MissingNodeInitializers.swift
[91/241] Compiling SwiftSyntax RawSyntax.swift
[92/241] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[93/241] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[94/241] Compiling SwiftSyntax SyntaxRewriter.swift
[95/241] Compiling SwiftSyntax SyntaxTraits.swift
[96/241] Compiling SwiftSyntax SyntaxTransform.swift
[97/241] Compiling SwiftSyntax SyntaxVisitor.swift
[98/241] Compiling SwiftSyntax TokenKind.swift
[99/241] Compiling SwiftSyntax RawSyntaxTokenView.swift
[100/241] Compiling SwiftSyntax SourceLength.swift
[101/241] Compiling SwiftSyntax SourceLocation.swift
[102/241] Compiling SwiftSyntax SourcePresence.swift
[103/241] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[104/241] Compiling SwiftSyntax Utils.swift
[105/241] Compiling SwiftSyntax ChildNameForKeyPath.swift
[106/241] Compiling SwiftSyntax Keyword.swift
[107/241] Compiling GRDB ForeignKeyDefinition.swift
[108/241] Compiling GRDB IndexDefinition.swift
[109/241] Compiling GRDB TableAlteration.swift
[110/241] Compiling GRDB TableDefinition.swift
[111/241] Compiling GRDB VirtualTableModule.swift
[112/241] Compiling GRDB TableRecord+Association.swift
[113/241] Compiling GRDB TableRecord+QueryInterfaceRequest.swift
[114/241] Compiling GRDB EncodableRecord+Encodable.swift
[115/241] Compiling GRDB EncodableRecord.swift
[116/241] Compiling GRDB FetchableRecord+Decodable.swift
[117/241] Compiling GRDB FetchableRecord+TableRecord.swift
[118/241] Compiling GRDB FetchableRecord.swift
[119/241] Compiling GRDB MutablePersistableRecord+DAO.swift
[120/241] Compiling GRDB MutablePersistableRecord+Delete.swift
[121/241] Compiling GRDB MutablePersistableRecord+Insert.swift
[122/241] Compiling GRDB MutablePersistableRecord+Save.swift
[123/241] Compiling GRDB FTS4.swift
[124/241] Compiling GRDB FTS5.swift
[125/241] Compiling GRDB FTS5CustomTokenizer.swift
[126/241] Compiling GRDB FTS5Pattern.swift
[127/241] Compiling GRDB FTS5Tokenizer.swift
[128/241] Compiling GRDB FTS5TokenizerDescriptor.swift
[129/241] Compiling GRDB FTS5WrapperTokenizer.swift
[130/241] Compiling GRDB Fixits.swift
[131/241] Compiling GRDB JSONColumn.swift
[132/241] Compiling GRDB SQLJSONExpressible.swift
[133/241] Compiling GRDB SQLJSONFunctions.swift
[134/241] Compiling GRDB DatabaseMigrator.swift
[135/241] Compiling GRDB Migration.swift
[136/241] Compiling GRDB FTS3+QueryInterface.swift
[137/241] Compiling GRDB FTS5+QueryInterface.swift
[138/241] Compiling GRDB ForeignKey.swift
[139/241] Compiling GRDB Association.swift
[140/241] Compiling GRDB MutablePersistableRecord+Update.swift
[141/241] Compiling GRDB MutablePersistableRecord+Upsert.swift
[142/241] Compiling GRDB MutablePersistableRecord.swift
[143/241] Compiling GRDB PersistableRecord+Insert.swift
[144/241] Compiling GRDB PersistableRecord+Save.swift
[145/241] Compiling GRDB PersistableRecord+Upsert.swift
[146/241] Compiling GRDB PersistableRecord.swift
[147/241] Compiling GRDB Record.swift
[148/241] Compiling GRDB TableRecord.swift
[149/241] Compiling GRDB CaseInsensitiveIdentifier.swift
[150/241] Compiling GRDB Inflections+English.swift
[151/241] Compiling GRDB Inflections.swift
[152/241] Compiling GRDB LockedBox.swift
[153/241] Compiling GRDB OnDemandFuture.swift
[154/241] Compiling GRDB OrderedDictionary.swift
[155/241] Compiling GRDB Pool.swift
[156/241] Compiling GRDB SQLFunctions.swift
[157/241] Compiling GRDB SQLOperators.swift
[158/241] Compiling GRDB SQLOrdering.swift
[159/241] Compiling GRDB SQLRelation.swift
[160/241] Compiling GRDB SQLSelection.swift
[161/241] Compiling GRDB SQLSubquery.swift
[162/241] Compiling GRDB Table.swift
[163/241] Compiling GRDB SQLColumnGenerator.swift
[164/241] Compiling GRDB SQLGenerationContext.swift
[165/241] Compiling GRDB SQLIndexGenerator.swift
[166/241] Compiling GRDB SQLQueryGenerator.swift
[167/241] Compiling GRDB SQLTableAlterationGenerator.swift
[168/241] Compiling GRDB SQLTableGenerator.swift
[169/241] Compiling GRDB SQLInterpolation+QueryInterface.swift
[170/241] Compiling GRDB ColumnDefinition.swift
[171/241] Compiling GRDB Database+SchemaDefinition.swift
[172/241] Compiling GRDB Configuration.swift
[173/241] Compiling GRDB Cursor.swift
[174/241] Compiling GRDB Database+Schema.swift
[175/241] Compiling GRDB Database+Statements.swift
[176/241] Compiling GRDB Database.swift
[177/241] Compiling GRDB DatabaseBackupProgress.swift
[178/241] Compiling GRDB DatabaseCollation.swift
[179/241] Compiling GRDB DatabaseError.swift
[180/241] Compiling GRDB DatabaseFunction.swift
[181/241] Compiling GRDB DatabasePool.swift
[182/241] Compiling GRDB DatabasePublishers.swift
[183/241] Compiling GRDB DatabaseQueue.swift
[184/241] Compiling GRDB DatabaseReader.swift
[185/241] Compiling GRDB DatabaseRegion.swift
[186/241] Compiling GRDB DatabaseRegionObservation.swift
[187/241] Compiling GRDB DatabaseSchemaCache.swift
[188/241] Compiling GRDB DatabaseSnapshot.swift
[189/241] Compiling GRDB ReadWriteBox.swift
[190/241] Compiling GRDB ReceiveValuesOn.swift
[191/241] Compiling GRDB Refinable.swift
[192/241] Compiling GRDB Utils.swift
[193/241] Compiling GRDB DatabaseCancellable.swift
[194/241] Compiling GRDB ValueConcurrentObserver.swift
[195/241] Compiling GRDB ValueWriteOnlyObserver.swift
[196/241] Compiling GRDB Fetch.swift
[197/241] Compiling GRDB Map.swift
[198/241] Compiling GRDB RemoveDuplicates.swift
[199/241] Compiling GRDB Trace.swift
[200/241] Compiling GRDB ValueReducer.swift
[201/241] Compiling GRDB SharedValueObservation.swift
[202/241] Compiling GRDB ValueObservation.swift
[203/241] Compiling GRDB ValueObservationScheduler.swift
[204/241] Compiling GRDB resource_bundle_accessor.swift
[240/293] Compiling SwiftDiagnostics Note.swift
[241/293] Compiling SwiftDiagnostics Message.swift
[242/293] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[243/293] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[244/293] Compiling SwiftBasicFormat Syntax+Extensions.swift
[245/293] Compiling SwiftDiagnostics FixIt.swift
[246/293] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[247/293] Emitting module SwiftDiagnostics
[248/293] Compiling SwiftDiagnostics Diagnostic.swift
[249/293] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[250/293] Compiling SwiftDiagnostics Convenience.swift
[251/293] Emitting module SwiftBasicFormat
[252/293] Compiling SwiftBasicFormat BasicFormat.swift
[253/293] Compiling SwiftParser UnicodeScalarExtensions.swift
[254/293] Compiling SwiftParser Lookahead.swift
[255/293] Compiling SwiftParser LoopProgressCondition.swift
[256/293] Compiling SwiftParser Modifiers.swift
[257/297] Emitting module SwiftParser
[258/297] Compiling SwiftParser Names.swift
[259/297] Compiling SwiftParser Nominals.swift
[260/297] Compiling SwiftParser Parameters.swift
[261/297] Compiling SwiftParser ParseSourceFile.swift
[262/297] Compiling SwiftParser Parser.swift
[263/297] Compiling SwiftParser Patterns.swift
[264/297] Compiling SwiftParser Recovery.swift
[265/297] Compiling SwiftParser Specifiers.swift
[266/297] Compiling SwiftParser TokenSpecSet.swift
[267/297] Compiling SwiftParser TopLevel.swift
[268/297] Compiling SwiftParser TriviaParser.swift
[269/297] Compiling SwiftParser Types.swift
[270/297] Compiling SwiftParser SyntaxUtils.swift
[271/297] Compiling SwiftParser TokenConsumer.swift
[272/297] Compiling SwiftParser TokenPrecedence.swift
[273/297] Compiling SwiftParser TokenSpec.swift
[274/297] Compiling SwiftParser Attributes.swift
[275/297] Compiling SwiftParser Availability.swift
[276/297] Compiling SwiftParser CharacterInfo.swift
[277/297] Compiling SwiftParser CollectionNodes+Parsable.swift
[278/297] Compiling SwiftParser Declarations.swift
[279/297] Compiling SwiftParser Statements.swift
[280/297] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[281/297] Compiling SwiftParser StringLiterals.swift
[282/297] Compiling SwiftParser SwiftParserCompatibility.swift
[283/297] Compiling SwiftParser Directives.swift
[284/297] Compiling SwiftParser ExperimentalFeatures.swift
[285/297] Compiling SwiftParser Expressions.swift
[286/297] Compiling SwiftParser IncrementalParseTransition.swift
[287/297] Compiling SwiftParser Cursor.swift
[288/297] Compiling SwiftParser Lexeme.swift
[289/297] Compiling SwiftParser LexemeSequence.swift
[290/297] Compiling SwiftParser Lexer.swift
[291/297] Compiling SwiftParser RegexLiteralLexer.swift
[292/297] Compiling SwiftParser IsLexerClassified.swift
[293/297] Compiling SwiftParser LayoutNodes+Parsable.swift
[294/297] Compiling SwiftParser Parser+TokenSpecSet.swift
[295/297] Compiling SwiftParser TokenSpecStaticMembers.swift
[296/320] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[297/321] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[298/321] Compiling SwiftOperators PrecedenceGroup.swift
[299/321] Compiling SwiftOperators PrecedenceGraph.swift
[300/321] Compiling SwiftOperators OperatorTable.swift
[301/321] Compiling SwiftOperators OperatorTable+Semantics.swift
[302/321] Compiling SwiftOperators OperatorTable+Defaults.swift
[303/321] Compiling SwiftOperators OperatorError.swift
[304/321] Compiling SwiftOperators OperatorError+Diagnostics.swift
[305/321] Compiling SwiftOperators Operator.swift
[306/321] Emitting module SwiftOperators
[307/321] Compiling SwiftOperators OperatorTable+Folding.swift
[308/322] Compiling SwiftParserDiagnostics Utils.swift
[309/322] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[310/322] Compiling SwiftParserDiagnostics PresenceUtils.swift
[311/322] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[312/322] Compiling SwiftOperators SyntaxSynthesis.swift
[313/322] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[314/322] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[315/322] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[316/322] Compiling SwiftParserDiagnostics MissingNodesError.swift
[317/322] Compiling SwiftParserDiagnostics MissingTokenError.swift
[318/322] Emitting module SwiftParserDiagnostics
[319/322] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[320/322] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[321/336] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[322/337] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[323/337] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[324/337] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[325/337] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[326/337] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[327/337] Emitting module SwiftSyntaxBuilder
[328/337] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[329/337] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[330/337] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[331/337] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[332/337] Compiling SwiftSyntaxBuilder Indenter.swift
[333/337] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[334/337] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[335/337] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[336/351] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[337/351] Compiling SwiftSyntaxMacros MemberMacro.swift
[338/352] Compiling SwiftSyntaxMacros Macro.swift
[339/352] Compiling SwiftSyntaxMacros Macro+Format.swift
[340/352] Emitting module SwiftSyntaxMacros
[341/352] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[342/352] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[343/352] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[344/352] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[345/352] Compiling SwiftSyntaxMacros AccessorMacro.swift
[346/352] Compiling SwiftSyntaxMacros AttachedMacro.swift
[347/352] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[348/352] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[349/352] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[350/352] Compiling SwiftSyntaxMacros PeerMacro.swift
[351/360] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[352/360] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[353/360] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[354/360] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[355/360] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[356/360] Emitting module SwiftSyntaxMacroExpansion
[357/360] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[358/360] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[359/367] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[360/367] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[361/367] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[362/367] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[363/367] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[364/367] Emitting module SwiftCompilerPluginMessageHandling
[365/367] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[366/369] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[367/369] Emitting module SwiftCompilerPlugin
[368/373] Compiling SQLMacros SwiftSyntaxBuilder.swift
[369/373] Compiling SQLMacros SQLMacro.swift
[370/373] Emitting module SQLMacros
/Users/admin/builder/spi-builder-workspace/Sources/SQLMacros/MetaBuilder.swift:72:10: warning: TODO: Remove anonymous properties
 70 |
 71 |
 72 | #warning("TODO: Remove anonymous properties")
    |          `- warning: TODO: Remove anonymous properties
 73 |
 74 | ///
[371/373] Compiling SQLMacros MetaBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLMacros/MetaBuilder.swift:72:10: warning: TODO: Remove anonymous properties
 70 |
 71 |
 72 | #warning("TODO: Remove anonymous properties")
    |          `- warning: TODO: Remove anonymous properties
 73 |
 74 | ///
[371/373] Write Objects.LinkFileList
[372/373] Linking SQLMacros-tool
[374/416] Compiling SwiftQL ConditionalFunctions.swift
[375/416] Compiling SwiftQL DateFunctions.swift
[376/416] Compiling SwiftQL ExpressionFunctions.swift
[377/416] Compiling SwiftQL JSONFunctions.swift
[378/416] Compiling SwiftQL NumericFunctions.swift
[379/420] Compiling SwiftQL InsertBuilder.swift
[380/420] Compiling SwiftQL QueryBuilder.swift
[381/420] Compiling SwiftQL SQLCreateExpressionBuilder.swift
[382/420] Compiling SwiftQL SQLDeleteExpressionBuilder.swift
[383/420] Compiling SwiftQL SQLInsertExpressionBuilder.swift
[384/420] Compiling SwiftQL StringFunctions.swift
[385/420] Compiling SwiftQL TypeCastFunctions.swift
[386/420] Compiling SwiftQL GRDBSQLDatabase.swift
[387/420] Compiling SwiftQL BooleanOperators.swift
[388/420] Compiling SwiftQL ComparableExpressionOperators.swift
[389/420] Compiling SwiftQL SQLQueryStatement.swift
[390/420] Compiling SwiftQL SQLUpdateStatement.swift
[391/420] Compiling SwiftQL SQLWithStatement.swift
[392/420] Compiling SwiftQL Intrinsic.swift
[393/420] Compiling SwiftQL SQLDatabase.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLDatabase.swift:31:20: warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 24 |     }
 25 |
 26 |     public func sqlEntitiesChangedObserver(queue: OperationQueue, observer: @escaping (Notification) -> Void) -> NSObjectProtocol {
    |                                                                   `- note: parameter 'observer' is implicitly non-sendable
 27 |         addObserver(
 28 |             forName: .XLEntitiesChanged,
 29 |             object: nil,
 30 |             queue: queue,
 31 |             using: observer
    |                    `- warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 32 |         )
 33 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLDatabase.swift:62:20: warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 55 |     }
 56 |
 57 |     public func sqlCommitObserver(queue: OperationQueue, observer: @escaping (Notification) -> Void) -> NSObjectProtocol {
    |                                                          `- note: parameter 'observer' is implicitly non-sendable
 58 |         addObserver(
 59 |             forName: .XLCommit,
 60 |             object: nil,
 61 |             queue: queue,
 62 |             using: observer
    |                    `- warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 63 |         )
 64 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLExpression.swift:404:23: warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'XLSchemaName' may have shared mutable state; this is an error in the Swift 6 language mode
400 | /// A name of a schema used in a SwiftQL expression.
401 | ///
402 | public struct XLSchemaName: XLEncodable, Equatable {
    |               `- note: consider making struct 'XLSchemaName' conform to the 'Sendable' protocol
403 |
404 |     public static let main = XLSchemaName(name: "main")
    |                       |- warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'XLSchemaName' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 |
406 |     public var name: XLName
[394/420] Compiling SwiftQL SQLEncoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLDatabase.swift:31:20: warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 24 |     }
 25 |
 26 |     public func sqlEntitiesChangedObserver(queue: OperationQueue, observer: @escaping (Notification) -> Void) -> NSObjectProtocol {
    |                                                                   `- note: parameter 'observer' is implicitly non-sendable
 27 |         addObserver(
 28 |             forName: .XLEntitiesChanged,
 29 |             object: nil,
 30 |             queue: queue,
 31 |             using: observer
    |                    `- warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 32 |         )
 33 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLDatabase.swift:62:20: warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 55 |     }
 56 |
 57 |     public func sqlCommitObserver(queue: OperationQueue, observer: @escaping (Notification) -> Void) -> NSObjectProtocol {
    |                                                          `- note: parameter 'observer' is implicitly non-sendable
 58 |         addObserver(
 59 |             forName: .XLCommit,
 60 |             object: nil,
 61 |             queue: queue,
 62 |             using: observer
    |                    `- warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 63 |         )
 64 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLExpression.swift:404:23: warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'XLSchemaName' may have shared mutable state; this is an error in the Swift 6 language mode
400 | /// A name of a schema used in a SwiftQL expression.
401 | ///
402 | public struct XLSchemaName: XLEncodable, Equatable {
    |               `- note: consider making struct 'XLSchemaName' conform to the 'Sendable' protocol
403 |
404 |     public static let main = XLSchemaName(name: "main")
    |                       |- warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'XLSchemaName' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 |
406 |     public var name: XLName
[395/420] Compiling SwiftQL SQLExpression.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLDatabase.swift:31:20: warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 24 |     }
 25 |
 26 |     public func sqlEntitiesChangedObserver(queue: OperationQueue, observer: @escaping (Notification) -> Void) -> NSObjectProtocol {
    |                                                                   `- note: parameter 'observer' is implicitly non-sendable
 27 |         addObserver(
 28 |             forName: .XLEntitiesChanged,
 29 |             object: nil,
 30 |             queue: queue,
 31 |             using: observer
    |                    `- warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 32 |         )
 33 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLDatabase.swift:62:20: warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 55 |     }
 56 |
 57 |     public func sqlCommitObserver(queue: OperationQueue, observer: @escaping (Notification) -> Void) -> NSObjectProtocol {
    |                                                          `- note: parameter 'observer' is implicitly non-sendable
 58 |         addObserver(
 59 |             forName: .XLCommit,
 60 |             object: nil,
 61 |             queue: queue,
 62 |             using: observer
    |                    `- warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 63 |         )
 64 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLExpression.swift:404:23: warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'XLSchemaName' may have shared mutable state; this is an error in the Swift 6 language mode
400 | /// A name of a schema used in a SwiftQL expression.
401 | ///
402 | public struct XLSchemaName: XLEncodable, Equatable {
    |               `- note: consider making struct 'XLSchemaName' conform to the 'Sendable' protocol
403 |
404 |     public static let main = XLSchemaName(name: "main")
    |                       |- warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'XLSchemaName' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 |
406 |     public var name: XLName
[396/420] Compiling SwiftQL SQLFunctionalSyntax.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLDatabase.swift:31:20: warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 24 |     }
 25 |
 26 |     public func sqlEntitiesChangedObserver(queue: OperationQueue, observer: @escaping (Notification) -> Void) -> NSObjectProtocol {
    |                                                                   `- note: parameter 'observer' is implicitly non-sendable
 27 |         addObserver(
 28 |             forName: .XLEntitiesChanged,
 29 |             object: nil,
 30 |             queue: queue,
 31 |             using: observer
    |                    `- warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 32 |         )
 33 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLDatabase.swift:62:20: warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 55 |     }
 56 |
 57 |     public func sqlCommitObserver(queue: OperationQueue, observer: @escaping (Notification) -> Void) -> NSObjectProtocol {
    |                                                          `- note: parameter 'observer' is implicitly non-sendable
 58 |         addObserver(
 59 |             forName: .XLCommit,
 60 |             object: nil,
 61 |             queue: queue,
 62 |             using: observer
    |                    `- warning: passing non-sendable parameter 'observer' to function expecting a @Sendable closure
 63 |         )
 64 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLExpression.swift:404:23: warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'XLSchemaName' may have shared mutable state; this is an error in the Swift 6 language mode
400 | /// A name of a schema used in a SwiftQL expression.
401 | ///
402 | public struct XLSchemaName: XLEncodable, Equatable {
    |               `- note: consider making struct 'XLSchemaName' conform to the 'Sendable' protocol
403 |
404 |     public static let main = XLSchemaName(name: "main")
    |                       |- warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'XLSchemaName' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 |
406 |     public var name: XLName
[397/420] Compiling SwiftQL EquatableExpressionOperators.swift
[398/420] Compiling SwiftQL InOperator.swift
[399/420] Compiling SwiftQL IntegerOperators.swift
[400/420] Compiling SwiftQL NumericOperators.swift
[401/420] Compiling SwiftQL OptionalOperators.swift
[402/420] Compiling SwiftQL RealOperators.swift
[403/420] Compiling SwiftQL TextOperators.swift
[404/420] Compiling SwiftQL SQL.swift
[405/420] Compiling SwiftQL SQLCaseWhenThen.swift
[406/420] Compiling SwiftQL SQLCustomFunction.swift
[407/420] Emitting module SwiftQL
/Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLExpression.swift:404:23: warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'XLSchemaName' may have shared mutable state; this is an error in the Swift 6 language mode
400 | /// A name of a schema used in a SwiftQL expression.
401 | ///
402 | public struct XLSchemaName: XLEncodable, Equatable {
    |               `- note: consider making struct 'XLSchemaName' conform to the 'Sendable' protocol
403 |
404 |     public static let main = XLSchemaName(name: "main")
    |                       |- warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'XLSchemaName' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 |
406 |     public var name: XLName
[408/420] Compiling SwiftQL SQLQueryExpressionBuilder.swift
[409/420] Compiling SwiftQL SQLUpdateExpressionBuilder.swift
[410/420] Compiling SwiftQL FoundationExtensions.swift
[411/420] Compiling SwiftQL AggregateFunctions.swift
[412/420] Compiling SwiftQL ComparableFunctions.swift
[413/420] Compiling SwiftQL SQLLogger.swift
macro expansion @SQLTable:82:13: warning: 'result' is deprecated: Use the .columns() method on the table object instead.
`- /Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLScalarResult.swift:21:2: note: expanded code originates here
19 |
20 |     public var scalarValue: T
21 | }
   +--- macro expansion @SQLTable --------------------------------------
   | 80 |         }
   | 81 |         public static func columns(scalarValue: any SwiftQL.XLExpression<T>) -> MetaResult {
   | 82 |             result {
   |    |             `- warning: 'result' is deprecated: Use the .columns() method on the table object instead.
   | 83 |                 SQLReader(
   | 84 |                         scalarValue: scalarValue
   +--------------------------------------------------------------------
22 |
23 |
[414/420] Compiling SwiftQL SQLMeta.swift
macro expansion @SQLTable:82:13: warning: 'result' is deprecated: Use the .columns() method on the table object instead.
`- /Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLScalarResult.swift:21:2: note: expanded code originates here
19 |
20 |     public var scalarValue: T
21 | }
   +--- macro expansion @SQLTable --------------------------------------
   | 80 |         }
   | 81 |         public static func columns(scalarValue: any SwiftQL.XLExpression<T>) -> MetaResult {
   | 82 |             result {
   |    |             `- warning: 'result' is deprecated: Use the .columns() method on the table object instead.
   | 83 |                 SQLReader(
   | 84 |                         scalarValue: scalarValue
   +--------------------------------------------------------------------
22 |
23 |
[415/420] Compiling SwiftQL SQLOperators.swift
macro expansion @SQLTable:82:13: warning: 'result' is deprecated: Use the .columns() method on the table object instead.
`- /Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLScalarResult.swift:21:2: note: expanded code originates here
19 |
20 |     public var scalarValue: T
21 | }
   +--- macro expansion @SQLTable --------------------------------------
   | 80 |         }
   | 81 |         public static func columns(scalarValue: any SwiftQL.XLExpression<T>) -> MetaResult {
   | 82 |             result {
   |    |             `- warning: 'result' is deprecated: Use the .columns() method on the table object instead.
   | 83 |                 SQLReader(
   | 84 |                         scalarValue: scalarValue
   +--------------------------------------------------------------------
22 |
23 |
[416/420] Compiling SwiftQL SQLScalarResult.swift
macro expansion @SQLTable:82:13: warning: 'result' is deprecated: Use the .columns() method on the table object instead.
`- /Users/admin/builder/spi-builder-workspace/Sources/SwiftQL/SQLScalarResult.swift:21:2: note: expanded code originates here
19 |
20 |     public var scalarValue: T
21 | }
   +--- macro expansion @SQLTable --------------------------------------
   | 80 |         }
   | 81 |         public static func columns(scalarValue: any SwiftQL.XLExpression<T>) -> MetaResult {
   | 82 |             result {
   |    |             `- warning: 'result' is deprecated: Use the .columns() method on the table object instead.
   | 83 |                 SQLReader(
   | 84 |                         scalarValue: scalarValue
   +--------------------------------------------------------------------
22 |
23 |
[417/420] Compiling SwiftQL SQLStatements.swift
[418/420] Compiling SwiftQL SQLCreateTableStatement.swift
[419/420] Compiling SwiftQL SQLDeleteStatement.swift
[420/420] Compiling SwiftQL SQLInsertStatement.swift
Build complete! (63.27s)
Fetching https://github.com/groue/GRDB.swift.git
Fetching https://github.com/apple/swift-docc-plugin.git
Fetching https://github.com/apple/swift-syntax.git
[1/2133] Fetching swift-docc-plugin
[2134/115306] Fetching swift-docc-plugin, grdb.swift
[2135/187925] Fetching swift-docc-plugin, grdb.swift, swift-syntax
Fetched https://github.com/apple/swift-syntax.git from cache (9.33s)
Fetched https://github.com/groue/GRDB.swift.git from cache (9.33s)
Fetched https://github.com/apple/swift-docc-plugin.git from cache (9.33s)
Computing version for https://github.com/groue/GRDB.swift.git
Computed https://github.com/groue/GRDB.swift.git at 6.29.3 (12.20s)
Computing version for https://github.com/apple/swift-syntax.git
Computed https://github.com/apple/swift-syntax.git at 509.1.1 (0.62s)
Computing version for https://github.com/apple/swift-docc-plugin.git
Computed https://github.com/apple/swift-docc-plugin.git at 1.4.5 (0.56s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.92s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.56s)
Creating working copy for https://github.com/apple/swift-syntax.git
Working copy of https://github.com/apple/swift-syntax.git resolved at 509.1.1
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/groue/GRDB.swift.git
Working copy of https://github.com/groue/GRDB.swift.git resolved at 6.29.3
Creating working copy for https://github.com/apple/swift-docc-plugin.git
Working copy of https://github.com/apple/swift-docc-plugin.git resolved at 1.4.5
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "509.0.0",
            "upper_bound" : "510.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-syntax.git"
    },
    {
      "identity" : "grdb.swift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "6.29.3",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/groue/GRDB.swift.git"
    },
    {
      "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.git"
    }
  ],
  "manifest_display_name" : "SwiftQL",
  "name" : "SwiftQL",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftQL",
      "targets" : [
        "SwiftQL"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SQLMacros",
      "targets" : [
        "SQLMacros"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftQL",
      "module_type" : "SwiftTarget",
      "name" : "SwiftQL",
      "path" : "Sources/SwiftQL",
      "product_dependencies" : [
        "GRDB"
      ],
      "product_memberships" : [
        "SwiftQL"
      ],
      "sources" : [
        "Builders/InsertBuilder.swift",
        "Builders/QueryBuilder.swift",
        "Expression Builder/SQLCreateExpressionBuilder.swift",
        "Expression Builder/SQLDeleteExpressionBuilder.swift",
        "Expression Builder/SQLInsertExpressionBuilder.swift",
        "Expression Builder/SQLQueryExpressionBuilder.swift",
        "Expression Builder/SQLUpdateExpressionBuilder.swift",
        "FoundationExtensions.swift",
        "Functions/AggregateFunctions.swift",
        "Functions/ComparableFunctions.swift",
        "Functions/ConditionalFunctions.swift",
        "Functions/DateFunctions.swift",
        "Functions/ExpressionFunctions.swift",
        "Functions/JSONFunctions.swift",
        "Functions/NumericFunctions.swift",
        "Functions/StringFunctions.swift",
        "Functions/TypeCastFunctions.swift",
        "GRDBSQLDatabase.swift",
        "Operators/BooleanOperators.swift",
        "Operators/ComparableExpressionOperators.swift",
        "Operators/EquatableExpressionOperators.swift",
        "Operators/InOperator.swift",
        "Operators/IntegerOperators.swift",
        "Operators/NumericOperators.swift",
        "Operators/OptionalOperators.swift",
        "Operators/RealOperators.swift",
        "Operators/TextOperators.swift",
        "SQL.swift",
        "SQLCaseWhenThen.swift",
        "SQLCustomFunction.swift",
        "SQLDatabase.swift",
        "SQLEncoder.swift",
        "SQLExpression.swift",
        "SQLFunctionalSyntax.swift",
        "SQLLogger.swift",
        "SQLMeta.swift",
        "SQLOperators.swift",
        "SQLScalarResult.swift",
        "SQLStatements.swift",
        "Statements/SQLCreateTableStatement.swift",
        "Statements/SQLDeleteStatement.swift",
        "Statements/SQLInsertStatement.swift",
        "Statements/SQLQueryStatement.swift",
        "Statements/SQLUpdateStatement.swift",
        "Statements/SQLWithStatement.swift",
        "Types/Intrinsic.swift"
      ],
      "target_dependencies" : [
        "SQLMacros"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SQLTests",
      "module_type" : "SwiftTarget",
      "name" : "SQLTests",
      "path" : "Tests/SQLTests",
      "sources" : [
        "Common/FoundationExtensions.swift",
        "SQLExampleTests.swift",
        "SQLExecutionTests.swift",
        "SQLFunctionalQueryTests.swift",
        "SQLInsertBuilderTests.swift",
        "SQLPublisherTests.swift",
        "SQLQueryTests.swift",
        "SQLSyntaxTests.swift",
        "Tables/SampleTables.swift",
        "Tables/TestColumns.swift",
        "Tables/TestTable.swift",
        "Tests/Expression Builder/SQLCreateExpressionBuilderTests.swift",
        "Tests/Expression Builder/SQLDeleteExpressionBuilderTests.swift",
        "Tests/Expression Builder/SQLInsertExpressionBuilderTests.swift",
        "Tests/Expression Builder/SQLQueryExpressionBuilderTests.swift",
        "Tests/Expression Builder/SQLUpdateExpressionBuilderTests.swift",
        "Tests/XLQueryBuilderTests.swift"
      ],
      "target_dependencies" : [
        "SwiftQL"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SQLMacrosTests",
      "module_type" : "SwiftTarget",
      "name" : "SQLMacrosTests",
      "path" : "Tests/SQLMacrosTests",
      "product_dependencies" : [
        "GRDB",
        "SwiftSyntaxMacrosTestSupport"
      ],
      "sources" : [
        "SQLTests.swift"
      ],
      "target_dependencies" : [
        "SwiftQL"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SQLMacros",
      "module_type" : "SwiftTarget",
      "name" : "SQLMacros",
      "path" : "Sources/SQLMacros",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "SwiftQL",
        "SQLMacros"
      ],
      "sources" : [
        "MetaBuilder.swift",
        "SQLMacro.swift",
        "SwiftSyntaxBuilder.swift"
      ],
      "type" : "macro"
    }
  ],
  "tools_version" : "5.9"
}
Done.