The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Lighter with Swift 5.10 for Linux.

Build Command

bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.34.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Lighter-swift/Lighter.git
Reference: develop
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/Lighter-swift/Lighter
 * branch            develop    -> FETCH_HEAD
 * [new branch]      develop    -> origin/develop
HEAD is now at 2e4ade0 Merge branch 'chore/strict-concurrency-1' into develop
Cloned https://github.com/Lighter-swift/Lighter.git
Revision (git rev-parse @):
2e4ade0d537304ade0d39929a2ba7b5ef3d36fa7
SPI manifest file found: $workDir/.spi.yml
SUCCESS checkout https://github.com/Lighter-swift/Lighter.git at develop
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.10
Building package at path:  $workDir
https://github.com/Lighter-swift/Lighter.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
[1/1] Compiling plugin Enlighter
[2/2] Compiling plugin Generate Code for SQLite
[3/3] Compiling plugin Generate Variadics into Lighter (Internal)
Building for debugging...
[3/19] Write sources
[9/19] Write swift-version-24593BA9C3E375BF.txt
[11/91] Compiling LighterCodeGenAST GenericConstraint.swift
[12/91] Compiling LighterCodeGenAST Literal.swift
[13/91] Compiling LighterCodeGenAST Statement.swift
[14/91] Compiling LighterCodeGenAST ReservedWords.swift
[15/91] Compiling LighterCodeGenAST CompilationUnit.swift
[16/91] Compiling LighterCodeGenAST ComputedPropertyDefinition.swift
[17/94] Compiling Lighter SQLColumnValueRangePredicate.swift
[18/94] Compiling Lighter SQLColumnValueSetPredicate.swift
[19/94] Compiling Lighter SQLCompoundPredicate.swift
[20/94] Compiling Lighter SQLInterpolatedPredicate.swift
[21/94] Compiling Lighter SQLNotPredicate.swift
[22/94] Compiling Lighter SQLPredicate.swift
[23/100] Compiling LighterCodeGenAST Expression.swift
[24/100] Compiling LighterCodeGenAST Extension.swift
[25/100] Compiling LighterCodeGenAST FunctionComment.swift
[26/100] Compiling LighterCodeGenAST FunctionDeclaration.swift
[27/100] Compiling LighterCodeGenAST FunctionDefinition.swift
[28/100] Compiling LighterCodeGenAST FunctionParameter.swift
[29/100] Compiling LighterCodeGenAST GenStructures.swift
[30/100] Compiling LighterCodeGenAST GenTypes.swift
[31/100] Compiling LighterCodeGenAST GenUnit.swift
[32/100] Compiling LighterCodeGenAST Struct.swift
[33/100] Compiling LighterCodeGenAST TypeComment.swift
[34/100] Compiling LighterCodeGenAST TypeReference.swift
[35/100] Compiling Lighter SQLSortOrder.swift
[36/100] Compiling Lighter SQLTruePredicate.swift
[37/100] Compiling Lighter SQLColumn.swift
[38/100] Compiling Lighter SQLEntitySchema.swift
[39/100] Compiling Lighter SQLForeignKeyColumn.swift
[40/100] Compiling Lighter SQLRecord.swift
[41/100] Compiling Lighter SQLSwiftMatchableSchema.swift
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:524:10: warning: associated value 'formatter' of 'Sendable'-conforming enum 'SQLiteDateStorageStyle' has non-sendable type 'DateFormatter'
    case formatter(DateFormatter)
         ^
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
open class DateFormatter : Formatter {
           ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.URL
^
@preconcurrency
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:662:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'URL'; use '@unchecked Sendable' for retroactive conformance
extension URL : SQLiteValueType {
^
Foundation.URL (private):11:17: warning: stored property '_storage' of 'Sendable'-conforming struct 'URL' has non-sendable type 'URL.Storage?'
    private var _storage: URL.Storage!
                ^
Foundation.URL (private):3:18: note: enum 'Storage' does not conform to the 'Sendable' protocol
    private enum Storage {
                 ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:706:21: warning: static property 'sqlStringLocale' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
  public static let sqlStringLocale = Locale(identifier: "en_US_POSIX")
                    ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:700:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'Decimal'; use '@unchecked Sendable' for retroactive conformance
extension Decimal : SQLiteValueType {
^
[42/100] Compiling Lighter SQLValueChanges.swift
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:524:10: warning: associated value 'formatter' of 'Sendable'-conforming enum 'SQLiteDateStorageStyle' has non-sendable type 'DateFormatter'
    case formatter(DateFormatter)
         ^
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
open class DateFormatter : Formatter {
           ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.URL
^
@preconcurrency
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:662:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'URL'; use '@unchecked Sendable' for retroactive conformance
extension URL : SQLiteValueType {
^
Foundation.URL (private):11:17: warning: stored property '_storage' of 'Sendable'-conforming struct 'URL' has non-sendable type 'URL.Storage?'
    private var _storage: URL.Storage!
                ^
Foundation.URL (private):3:18: note: enum 'Storage' does not conform to the 'Sendable' protocol
    private enum Storage {
                 ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:706:21: warning: static property 'sqlStringLocale' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
  public static let sqlStringLocale = Locale(identifier: "en_US_POSIX")
                    ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:700:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'Decimal'; use '@unchecked Sendable' for retroactive conformance
extension Decimal : SQLiteValueType {
^
[43/100] Compiling Lighter SQLiteValueType.swift
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:524:10: warning: associated value 'formatter' of 'Sendable'-conforming enum 'SQLiteDateStorageStyle' has non-sendable type 'DateFormatter'
    case formatter(DateFormatter)
         ^
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
open class DateFormatter : Formatter {
           ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.URL
^
@preconcurrency
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:662:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'URL'; use '@unchecked Sendable' for retroactive conformance
extension URL : SQLiteValueType {
^
Foundation.URL (private):11:17: warning: stored property '_storage' of 'Sendable'-conforming struct 'URL' has non-sendable type 'URL.Storage?'
    private var _storage: URL.Storage!
                ^
Foundation.URL (private):3:18: note: enum 'Storage' does not conform to the 'Sendable' protocol
    private enum Storage {
                 ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:706:21: warning: static property 'sqlStringLocale' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
  public static let sqlStringLocale = Locale(identifier: "en_US_POSIX")
                    ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:700:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'Decimal'; use '@unchecked Sendable' for retroactive conformance
extension Decimal : SQLiteValueType {
^
[44/100] Compiling Lighter SQLChangeTransaction.swift
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:524:10: warning: associated value 'formatter' of 'Sendable'-conforming enum 'SQLiteDateStorageStyle' has non-sendable type 'DateFormatter'
    case formatter(DateFormatter)
         ^
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
open class DateFormatter : Formatter {
           ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.URL
^
@preconcurrency
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:662:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'URL'; use '@unchecked Sendable' for retroactive conformance
extension URL : SQLiteValueType {
^
Foundation.URL (private):11:17: warning: stored property '_storage' of 'Sendable'-conforming struct 'URL' has non-sendable type 'URL.Storage?'
    private var _storage: URL.Storage!
                ^
Foundation.URL (private):3:18: note: enum 'Storage' does not conform to the 'Sendable' protocol
    private enum Storage {
                 ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:706:21: warning: static property 'sqlStringLocale' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
  public static let sqlStringLocale = Locale(identifier: "en_US_POSIX")
                    ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:700:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'Decimal'; use '@unchecked Sendable' for retroactive conformance
extension Decimal : SQLiteValueType {
^
[45/100] Compiling Lighter SQLDatabaseTransaction.swift
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:524:10: warning: associated value 'formatter' of 'Sendable'-conforming enum 'SQLiteDateStorageStyle' has non-sendable type 'DateFormatter'
    case formatter(DateFormatter)
         ^
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
open class DateFormatter : Formatter {
           ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.URL
^
@preconcurrency
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:662:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'URL'; use '@unchecked Sendable' for retroactive conformance
extension URL : SQLiteValueType {
^
Foundation.URL (private):11:17: warning: stored property '_storage' of 'Sendable'-conforming struct 'URL' has non-sendable type 'URL.Storage?'
    private var _storage: URL.Storage!
                ^
Foundation.URL (private):3:18: note: enum 'Storage' does not conform to the 'Sendable' protocol
    private enum Storage {
                 ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:706:21: warning: static property 'sqlStringLocale' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
  public static let sqlStringLocale = Locale(identifier: "en_US_POSIX")
                    ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:700:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'Decimal'; use '@unchecked Sendable' for retroactive conformance
extension Decimal : SQLiteValueType {
^
[46/100] Compiling Lighter SQLTransaction.swift
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:524:10: warning: associated value 'formatter' of 'Sendable'-conforming enum 'SQLiteDateStorageStyle' has non-sendable type 'DateFormatter'
    case formatter(DateFormatter)
         ^
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
open class DateFormatter : Formatter {
           ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.URL
^
@preconcurrency
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:662:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'URL'; use '@unchecked Sendable' for retroactive conformance
extension URL : SQLiteValueType {
^
Foundation.URL (private):11:17: warning: stored property '_storage' of 'Sendable'-conforming struct 'URL' has non-sendable type 'URL.Storage?'
    private var _storage: URL.Storage!
                ^
Foundation.URL (private):3:18: note: enum 'Storage' does not conform to the 'Sendable' protocol
    private enum Storage {
                 ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:706:21: warning: static property 'sqlStringLocale' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
  public static let sqlStringLocale = Locale(identifier: "en_US_POSIX")
                    ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:700:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'Decimal'; use '@unchecked Sendable' for retroactive conformance
extension Decimal : SQLiteValueType {
^
[47/100] Emitting module LighterCodeGenAST
/host/spi-builder-workspace/Plugins/Libraries/LighterCodeGenAST/Generation/GenLiterals.swift:81:17: warning: let 'unsafeSwiftStringLiteralCharacters' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let unsafeSwiftStringLiteralCharacters : CharacterSet = {
                ^
[48/100] Compiling LighterCodeGenAST CodeGenerator.swift
[49/100] Compiling LighterCodeGenAST GenExpressions.swift
[50/100] Compiling LighterCodeGenAST GenExtensions.swift
[51/100] Compiling LighterCodeGenAST GenFunctions.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterCodeGenAST/Generation/GenLiterals.swift:81:17: warning: let 'unsafeSwiftStringLiteralCharacters' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let unsafeSwiftStringLiteralCharacters : CharacterSet = {
                ^
[52/100] Compiling LighterCodeGenAST GenLiterals.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterCodeGenAST/Generation/GenLiterals.swift:81:17: warning: let 'unsafeSwiftStringLiteralCharacters' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let unsafeSwiftStringLiteralCharacters : CharacterSet = {
                ^
[53/100] Compiling LighterCodeGenAST GenStatements.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterCodeGenAST/Generation/GenLiterals.swift:81:17: warning: let 'unsafeSwiftStringLiteralCharacters' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let unsafeSwiftStringLiteralCharacters : CharacterSet = {
                ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:304:45: warning: capture of 'directory' with non-sendable type 'FileManager.SearchPathDirectory' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                            ^
Foundation.FileManager:2:17: note: enum 'SearchPathDirectory' does not conform to the 'Sendable' protocol
    public enum SearchPathDirectory : UInt {
                ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:17:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.URL
^
@preconcurrency
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:304:65: warning: capture of 'domains' with non-sendable type 'FileManager.SearchPathDomainMask' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                                                ^
Foundation.FileManager:34:19: note: struct 'SearchPathDomainMask' does not conform to the 'Sendable' protocol
    public struct SearchPathDomainMask : OptionSet {
                  ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:398:45: warning: capture of 'directory' with non-sendable type 'FileManager.SearchPathDirectory' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                            ^
Foundation.FileManager:2:17: note: enum 'SearchPathDirectory' does not conform to the 'Sendable' protocol
    public enum SearchPathDirectory : UInt {
                ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:398:65: warning: capture of 'domains' with non-sendable type 'FileManager.SearchPathDomainMask' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                                                ^
Foundation.FileManager:34:19: note: struct 'SearchPathDomainMask' does not conform to the 'Sendable' protocol
    public struct SearchPathDomainMask : OptionSet {
                  ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:304:45: warning: capture of 'directory' with non-sendable type 'FileManager.SearchPathDirectory' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                            ^
Foundation.FileManager:2:17: note: enum 'SearchPathDirectory' does not conform to the 'Sendable' protocol
    public enum SearchPathDirectory : UInt {
                ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:17:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.URL
^
@preconcurrency
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:304:65: warning: capture of 'domains' with non-sendable type 'FileManager.SearchPathDomainMask' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                                                ^
Foundation.FileManager:34:19: note: struct 'SearchPathDomainMask' does not conform to the 'Sendable' protocol
    public struct SearchPathDomainMask : OptionSet {
                  ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:398:45: warning: capture of 'directory' with non-sendable type 'FileManager.SearchPathDirectory' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                            ^
Foundation.FileManager:2:17: note: enum 'SearchPathDirectory' does not conform to the 'Sendable' protocol
    public enum SearchPathDirectory : UInt {
                ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:398:65: warning: capture of 'domains' with non-sendable type 'FileManager.SearchPathDomainMask' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                                                ^
Foundation.FileManager:34:19: note: struct 'SearchPathDomainMask' does not conform to the 'Sendable' protocol
    public struct SearchPathDomainMask : OptionSet {
                  ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:304:45: warning: capture of 'directory' with non-sendable type 'FileManager.SearchPathDirectory' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                            ^
Foundation.FileManager:2:17: note: enum 'SearchPathDirectory' does not conform to the 'Sendable' protocol
    public enum SearchPathDirectory : UInt {
                ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:17:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.URL
^
@preconcurrency
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:304:65: warning: capture of 'domains' with non-sendable type 'FileManager.SearchPathDomainMask' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                                                ^
Foundation.FileManager:34:19: note: struct 'SearchPathDomainMask' does not conform to the 'Sendable' protocol
    public struct SearchPathDomainMask : OptionSet {
                  ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:398:45: warning: capture of 'directory' with non-sendable type 'FileManager.SearchPathDirectory' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                            ^
Foundation.FileManager:2:17: note: enum 'SearchPathDirectory' does not conform to the 'Sendable' protocol
    public enum SearchPathDirectory : UInt {
                ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:398:65: warning: capture of 'domains' with non-sendable type 'FileManager.SearchPathDomainMask' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                                                ^
Foundation.FileManager:34:19: note: struct 'SearchPathDomainMask' does not conform to the 'Sendable' protocol
    public struct SearchPathDomainMask : OptionSet {
                  ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:304:45: warning: capture of 'directory' with non-sendable type 'FileManager.SearchPathDirectory' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                            ^
Foundation.FileManager:2:17: note: enum 'SearchPathDirectory' does not conform to the 'Sendable' protocol
    public enum SearchPathDirectory : UInt {
                ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:17:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.URL
^
@preconcurrency
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:304:65: warning: capture of 'domains' with non-sendable type 'FileManager.SearchPathDomainMask' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                                                ^
Foundation.FileManager:34:19: note: struct 'SearchPathDomainMask' does not conform to the 'Sendable' protocol
    public struct SearchPathDomainMask : OptionSet {
                  ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:398:45: warning: capture of 'directory' with non-sendable type 'FileManager.SearchPathDirectory' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                            ^
Foundation.FileManager:2:17: note: enum 'SearchPathDirectory' does not conform to the 'Sendable' protocol
    public enum SearchPathDirectory : UInt {
                ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:398:65: warning: capture of 'domains' with non-sendable type 'FileManager.SearchPathDomainMask' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                                                ^
Foundation.FileManager:34:19: note: struct 'SearchPathDomainMask' does not conform to the 'Sendable' protocol
    public struct SearchPathDomainMask : OptionSet {
                  ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:304:45: warning: capture of 'directory' with non-sendable type 'FileManager.SearchPathDirectory' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                            ^
Foundation.FileManager:2:17: note: enum 'SearchPathDirectory' does not conform to the 'Sendable' protocol
    public enum SearchPathDirectory : UInt {
                ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:17:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.URL
^
@preconcurrency
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:304:65: warning: capture of 'domains' with non-sendable type 'FileManager.SearchPathDomainMask' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                                                ^
Foundation.FileManager:34:19: note: struct 'SearchPathDomainMask' does not conform to the 'Sendable' protocol
    public struct SearchPathDomainMask : OptionSet {
                  ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:398:45: warning: capture of 'directory' with non-sendable type 'FileManager.SearchPathDirectory' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                            ^
Foundation.FileManager:2:17: note: enum 'SearchPathDirectory' does not conform to the 'Sendable' protocol
    public enum SearchPathDirectory : UInt {
                ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:398:65: warning: capture of 'domains' with non-sendable type 'FileManager.SearchPathDomainMask' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                                                ^
Foundation.FileManager:34:19: note: struct 'SearchPathDomainMask' does not conform to the 'Sendable' protocol
    public struct SearchPathDomainMask : OptionSet {
                  ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:304:45: warning: capture of 'directory' with non-sendable type 'FileManager.SearchPathDirectory' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                            ^
Foundation.FileManager:2:17: note: enum 'SearchPathDirectory' does not conform to the 'Sendable' protocol
    public enum SearchPathDirectory : UInt {
                ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:17:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.URL
^
@preconcurrency
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:304:65: warning: capture of 'domains' with non-sendable type 'FileManager.SearchPathDomainMask' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                                                ^
Foundation.FileManager:34:19: note: struct 'SearchPathDomainMask' does not conform to the 'Sendable' protocol
    public struct SearchPathDomainMask : OptionSet {
                  ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:398:45: warning: capture of 'directory' with non-sendable type 'FileManager.SearchPathDirectory' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                            ^
Foundation.FileManager:2:17: note: enum 'SearchPathDirectory' does not conform to the 'Sendable' protocol
    public enum SearchPathDirectory : UInt {
                ^
/host/spi-builder-workspace/Sources/Lighter/Database/SQLDatabaseCreation.swift:398:65: warning: capture of 'domains' with non-sendable type 'FileManager.SearchPathDomainMask' in a `@Sendable` closure
          let db = try self.bootstrap(into: directory, domains: domains,
                                                                ^
Foundation.FileManager:34:19: note: struct 'SearchPathDomainMask' does not conform to the 'Sendable' protocol
    public struct SearchPathDomainMask : OptionSet {
                  ^
[73/101] Compiling SQLite3Schema Column.swift
[74/101] Compiling SQLite3Schema DataTypes.swift
[75/101] Emitting module SQLite3Schema
[76/101] Compiling SQLite3Schema CatalogObject.swift
[77/101] Compiling SQLite3Schema Schema.swift
[78/101] Compiling SQLite3Schema ForeignKey.swift
[79/101] Compiling SQLite3Schema TableOrView.swift
[80/102] Compiling Lighter SQLTransactionAsync.swift
[81/102] Compiling Lighter SQLTransactionType.swift
[82/102] Compiling Lighter LighterError.swift
[83/102] Compiling Lighter OptionalCString.swift
[84/102] Compiling Lighter SQLError.swift
[85/102] Compiling Lighter SendableKeyPath.swift
[86/102] Wrapping AST for SQLite3Schema for debugging
[87/102] Wrapping AST for LighterCodeGenAST for debugging
[89/139] Emitting module LighterGeneration
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:195:16: warning: stored property 'validSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:7:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.CharacterSet
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:197:16: warning: stored property 'validFirstSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validFirstSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:163:16: warning: stored property 'dateFormatter' of 'Sendable'-conforming struct 'Options' has non-sendable type 'DateFormatter'
    public var dateFormatter    : DateFormatter = defaultSQLiteDateFormatter
               ^
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
open class DateFormatter : Formatter {
           ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:7:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import class  Foundation.DateFormatter
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:21:10: warning: associated value 'fileDoesNotExist' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case fileDoesNotExist          (URL)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:22:10: warning: associated value 'couldNotOpenDatabase' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotOpenDatabase      (URL)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:23:10: warning: associated value 'couldNotLoadFile' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotLoadFile          (URL, Swift.Error)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:24:10: warning: associated value 'invalidSQLInFile' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case invalidSQLInFile          (URL, String?)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:28:10: warning: associated value 'couldNotRecreateTable(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateTable     (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:29:10: warning: associated value 'couldNotRecreateView(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateView      (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:30:10: warning: associated value 'couldNotRecreateIndex(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateIndex     (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:31:10: warning: associated value 'couldNotRecreateTrigger(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateTrigger   (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/Utilities/CamelCase.swift:152:17: warning: let 'upper' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let upper = CharacterSet.uppercaseLetters
                ^
[90/144] Compiling LighterGeneration SchemaLoader.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:21:10: warning: associated value 'fileDoesNotExist' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case fileDoesNotExist          (URL)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:22:10: warning: associated value 'couldNotOpenDatabase' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotOpenDatabase      (URL)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:23:10: warning: associated value 'couldNotLoadFile' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotLoadFile          (URL, Swift.Error)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:24:10: warning: associated value 'invalidSQLInFile' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case invalidSQLInFile          (URL, String?)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:28:10: warning: associated value 'couldNotRecreateTable(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateTable     (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:29:10: warning: associated value 'couldNotRecreateView(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateView      (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:30:10: warning: associated value 'couldNotRecreateIndex(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateIndex     (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:31:10: warning: associated value 'couldNotRecreateTrigger(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateTrigger   (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/Utilities/CamelCase.swift:152:17: warning: let 'upper' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let upper = CharacterSet.uppercaseLetters
                ^
[91/144] Compiling LighterGeneration CamelCase.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:21:10: warning: associated value 'fileDoesNotExist' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case fileDoesNotExist          (URL)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:22:10: warning: associated value 'couldNotOpenDatabase' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotOpenDatabase      (URL)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:23:10: warning: associated value 'couldNotLoadFile' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotLoadFile          (URL, Swift.Error)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:24:10: warning: associated value 'invalidSQLInFile' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case invalidSQLInFile          (URL, String?)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:28:10: warning: associated value 'couldNotRecreateTable(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateTable     (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:29:10: warning: associated value 'couldNotRecreateView(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateView      (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:30:10: warning: associated value 'couldNotRecreateIndex(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateIndex     (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:31:10: warning: associated value 'couldNotRecreateTrigger(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateTrigger   (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/Utilities/CamelCase.swift:152:17: warning: let 'upper' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let upper = CharacterSet.uppercaseLetters
                ^
[92/144] Compiling LighterGeneration GenerateSchemaSwiftInit.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:21:10: warning: associated value 'fileDoesNotExist' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case fileDoesNotExist          (URL)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:22:10: warning: associated value 'couldNotOpenDatabase' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotOpenDatabase      (URL)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:23:10: warning: associated value 'couldNotLoadFile' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotLoadFile          (URL, Swift.Error)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:24:10: warning: associated value 'invalidSQLInFile' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case invalidSQLInFile          (URL, String?)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:28:10: warning: associated value 'couldNotRecreateTable(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateTable     (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:29:10: warning: associated value 'couldNotRecreateView(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateView      (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:30:10: warning: associated value 'couldNotRecreateIndex(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateIndex     (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:31:10: warning: associated value 'couldNotRecreateTrigger(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateTrigger   (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/Utilities/CamelCase.swift:152:17: warning: let 'upper' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let upper = CharacterSet.uppercaseLetters
                ^
[93/144] Compiling LighterGeneration Pluralize.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:21:10: warning: associated value 'fileDoesNotExist' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case fileDoesNotExist          (URL)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:22:10: warning: associated value 'couldNotOpenDatabase' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotOpenDatabase      (URL)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:23:10: warning: associated value 'couldNotLoadFile' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotLoadFile          (URL, Swift.Error)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:24:10: warning: associated value 'invalidSQLInFile' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case invalidSQLInFile          (URL, String?)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:28:10: warning: associated value 'couldNotRecreateTable(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateTable     (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:29:10: warning: associated value 'couldNotRecreateView(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateView      (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:30:10: warning: associated value 'couldNotRecreateIndex(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateIndex     (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:31:10: warning: associated value 'couldNotRecreateTrigger(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateTrigger   (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/Utilities/CamelCase.swift:152:17: warning: let 'upper' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let upper = CharacterSet.uppercaseLetters
                ^
[94/144] Compiling LighterGeneration SQLGeneration.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:21:10: warning: associated value 'fileDoesNotExist' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case fileDoesNotExist          (URL)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:22:10: warning: associated value 'couldNotOpenDatabase' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotOpenDatabase      (URL)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:23:10: warning: associated value 'couldNotLoadFile' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotLoadFile          (URL, Swift.Error)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:24:10: warning: associated value 'invalidSQLInFile' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case invalidSQLInFile          (URL, String?)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:28:10: warning: associated value 'couldNotRecreateTable(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateTable     (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:29:10: warning: associated value 'couldNotRecreateView(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateView      (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:30:10: warning: associated value 'couldNotRecreateIndex(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateIndex     (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/SchemaLoader.swift:31:10: warning: associated value 'couldNotRecreateTrigger(_:_:error:)' of 'Sendable'-conforming enum 'SchemaLoadError' has non-sendable type 'URL'
    case couldNotRecreateTrigger   (String, URL, error: String)
         ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/Utilities/CamelCase.swift:152:17: warning: let 'upper' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let upper = CharacterSet.uppercaseLetters
                ^
[95/144] Compiling LighterGeneration ConfigFile.swift
[96/144] Compiling LighterGeneration EmbeddedLighter.swift
[97/144] Compiling LighterGeneration FancyfierConfig.swift
[98/144] Compiling LighterGeneration JSONUtil.swift
[99/144] Compiling LighterGeneration LighterConfiguration.swift
[100/144] Compiling LighterGeneration Relationships.swift
[101/144] Emitting module Lighter
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:524:10: warning: associated value 'formatter' of 'Sendable'-conforming enum 'SQLiteDateStorageStyle' has non-sendable type 'DateFormatter'
    case formatter(DateFormatter)
         ^
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
open class DateFormatter : Formatter {
           ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.URL
^
@preconcurrency
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:662:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'URL'; use '@unchecked Sendable' for retroactive conformance
extension URL : SQLiteValueType {
^
Foundation.URL (private):11:17: warning: stored property '_storage' of 'Sendable'-conforming struct 'URL' has non-sendable type 'URL.Storage?'
    private var _storage: URL.Storage!
                ^
Foundation.URL (private):3:18: note: enum 'Storage' does not conform to the 'Sendable' protocol
    private enum Storage {
                 ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:706:21: warning: static property 'sqlStringLocale' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
  public static let sqlStringLocale = Locale(identifier: "en_US_POSIX")
                    ^
/host/spi-builder-workspace/Sources/Lighter/Schema/SQLiteValueType.swift:700:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'Decimal'; use '@unchecked Sendable' for retroactive conformance
extension Decimal : SQLiteValueType {
^
[102/145] Compiling LighterGeneration CodeGenerator.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:195:16: warning: stored property 'validSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:7:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.CharacterSet
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:197:16: warning: stored property 'validFirstSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validFirstSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
[103/145] Compiling LighterGeneration DatabaseInfo.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:195:16: warning: stored property 'validSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:7:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.CharacterSet
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:197:16: warning: stored property 'validFirstSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validFirstSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
[104/145] Compiling LighterGeneration EntityInfo.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:195:16: warning: stored property 'validSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:7:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.CharacterSet
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:197:16: warning: stored property 'validFirstSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validFirstSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
[105/145] Compiling LighterGeneration EntitySQLStatements.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:195:16: warning: stored property 'validSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:7:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.CharacterSet
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:197:16: warning: stored property 'validFirstSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validFirstSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
[106/145] Compiling LighterGeneration Fancyfier.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:195:16: warning: stored property 'validSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:7:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.CharacterSet
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:197:16: warning: stored property 'validFirstSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validFirstSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
[107/145] Compiling LighterGeneration Property.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:195:16: warning: stored property 'validSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:7:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import struct Foundation.CharacterSet
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/GenModel/Fancyfier.swift:197:16: warning: stored property 'validFirstSwiftIdentifierCharacters' of 'Sendable'-conforming struct 'Options' has non-sendable type 'CharacterSet'
    public var validFirstSwiftIdentifierCharacters : CharacterSet
               ^
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
              ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
[110/145] Compiling LighterGeneration SchemaInit.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
[111/145] Compiling LighterGeneration LighterAPI.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
[112/145] Compiling LighterGeneration ASTGeneratorConfig.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
[113/145] Compiling LighterGeneration CodeGeneratorConfig.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
[114/145] Compiling LighterGeneration EnlighterASTGenerator.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:163:16: warning: stored property 'dateFormatter' of 'Sendable'-conforming struct 'Options' has non-sendable type 'DateFormatter'
    public var dateFormatter    : DateFormatter = defaultSQLiteDateFormatter
               ^
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
open class DateFormatter : Formatter {
           ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:7:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import class  Foundation.DateFormatter
^
@preconcurrency
[115/145] Compiling LighterGeneration GenerateCombinedFile.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:163:16: warning: stored property 'dateFormatter' of 'Sendable'-conforming struct 'Options' has non-sendable type 'DateFormatter'
    public var dateFormatter    : DateFormatter = defaultSQLiteDateFormatter
               ^
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
open class DateFormatter : Formatter {
           ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:7:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import class  Foundation.DateFormatter
^
@preconcurrency
[116/145] Compiling LighterGeneration GenerateDatabaseStruct.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:163:16: warning: stored property 'dateFormatter' of 'Sendable'-conforming struct 'Options' has non-sendable type 'DateFormatter'
    public var dateFormatter    : DateFormatter = defaultSQLiteDateFormatter
               ^
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
open class DateFormatter : Formatter {
           ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:7:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import class  Foundation.DateFormatter
^
@preconcurrency
[117/145] Compiling LighterGeneration GenerateDatabaseSupport.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:163:16: warning: stored property 'dateFormatter' of 'Sendable'-conforming struct 'Options' has non-sendable type 'DateFormatter'
    public var dateFormatter    : DateFormatter = defaultSQLiteDateFormatter
               ^
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
open class DateFormatter : Formatter {
           ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:7:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import class  Foundation.DateFormatter
^
@preconcurrency
[118/145] Compiling LighterGeneration GenerateDefaultValues.swift
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:163:16: warning: stored property 'dateFormatter' of 'Sendable'-conforming struct 'Options' has non-sendable type 'DateFormatter'
    public var dateFormatter    : DateFormatter = defaultSQLiteDateFormatter
               ^
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
open class DateFormatter : Formatter {
           ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:7:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import class  Foundation.DateFormatter
^
@preconcurrency
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
/host/spi-builder-workspace/Plugins/Libraries/LighterGeneration/RecordGeneration/EnlighterASTGenerator.swift:237:17: warning: let 'defaultSQLiteDateFormatter' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
fileprivate let defaultSQLiteDateFormatter : DateFormatter = {
                ^
[124/145] Compiling LighterGeneration FunctionGenerator.swift
[125/145] Compiling LighterGeneration GenerateInsertFunctions.swift
[126/145] Compiling LighterGeneration GenerateInternalVariadics.swift
[127/145] Compiling LighterGeneration GenerateSelectFunctions.swift
[128/145] Compiling LighterGeneration GenerateUpdateFunctions.swift
[129/145] Compiling LighterGeneration GenerateOptionalHelpers.swift
[130/145] Compiling LighterGeneration GeneratePropertyType.swift
[131/145] Compiling LighterGeneration GenerateRawFunctions.swift
[132/145] Compiling LighterGeneration GenerateRawRelshipFunctions.swift
[133/145] Compiling LighterGeneration GenerateRecordRelshipFunctions.swift
[134/145] Compiling LighterGeneration GenerateRecordStatementBind.swift
[135/145] Compiling LighterGeneration GenerateRecordStatementInit.swift
[136/145] Compiling LighterGeneration GenerateRecordStructure.swift
[137/145] Compiling LighterGeneration GenerateRecordSwiftMatcher.swift
[138/145] Compiling LighterGeneration GenerateSchemaStructure.swift
[139/146] Wrapping AST for LighterGeneration for debugging
[141/153] Compiling sqlite2swift main.swift
[142/153] Emitting module GenerateInternalVariadics
[143/153] Emitting module sqlite2swift
[144/153] Compiling sqlite2swift Arguments.swift
[145/153] Compiling GenerateInternalVariadics main.swift
[146/154] Compiling sqlite2swift ExitCodes.swift
[147/154] Compiling sqlite2swift SQLite2Swift.swift
[149/155] Wrapping AST for GenerateInternalVariadics for debugging
[150/155] Write Objects.LinkFileList
[151/155] Wrapping AST for sqlite2swift for debugging
[152/155] Write Objects.LinkFileList
[153/155] Linking GenerateInternalVariadics
[154/155] Linking sqlite2swift
Build complete! (20.27s)
Build complete.
Done.

Build Machine: Linux 1