The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SQLite.swift, reference 0.16.0 (964c30), with Swift 6.1 for macOS (SPM) on 8 Mar 2026 20:15:07 UTC.

Swift 6 data race errors: 8

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/stephencelis/SQLite.swift.git
Reference: 0.16.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/stephencelis/SQLite.swift
 * tag               0.16.0     -> FETCH_HEAD
HEAD is now at 964c300 Merge pull request #1353 from stephencelis/prepare-0.16.0
Cloned https://github.com/stephencelis/SQLite.swift.git
Revision (git rev-parse @):
964c300fb0736699ce945c9edb56ecd62eba27a3
SUCCESS checkout https://github.com/stephencelis/SQLite.swift.git at 0.16.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/stephencelis/SQLite.swift.git
https://github.com/stephencelis/SQLite.swift.git
{
  "dependencies" : [
    {
      "identity" : "csqlite",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.50.4",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/stephencelis/CSQLite"
    },
    {
      "identity" : "sqlcipher.swift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.11.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/sqlcipher/SQLCipher.swift"
    }
  ],
  "manifest_display_name" : "SQLite.swift",
  "name" : "SQLite.swift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "SQLite",
      "targets" : [
        "SQLite"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SQLite-Dynamic",
      "targets" : [
        "SQLite"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "SQLiteTests",
      "module_type" : "SwiftTarget",
      "name" : "SQLiteTests",
      "path" : "Tests/SQLiteTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/SQLiteTests/Resources",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Core/BlobTests.swift",
        "Core/Connection+AttachTests.swift",
        "Core/Connection+PragmaTests.swift",
        "Core/ConnectionTests.swift",
        "Core/CoreFunctionsTests.swift",
        "Core/ResultTests.swift",
        "Core/StatementTests.swift",
        "Core/ValueTests.swift",
        "Extensions/CipherTests.swift",
        "Extensions/FTS4Tests.swift",
        "Extensions/FTS5IntegrationTests.swift",
        "Extensions/FTS5Tests.swift",
        "Extensions/RTreeTests.swift",
        "Fixtures.swift",
        "FoundationTests.swift",
        "Schema/Connection+SchemaTests.swift",
        "Schema/SchemaChangerTests.swift",
        "Schema/SchemaDefinitionsTests.swift",
        "Schema/SchemaReaderTests.swift",
        "Schema/SchemaTests.swift",
        "TestHelpers.swift",
        "Typed/AggregateFunctionsTests.swift",
        "Typed/CustomAggregationTests.swift",
        "Typed/CustomFunctionsTests.swift",
        "Typed/DateAndTimeFunctionTests.swift",
        "Typed/ExpressionTests.swift",
        "Typed/OperatorsTests.swift",
        "Typed/QueryIntegrationTests.swift",
        "Typed/QueryTests.swift",
        "Typed/RowTests.swift",
        "Typed/SelectTests.swift",
        "Typed/SetterTests.swift",
        "Typed/WindowFunctionsTests.swift"
      ],
      "target_dependencies" : [
        "SQLite"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SQLite",
      "module_type" : "SwiftTarget",
      "name" : "SQLite",
      "path" : "Sources/SQLite",
      "product_dependencies" : [
        "SQLiteSwiftCSQLite",
        "SQLCipher"
      ],
      "product_memberships" : [
        "SQLite",
        "SQLite-Dynamic"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/SQLite/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Core/Backup.swift",
        "Core/Blob.swift",
        "Core/Connection+Aggregation.swift",
        "Core/Connection+Attach.swift",
        "Core/Connection+Pragmas.swift",
        "Core/Connection.swift",
        "Core/Errors.swift",
        "Core/Result.swift",
        "Core/SQLiteFeature.swift",
        "Core/SQLiteVersion.swift",
        "Core/Statement.swift",
        "Core/URIQueryParameter.swift",
        "Core/Value.swift",
        "Extensions/Cipher.swift",
        "Extensions/FTS4.swift",
        "Extensions/FTS5.swift",
        "Extensions/RTree.swift",
        "Foundation.swift",
        "Helpers.swift",
        "Schema/Connection+Schema.swift",
        "Schema/SchemaChanger.swift",
        "Schema/SchemaDefinitions.swift",
        "Schema/SchemaReader.swift",
        "Typed/AggregateFunctions.swift",
        "Typed/Coding.swift",
        "Typed/Collation.swift",
        "Typed/CoreFunctions.swift",
        "Typed/CustomFunctions.swift",
        "Typed/DateAndTimeFunctions.swift",
        "Typed/Expression.swift",
        "Typed/Operators.swift",
        "Typed/Query+with.swift",
        "Typed/Query.swift",
        "Typed/Schema.swift",
        "Typed/Setter.swift",
        "Typed/WindowFunctions.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.1"
}
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
Building for debugging...
[0/5] Write sources
[1/5] Copying PrivacyInfo.xcprivacy
[2/5] Write swift-version-2F0A5646E1D333AE.txt
[4/40] Emitting module SQLite
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:22:10: warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
20 |     ///
21 |     /// - statement: the statement which produced the error
22 |     case error(message: String, code: Int32, statement: Statement?)
   |          `- warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
23 |
24 |     /// Represents a SQLite specific [extended error code] (https://sqlite.org/rescode.html#primary_result_codes_versus_extended_result_codes)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
 34 |
 35 | /// A single SQL statement.
 36 | public final class Statement {
    |                    `- note: class 'Statement' does not conform to the 'Sendable' protocol
 37 |
 38 |     fileprivate var handle: OpaquePointer?
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:31:10: warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
29 |     ///
30 |     /// - statement: the statement which produced the error
31 |     case extendedError(message: String, extendedCode: Int32, statement: Statement?)
   |          `- warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
32 |
33 |     init?(errorCode: Int32, connection: Connection, statement: Statement? = nil) {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
 34 |
 35 | /// A single SQL statement.
 36 | public final class Statement {
    |                    `- note: class 'Statement' does not conform to the 'Sendable' protocol
 37 |
 38 |     fileprivate var handle: OpaquePointer?
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:108:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 | extension Bool: Binding, Value {
107 |
108 |     public static var declaredDatatype = Int64.declaredDatatype
    |                       |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |
110 |     public static func fromDatatypeValue(_ datatypeValue: Int64) -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:122:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
120 | extension Int: Number, Value {
121 |
122 |     public static var declaredDatatype = Int64.declaredDatatype
    |                       |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |
124 |     public static func fromDatatypeValue(_ datatypeValue: Int64) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:93:23: warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 | // swiftlint:disable identifier_name
 91 | public struct Tokenizer {
    |               `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
 92 |
 93 |     public static let Simple = Tokenizer("simple")
    |                       |- warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'Simple' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |     public static let Porter = Tokenizer("porter")
 95 |
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:94:23: warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 | // swiftlint:disable identifier_name
 91 | public struct Tokenizer {
    |               `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
 92 |
 93 |     public static let Simple = Tokenizer("simple")
 94 |     public static let Porter = Tokenizer("porter")
    |                       |- warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'Porter' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 95 |
 96 |     public static func Unicode61(removeDiacritics: Bool? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift:64:12: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 62 | /// If multiple date formats are used in an application’s database(s), use a
 63 | /// custom `Value` type per additional format.
 64 | public var dateFormatter: DateFormatter = {
    |            |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'dateFormatter' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     let formatter = DateFormatter()
 66 |     formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS"
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaChanger.swift:32:14: warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
 30 |     public enum Error: LocalizedError {
 31 |         case invalidColumnDefinition(String)
 32 |         case foreignKeyError([ForeignKeyError])
    |              `- warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
 33 |
 34 |         public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaDefinitions.swift:343:15: note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
341 | }
342 |
343 | public struct ForeignKeyError: CustomStringConvertible {
    |               `- note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
344 |     public let from: String
345 |     public let rowId: Int64
[5/43] Compiling SQLite Setter.swift
[6/43] Compiling SQLite WindowFunctions.swift
[7/43] Compiling SQLite resource_bundle_accessor.swift
[8/43] Compiling SQLite Connection+Pragmas.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:22:10: warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
20 |     ///
21 |     /// - statement: the statement which produced the error
22 |     case error(message: String, code: Int32, statement: Statement?)
   |          `- warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
23 |
24 |     /// Represents a SQLite specific [extended error code] (https://sqlite.org/rescode.html#primary_result_codes_versus_extended_result_codes)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
 34 |
 35 | /// A single SQL statement.
 36 | public final class Statement {
    |                    `- note: class 'Statement' does not conform to the 'Sendable' protocol
 37 |
 38 |     fileprivate var handle: OpaquePointer?
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:31:10: warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
29 |     ///
30 |     /// - statement: the statement which produced the error
31 |     case extendedError(message: String, extendedCode: Int32, statement: Statement?)
   |          `- warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
32 |
33 |     init?(errorCode: Int32, connection: Connection, statement: Statement? = nil) {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
 34 |
 35 | /// A single SQL statement.
 36 | public final class Statement {
    |                    `- note: class 'Statement' does not conform to the 'Sendable' protocol
 37 |
 38 |     fileprivate var handle: OpaquePointer?
[9/43] Compiling SQLite Connection.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:22:10: warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
20 |     ///
21 |     /// - statement: the statement which produced the error
22 |     case error(message: String, code: Int32, statement: Statement?)
   |          `- warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
23 |
24 |     /// Represents a SQLite specific [extended error code] (https://sqlite.org/rescode.html#primary_result_codes_versus_extended_result_codes)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
 34 |
 35 | /// A single SQL statement.
 36 | public final class Statement {
    |                    `- note: class 'Statement' does not conform to the 'Sendable' protocol
 37 |
 38 |     fileprivate var handle: OpaquePointer?
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:31:10: warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
29 |     ///
30 |     /// - statement: the statement which produced the error
31 |     case extendedError(message: String, extendedCode: Int32, statement: Statement?)
   |          `- warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
32 |
33 |     init?(errorCode: Int32, connection: Connection, statement: Statement? = nil) {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
 34 |
 35 | /// A single SQL statement.
 36 | public final class Statement {
    |                    `- note: class 'Statement' does not conform to the 'Sendable' protocol
 37 |
 38 |     fileprivate var handle: OpaquePointer?
[10/43] Compiling SQLite Errors.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:22:10: warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
20 |     ///
21 |     /// - statement: the statement which produced the error
22 |     case error(message: String, code: Int32, statement: Statement?)
   |          `- warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
23 |
24 |     /// Represents a SQLite specific [extended error code] (https://sqlite.org/rescode.html#primary_result_codes_versus_extended_result_codes)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
 34 |
 35 | /// A single SQL statement.
 36 | public final class Statement {
    |                    `- note: class 'Statement' does not conform to the 'Sendable' protocol
 37 |
 38 |     fileprivate var handle: OpaquePointer?
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:31:10: warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
29 |     ///
30 |     /// - statement: the statement which produced the error
31 |     case extendedError(message: String, extendedCode: Int32, statement: Statement?)
   |          `- warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
32 |
33 |     init?(errorCode: Int32, connection: Connection, statement: Statement? = nil) {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
 34 |
 35 | /// A single SQL statement.
 36 | public final class Statement {
    |                    `- note: class 'Statement' does not conform to the 'Sendable' protocol
 37 |
 38 |     fileprivate var handle: OpaquePointer?
[11/43] Compiling SQLite Result.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:22:10: warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
20 |     ///
21 |     /// - statement: the statement which produced the error
22 |     case error(message: String, code: Int32, statement: Statement?)
   |          `- warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
23 |
24 |     /// Represents a SQLite specific [extended error code] (https://sqlite.org/rescode.html#primary_result_codes_versus_extended_result_codes)
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
 34 |
 35 | /// A single SQL statement.
 36 | public final class Statement {
    |                    `- note: class 'Statement' does not conform to the 'Sendable' protocol
 37 |
 38 |     fileprivate var handle: OpaquePointer?
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Result.swift:31:10: warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
29 |     ///
30 |     /// - statement: the statement which produced the error
31 |     case extendedError(message: String, extendedCode: Int32, statement: Statement?)
   |          `- warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
32 |
33 |     init?(errorCode: Int32, connection: Connection, statement: Statement? = nil) {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
 34 |
 35 | /// A single SQL statement.
 36 | public final class Statement {
    |                    `- note: class 'Statement' does not conform to the 'Sendable' protocol
 37 |
 38 |     fileprivate var handle: OpaquePointer?
[12/43] Compiling SQLite Query+with.swift
[13/43] Compiling SQLite Query.swift
[14/43] Compiling SQLite Schema.swift
[15/43] Compiling SQLite Backup.swift
[16/43] Compiling SQLite Blob.swift
[17/43] Compiling SQLite Connection+Aggregation.swift
[18/43] Compiling SQLite Connection+Attach.swift
[19/43] Compiling SQLite SQLiteFeature.swift
[20/43] Compiling SQLite SQLiteVersion.swift
[21/43] Compiling SQLite Statement.swift
[22/43] Compiling SQLite URIQueryParameter.swift
[23/43] Compiling SQLite SchemaChanger.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaChanger.swift:32:14: warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
 30 |     public enum Error: LocalizedError {
 31 |         case invalidColumnDefinition(String)
 32 |         case foreignKeyError([ForeignKeyError])
    |              `- warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
 33 |
 34 |         public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaDefinitions.swift:343:15: note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
341 | }
342 |
343 | public struct ForeignKeyError: CustomStringConvertible {
    |               `- note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
344 |     public let from: String
345 |     public let rowId: Int64
[24/43] Compiling SQLite SchemaDefinitions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaChanger.swift:32:14: warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
 30 |     public enum Error: LocalizedError {
 31 |         case invalidColumnDefinition(String)
 32 |         case foreignKeyError([ForeignKeyError])
    |              `- warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
 33 |
 34 |         public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaDefinitions.swift:343:15: note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
341 | }
342 |
343 | public struct ForeignKeyError: CustomStringConvertible {
    |               `- note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
344 |     public let from: String
345 |     public let rowId: Int64
[25/43] Compiling SQLite SchemaReader.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaChanger.swift:32:14: warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
 30 |     public enum Error: LocalizedError {
 31 |         case invalidColumnDefinition(String)
 32 |         case foreignKeyError([ForeignKeyError])
    |              `- warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
 33 |
 34 |         public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaDefinitions.swift:343:15: note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
341 | }
342 |
343 | public struct ForeignKeyError: CustomStringConvertible {
    |               `- note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
344 |     public let from: String
345 |     public let rowId: Int64
[26/43] Compiling SQLite AggregateFunctions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaChanger.swift:32:14: warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
 30 |     public enum Error: LocalizedError {
 31 |         case invalidColumnDefinition(String)
 32 |         case foreignKeyError([ForeignKeyError])
    |              `- warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
 33 |
 34 |         public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Schema/SchemaDefinitions.swift:343:15: note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
341 | }
342 |
343 | public struct ForeignKeyError: CustomStringConvertible {
    |               `- note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
344 |     public let from: String
345 |     public let rowId: Int64
[27/43] Compiling SQLite Value.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:108:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 | extension Bool: Binding, Value {
107 |
108 |     public static var declaredDatatype = Int64.declaredDatatype
    |                       |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |
110 |     public static func fromDatatypeValue(_ datatypeValue: Int64) -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:122:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
120 | extension Int: Number, Value {
121 |
122 |     public static var declaredDatatype = Int64.declaredDatatype
    |                       |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |
124 |     public static func fromDatatypeValue(_ datatypeValue: Int64) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:93:23: warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 | // swiftlint:disable identifier_name
 91 | public struct Tokenizer {
    |               `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
 92 |
 93 |     public static let Simple = Tokenizer("simple")
    |                       |- warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'Simple' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |     public static let Porter = Tokenizer("porter")
 95 |
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:94:23: warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 | // swiftlint:disable identifier_name
 91 | public struct Tokenizer {
    |               `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
 92 |
 93 |     public static let Simple = Tokenizer("simple")
 94 |     public static let Porter = Tokenizer("porter")
    |                       |- warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'Porter' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 95 |
 96 |     public static func Unicode61(removeDiacritics: Bool? = nil,
[28/43] Compiling SQLite Cipher.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:108:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 | extension Bool: Binding, Value {
107 |
108 |     public static var declaredDatatype = Int64.declaredDatatype
    |                       |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |
110 |     public static func fromDatatypeValue(_ datatypeValue: Int64) -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:122:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
120 | extension Int: Number, Value {
121 |
122 |     public static var declaredDatatype = Int64.declaredDatatype
    |                       |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |
124 |     public static func fromDatatypeValue(_ datatypeValue: Int64) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:93:23: warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 | // swiftlint:disable identifier_name
 91 | public struct Tokenizer {
    |               `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
 92 |
 93 |     public static let Simple = Tokenizer("simple")
    |                       |- warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'Simple' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |     public static let Porter = Tokenizer("porter")
 95 |
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:94:23: warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 | // swiftlint:disable identifier_name
 91 | public struct Tokenizer {
    |               `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
 92 |
 93 |     public static let Simple = Tokenizer("simple")
 94 |     public static let Porter = Tokenizer("porter")
    |                       |- warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'Porter' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 95 |
 96 |     public static func Unicode61(removeDiacritics: Bool? = nil,
[29/43] Compiling SQLite FTS4.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:108:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 | extension Bool: Binding, Value {
107 |
108 |     public static var declaredDatatype = Int64.declaredDatatype
    |                       |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |
110 |     public static func fromDatatypeValue(_ datatypeValue: Int64) -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:122:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
120 | extension Int: Number, Value {
121 |
122 |     public static var declaredDatatype = Int64.declaredDatatype
    |                       |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |
124 |     public static func fromDatatypeValue(_ datatypeValue: Int64) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:93:23: warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 | // swiftlint:disable identifier_name
 91 | public struct Tokenizer {
    |               `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
 92 |
 93 |     public static let Simple = Tokenizer("simple")
    |                       |- warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'Simple' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |     public static let Porter = Tokenizer("porter")
 95 |
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:94:23: warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 | // swiftlint:disable identifier_name
 91 | public struct Tokenizer {
    |               `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
 92 |
 93 |     public static let Simple = Tokenizer("simple")
 94 |     public static let Porter = Tokenizer("porter")
    |                       |- warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'Porter' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 95 |
 96 |     public static func Unicode61(removeDiacritics: Bool? = nil,
[30/43] Compiling SQLite FTS5.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:108:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 | extension Bool: Binding, Value {
107 |
108 |     public static var declaredDatatype = Int64.declaredDatatype
    |                       |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |
110 |     public static func fromDatatypeValue(_ datatypeValue: Int64) -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Core/Value.swift:122:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
120 | extension Int: Number, Value {
121 |
122 |     public static var declaredDatatype = Int64.declaredDatatype
    |                       |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |
124 |     public static func fromDatatypeValue(_ datatypeValue: Int64) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:93:23: warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 | // swiftlint:disable identifier_name
 91 | public struct Tokenizer {
    |               `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
 92 |
 93 |     public static let Simple = Tokenizer("simple")
    |                       |- warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'Simple' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |     public static let Porter = Tokenizer("porter")
 95 |
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Extensions/FTS4.swift:94:23: warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 | // swiftlint:disable identifier_name
 91 | public struct Tokenizer {
    |               `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
 92 |
 93 |     public static let Simple = Tokenizer("simple")
 94 |     public static let Porter = Tokenizer("porter")
    |                       |- warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'Porter' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 95 |
 96 |     public static func Unicode61(removeDiacritics: Bool? = nil,
[31/43] Compiling SQLite RTree.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift:64:12: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 62 | /// If multiple date formats are used in an application’s database(s), use a
 63 | /// custom `Value` type per additional format.
 64 | public var dateFormatter: DateFormatter = {
    |            |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'dateFormatter' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     let formatter = DateFormatter()
 66 |     formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS"
[32/43] Compiling SQLite Foundation.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift:64:12: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 62 | /// If multiple date formats are used in an application’s database(s), use a
 63 | /// custom `Value` type per additional format.
 64 | public var dateFormatter: DateFormatter = {
    |            |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'dateFormatter' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     let formatter = DateFormatter()
 66 |     formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS"
[33/43] Compiling SQLite Helpers.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift:64:12: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 62 | /// If multiple date formats are used in an application’s database(s), use a
 63 | /// custom `Value` type per additional format.
 64 | public var dateFormatter: DateFormatter = {
    |            |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'dateFormatter' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     let formatter = DateFormatter()
 66 |     formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS"
[34/43] Compiling SQLite Connection+Schema.swift
/Users/admin/builder/spi-builder-workspace/Sources/SQLite/Foundation.swift:64:12: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 62 | /// If multiple date formats are used in an application’s database(s), use a
 63 | /// custom `Value` type per additional format.
 64 | public var dateFormatter: DateFormatter = {
    |            |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'dateFormatter' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     let formatter = DateFormatter()
 66 |     formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS"
[35/43] Compiling SQLite DateAndTimeFunctions.swift
[36/43] Compiling SQLite Expression.swift
[37/43] Compiling SQLite Operators.swift
[38/43] Compiling SQLite Coding.swift
[39/43] Compiling SQLite Collation.swift
[40/43] Compiling SQLite CoreFunctions.swift
[41/43] Compiling SQLite CustomFunctions.swift
[41/43] Write Objects.LinkFileList
[42/43] Linking libSQLite-Dynamic.dylib
Build complete! (11.86s)
Fetching https://github.com/stephencelis/CSQLite
Fetching https://github.com/sqlcipher/SQLCipher.swift
[1/110] Fetching sqlcipher.swift
[50/310] Fetching sqlcipher.swift, csqlite
Fetched https://github.com/stephencelis/CSQLite from cache (1.22s)
Fetched https://github.com/sqlcipher/SQLCipher.swift from cache (1.22s)
Computing version for https://github.com/stephencelis/CSQLite
Computed https://github.com/stephencelis/CSQLite at 3.50.4 (1.73s)
Computing version for https://github.com/sqlcipher/SQLCipher.swift
Computed https://github.com/sqlcipher/SQLCipher.swift at 4.13.0 (0.47s)
Creating working copy for https://github.com/stephencelis/CSQLite
Working copy of https://github.com/stephencelis/CSQLite resolved at 3.50.4
Creating working copy for https://github.com/sqlcipher/SQLCipher.swift
Working copy of https://github.com/sqlcipher/SQLCipher.swift resolved at 4.13.0
Downloading binary artifact https://github.com/sqlcipher/SQLCipher.swift/releases/download/4.13.0/SQLCipher.xcframework.zip
[7765/46908096] Downloading https://github.com/sqlcipher/SQLCipher.swift/releases/download/4.13.0/SQLCipher.xcframework.zip
Downloaded https://github.com/sqlcipher/SQLCipher.swift/releases/download/4.13.0/SQLCipher.xcframework.zip (2.51s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "csqlite",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.50.4",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/stephencelis/CSQLite"
    },
    {
      "identity" : "sqlcipher.swift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.11.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/sqlcipher/SQLCipher.swift"
    }
  ],
  "manifest_display_name" : "SQLite.swift",
  "name" : "SQLite.swift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "SQLite",
      "targets" : [
        "SQLite"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SQLite-Dynamic",
      "targets" : [
        "SQLite"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "SQLiteTests",
      "module_type" : "SwiftTarget",
      "name" : "SQLiteTests",
      "path" : "Tests/SQLiteTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/SQLiteTests/Resources",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Core/BlobTests.swift",
        "Core/Connection+AttachTests.swift",
        "Core/Connection+PragmaTests.swift",
        "Core/ConnectionTests.swift",
        "Core/CoreFunctionsTests.swift",
        "Core/ResultTests.swift",
        "Core/StatementTests.swift",
        "Core/ValueTests.swift",
        "Extensions/CipherTests.swift",
        "Extensions/FTS4Tests.swift",
        "Extensions/FTS5IntegrationTests.swift",
        "Extensions/FTS5Tests.swift",
        "Extensions/RTreeTests.swift",
        "Fixtures.swift",
        "FoundationTests.swift",
        "Schema/Connection+SchemaTests.swift",
        "Schema/SchemaChangerTests.swift",
        "Schema/SchemaDefinitionsTests.swift",
        "Schema/SchemaReaderTests.swift",
        "Schema/SchemaTests.swift",
        "TestHelpers.swift",
        "Typed/AggregateFunctionsTests.swift",
        "Typed/CustomAggregationTests.swift",
        "Typed/CustomFunctionsTests.swift",
        "Typed/DateAndTimeFunctionTests.swift",
        "Typed/ExpressionTests.swift",
        "Typed/OperatorsTests.swift",
        "Typed/QueryIntegrationTests.swift",
        "Typed/QueryTests.swift",
        "Typed/RowTests.swift",
        "Typed/SelectTests.swift",
        "Typed/SetterTests.swift",
        "Typed/WindowFunctionsTests.swift"
      ],
      "target_dependencies" : [
        "SQLite"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SQLite",
      "module_type" : "SwiftTarget",
      "name" : "SQLite",
      "path" : "Sources/SQLite",
      "product_dependencies" : [
        "SQLiteSwiftCSQLite",
        "SQLCipher"
      ],
      "product_memberships" : [
        "SQLite",
        "SQLite-Dynamic"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/SQLite/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Core/Backup.swift",
        "Core/Blob.swift",
        "Core/Connection+Aggregation.swift",
        "Core/Connection+Attach.swift",
        "Core/Connection+Pragmas.swift",
        "Core/Connection.swift",
        "Core/Errors.swift",
        "Core/Result.swift",
        "Core/SQLiteFeature.swift",
        "Core/SQLiteVersion.swift",
        "Core/Statement.swift",
        "Core/URIQueryParameter.swift",
        "Core/Value.swift",
        "Extensions/Cipher.swift",
        "Extensions/FTS4.swift",
        "Extensions/FTS5.swift",
        "Extensions/RTree.swift",
        "Foundation.swift",
        "Helpers.swift",
        "Schema/Connection+Schema.swift",
        "Schema/SchemaChanger.swift",
        "Schema/SchemaDefinitions.swift",
        "Schema/SchemaReader.swift",
        "Typed/AggregateFunctions.swift",
        "Typed/Coding.swift",
        "Typed/Collation.swift",
        "Typed/CoreFunctions.swift",
        "Typed/CustomFunctions.swift",
        "Typed/DateAndTimeFunctions.swift",
        "Typed/Expression.swift",
        "Typed/Operators.swift",
        "Typed/Query+with.swift",
        "Typed/Query.swift",
        "Typed/Schema.swift",
        "Typed/Setter.swift",
        "Typed/WindowFunctions.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.1"
}
Done.