The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Dflat, reference unstable (65334e), with Swift 6.0 for Linux on 2 Nov 2024 22:43:47 UTC.

Swift 6 data race errors: 12

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

[67/107] Compiling Dflat SQLiteField.swift
[68/107] Compiling Dflat SQLiteIn.swift
[69/107] Compiling Dflat SQLiteIsNotNull.swift
[70/107] Compiling Dflat NotIn.swift
/host/spi-builder-workspace/src/exprs/Value.swift:5:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 3 | public protocol DflatFriendlyValue: Comparable, Hashable {}
 4 |
 5 | extension Bool: Comparable {
   | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 |   @inlinable
 7 |   public static func < (lhs: Bool, rhs: Bool) -> Bool {
[71/107] Compiling Dflat Or.swift
/host/spi-builder-workspace/src/exprs/Value.swift:5:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 3 | public protocol DflatFriendlyValue: Comparable, Hashable {}
 4 |
 5 | extension Bool: Comparable {
   | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 |   @inlinable
 7 |   public static func < (lhs: Bool, rhs: Bool) -> Bool {
[72/107] Compiling Dflat Subtraction.swift
/host/spi-builder-workspace/src/exprs/Value.swift:5:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 3 | public protocol DflatFriendlyValue: Comparable, Hashable {}
 4 |
 5 | extension Bool: Comparable {
   | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 |   @inlinable
 7 |   public static func < (lhs: Bool, rhs: Bool) -> Bool {
[73/107] Compiling Dflat Value.swift
/host/spi-builder-workspace/src/exprs/Value.swift:5:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 3 | public protocol DflatFriendlyValue: Comparable, Hashable {}
 4 |
 5 | extension Bool: Comparable {
   | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 |   @inlinable
 7 |   public static func < (lhs: Bool, rhs: Bool) -> Bool {
[74/107] Compiling Dflat SQLiteAddition.swift
/host/spi-builder-workspace/src/exprs/Value.swift:5:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 3 | public protocol DflatFriendlyValue: Comparable, Hashable {}
 4 |
 5 | extension Bool: Comparable {
   | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 |   @inlinable
 7 |   public static func < (lhs: Bool, rhs: Bool) -> Bool {
[75/107] Compiling Dflat EqualTo.swift
[76/107] Compiling Dflat Field.swift
[77/107] Compiling Dflat In.swift
[78/107] Compiling Dflat IsNotNull.swift
[79/107] Compiling Dflat IsNull.swift
[80/107] Compiling Dflat SQLiteNotEqualTo.swift
[81/107] Compiling Dflat SQLiteNotIn.swift
[82/107] Compiling Dflat SQLiteOr.swift
[83/107] Compiling Dflat SQLiteSubtraction.swift
[84/107] Compiling Dflat SQLiteValue.swift
[85/107] Compiling Dflat QueryBuilder.swift
/host/spi-builder-workspace/src/Workspace.swift:211:21: warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
209 |     self.rawValue = rawValue
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
    |                     |- warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'truncate' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
213 | }
/host/spi-builder-workspace/src/Workspace.swift:212:21: warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
    :
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
    |                     |- warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'vacuum' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
213 | }
214 |
[86/107] Compiling Dflat SQLiteExpr.swift
/host/spi-builder-workspace/src/Workspace.swift:211:21: warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
209 |     self.rawValue = rawValue
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
    |                     |- warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'truncate' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
213 | }
/host/spi-builder-workspace/src/Workspace.swift:212:21: warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
    :
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
    |                     |- warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'vacuum' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
213 | }
214 |
[87/107] Compiling Dflat TransactionContext.swift
/host/spi-builder-workspace/src/Workspace.swift:211:21: warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
209 |     self.rawValue = rawValue
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
    |                     |- warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'truncate' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
213 | }
/host/spi-builder-workspace/src/Workspace.swift:212:21: warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
    :
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
    |                     |- warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'vacuum' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
213 | }
214 |
[88/107] Compiling Dflat Workspace.swift
/host/spi-builder-workspace/src/Workspace.swift:211:21: warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
209 |     self.rawValue = rawValue
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
    |                     |- warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'truncate' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
213 | }
/host/spi-builder-workspace/src/Workspace.swift:212:21: warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
    :
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
    |                     |- warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'vacuum' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
213 | }
214 |
[89/107] Compiling Dflat Addition.swift
/host/spi-builder-workspace/src/Workspace.swift:211:21: warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
209 |     self.rawValue = rawValue
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
    |                     |- warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'truncate' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
213 | }
/host/spi-builder-workspace/src/Workspace.swift:212:21: warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
    :
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
    |                     |- warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'vacuum' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
213 | }
214 |
[90/107] Compiling Dflat And.swift
/host/spi-builder-workspace/src/Workspace.swift:211:21: warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
209 |     self.rawValue = rawValue
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
    |                     |- warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'truncate' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
213 | }
/host/spi-builder-workspace/src/Workspace.swift:212:21: warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
    :
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
    |                     |- warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'vacuum' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
213 | }
214 |
[91/107] Compiling Dflat LessThan.swift
[92/107] Compiling Dflat LessThanOrEqualTo.swift
[93/107] Compiling Dflat Mod.swift
[94/107] Compiling Dflat Not.swift
[95/107] Compiling Dflat NotEqualTo.swift
[96/107] Compiling Dflat SQLiteIsNull.swift
[97/107] Compiling Dflat SQLiteLessThan.swift
[98/107] Compiling Dflat SQLiteLessThanOrEqualTo.swift
[99/107] Compiling Dflat SQLiteMod.swift
[100/107] Compiling Dflat SQLiteNot.swift
[101/107] Emitting module Dflat
/host/spi-builder-workspace/src/Workspace.swift:211:21: warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
209 |     self.rawValue = rawValue
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
    |                     |- warning: static property 'truncate' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'truncate' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
213 | }
/host/spi-builder-workspace/src/Workspace.swift:212:21: warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
204 | }
205 |
206 | public struct WorkspaceShutdownFlag: OptionSet {
    |               `- note: consider making struct 'WorkspaceShutdownFlag' conform to the 'Sendable' protocol
207 |   public let rawValue: Int
208 |   public init(rawValue: Int) {
    :
210 |   }
211 |   public static let truncate = WorkspaceShutdownFlag(rawValue: 1 << 0)
212 |   public static let vacuum = WorkspaceShutdownFlag(rawValue: 2 << 0)
    |                     |- warning: static property 'vacuum' is not concurrency-safe because non-'Sendable' type 'WorkspaceShutdownFlag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'vacuum' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
213 | }
214 |
/host/spi-builder-workspace/src/exprs/Value.swift:5:1: warning: extension declares a conformance of imported type 'Bool' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 3 | public protocol DflatFriendlyValue: Comparable, Hashable {}
 4 |
 5 | extension Bool: Comparable {
   | |- warning: extension declares a conformance of imported type 'Bool' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 6 |   @inlinable
 7 |   public static func < (lhs: Bool, rhs: Bool) -> Bool {
[102/108] Wrapping AST for Dflat for debugging
[103/108] Write Objects.LinkFileList
[104/108] Archiving libDflat.a
[106/129] Compiling SQLiteDflat SQLiteTableState.swift
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:6:1: warning: extension declares a conformance of imported type 'Bool' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 4 | // MARK - Implement binding for SQLite.
 5 |
 6 | extension Bool: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Bool' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
 8 |     sqlite3_bind_int(query, parameterId, self ? 1 : 0)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:11:1: warning: extension declares a conformance of imported type 'Int8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 9 |   }
10 | }
11 | extension Int8: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
13 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:16:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
14 |   }
15 | }
16 | extension UInt8: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
18 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:21:1: warning: extension declares a conformance of imported type 'Int16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
19 |   }
20 | }
21 | extension Int16: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
22 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
23 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:26:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
24 |   }
25 | }
26 | extension UInt16: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
27 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
28 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:31:1: warning: extension declares a conformance of imported type 'Int32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
29 |   }
30 | }
31 | extension Int32: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
33 |     sqlite3_bind_int(query, parameterId, self)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:36:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
34 |   }
35 | }
36 | extension UInt32: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
37 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
38 |     sqlite3_bind_int(query, parameterId, Int32(bitPattern: self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:41:1: warning: extension declares a conformance of imported type 'Int64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
39 |   }
40 | }
41 | extension Int64: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
43 |     sqlite3_bind_int64(query, parameterId, self)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:46:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
44 |   }
45 | }
46 | extension UInt64: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
47 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
48 |     sqlite3_bind_int64(query, parameterId, Int64(bitPattern: self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
49 |   }
50 | }
51 | extension Float: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Float' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
52 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
53 |     sqlite3_bind_double(query, parameterId, Double(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:56:1: warning: extension declares a conformance of imported type 'Double' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
54 |   }
55 | }
56 | extension Double: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Double' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
57 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
58 |     sqlite3_bind_double(query, parameterId, self)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:61:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
59 |   }
60 | }
61 | extension String: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
62 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
63 |     // This is not ideal, but there isn't a good way to guarentee life-cycle of the String from Swift.
[107/129] Compiling SQLiteDflat SQLiteTransactionContext.swift
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:6:1: warning: extension declares a conformance of imported type 'Bool' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 4 | // MARK - Implement binding for SQLite.
 5 |
 6 | extension Bool: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Bool' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
 8 |     sqlite3_bind_int(query, parameterId, self ? 1 : 0)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:11:1: warning: extension declares a conformance of imported type 'Int8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 9 |   }
10 | }
11 | extension Int8: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
13 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:16:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
14 |   }
15 | }
16 | extension UInt8: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
18 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:21:1: warning: extension declares a conformance of imported type 'Int16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
19 |   }
20 | }
21 | extension Int16: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
22 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
23 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:26:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
24 |   }
25 | }
26 | extension UInt16: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
27 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
28 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:31:1: warning: extension declares a conformance of imported type 'Int32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
29 |   }
30 | }
31 | extension Int32: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
33 |     sqlite3_bind_int(query, parameterId, self)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:36:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
34 |   }
35 | }
36 | extension UInt32: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
37 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
38 |     sqlite3_bind_int(query, parameterId, Int32(bitPattern: self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:41:1: warning: extension declares a conformance of imported type 'Int64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
39 |   }
40 | }
41 | extension Int64: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
43 |     sqlite3_bind_int64(query, parameterId, self)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:46:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
44 |   }
45 | }
46 | extension UInt64: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
47 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
48 |     sqlite3_bind_int64(query, parameterId, Int64(bitPattern: self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
49 |   }
50 | }
51 | extension Float: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Float' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
52 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
53 |     sqlite3_bind_double(query, parameterId, Double(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:56:1: warning: extension declares a conformance of imported type 'Double' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
54 |   }
55 | }
56 | extension Double: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Double' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
57 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
58 |     sqlite3_bind_double(query, parameterId, self)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:61:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
59 |   }
60 | }
61 | extension String: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
62 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
63 |     // This is not ideal, but there isn't a good way to guarentee life-cycle of the String from Swift.
[108/129] Compiling SQLiteDflat SQLiteValue.swift
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:6:1: warning: extension declares a conformance of imported type 'Bool' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 4 | // MARK - Implement binding for SQLite.
 5 |
 6 | extension Bool: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Bool' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
 8 |     sqlite3_bind_int(query, parameterId, self ? 1 : 0)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:11:1: warning: extension declares a conformance of imported type 'Int8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 9 |   }
10 | }
11 | extension Int8: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
13 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:16:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
14 |   }
15 | }
16 | extension UInt8: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
18 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:21:1: warning: extension declares a conformance of imported type 'Int16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
19 |   }
20 | }
21 | extension Int16: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
22 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
23 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:26:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
24 |   }
25 | }
26 | extension UInt16: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
27 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
28 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:31:1: warning: extension declares a conformance of imported type 'Int32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
29 |   }
30 | }
31 | extension Int32: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
33 |     sqlite3_bind_int(query, parameterId, self)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:36:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
34 |   }
35 | }
36 | extension UInt32: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
37 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
38 |     sqlite3_bind_int(query, parameterId, Int32(bitPattern: self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:41:1: warning: extension declares a conformance of imported type 'Int64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
39 |   }
40 | }
41 | extension Int64: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
43 |     sqlite3_bind_int64(query, parameterId, self)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:46:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
44 |   }
45 | }
46 | extension UInt64: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
47 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
48 |     sqlite3_bind_int64(query, parameterId, Int64(bitPattern: self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
49 |   }
50 | }
51 | extension Float: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Float' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
52 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
53 |     sqlite3_bind_double(query, parameterId, Double(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:56:1: warning: extension declares a conformance of imported type 'Double' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
54 |   }
55 | }
56 | extension Double: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Double' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
57 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
58 |     sqlite3_bind_double(query, parameterId, self)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:61:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
59 |   }
60 | }
61 | extension String: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
62 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
63 |     // This is not ideal, but there isn't a good way to guarentee life-cycle of the String from Swift.
[109/131] Compiling SQLiteDflat OSShim.swift
[110/131] Compiling SQLiteDflat SQLiteAtom.swift
[111/131] Compiling SQLiteDflat SQLiteConnection.swift
[112/131] Compiling SQLiteDflat dict_data_model_generated.swift
[113/131] Compiling SQLiteDflat dict_generated.swift
[114/131] Compiling SQLiteDflat SQLiteConnectionPool.swift
[115/131] Compiling SQLiteDflat SQLiteExpr.swift
[116/131] Compiling SQLiteDflat SQLiteFetchedResult.swift
[117/131] Emitting module SQLiteDflat
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:6:1: warning: extension declares a conformance of imported type 'Bool' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 4 | // MARK - Implement binding for SQLite.
 5 |
 6 | extension Bool: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Bool' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
 8 |     sqlite3_bind_int(query, parameterId, self ? 1 : 0)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:11:1: warning: extension declares a conformance of imported type 'Int8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 9 |   }
10 | }
11 | extension Int8: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
13 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:16:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
14 |   }
15 | }
16 | extension UInt8: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
18 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:21:1: warning: extension declares a conformance of imported type 'Int16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
19 |   }
20 | }
21 | extension Int16: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
22 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
23 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:26:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
24 |   }
25 | }
26 | extension UInt16: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
27 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
28 |     sqlite3_bind_int(query, parameterId, Int32(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:31:1: warning: extension declares a conformance of imported type 'Int32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
29 |   }
30 | }
31 | extension Int32: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
33 |     sqlite3_bind_int(query, parameterId, self)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:36:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
34 |   }
35 | }
36 | extension UInt32: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
37 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
38 |     sqlite3_bind_int(query, parameterId, Int32(bitPattern: self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:41:1: warning: extension declares a conformance of imported type 'Int64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
39 |   }
40 | }
41 | extension Int64: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Int64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
43 |     sqlite3_bind_int64(query, parameterId, self)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:46:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
44 |   }
45 | }
46 | extension UInt64: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
47 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
48 |     sqlite3_bind_int64(query, parameterId, Int64(bitPattern: self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
49 |   }
50 | }
51 | extension Float: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Float' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
52 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
53 |     sqlite3_bind_double(query, parameterId, Double(self))
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:56:1: warning: extension declares a conformance of imported type 'Double' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
54 |   }
55 | }
56 | extension Double: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'Double' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
57 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
58 |     sqlite3_bind_double(query, parameterId, self)
/host/spi-builder-workspace/src/sqlite/SQLiteValue.swift:61:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
59 |   }
60 | }
61 | extension String: SQLiteValue {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'SQLiteValue', 'SQLiteBinding'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
62 |   public func bindSQLite(_ query: OpaquePointer, parameterId: Int32) {
63 |     // This is not ideal, but there isn't a good way to guarentee life-cycle of the String from Swift.
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:13:21: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |     return or0.key
 12 |   }
 13 |   public static let key: FieldExpr<String, DictItem> = FieldExpr(
    |                     `- warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |     name: "__pk0", primaryKey: true, hasIndex: false, tableReader: _tr__f4, objectReader: _or__f4)
 15 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  1 | import Dflat
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  2 | import FlatBuffers
  3 |
    :
 11 |     return or0.key
 12 |   }
 13 |   public static let key: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- note: annotate 'key' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     name: "__pk0", primaryKey: true, hasIndex: false, tableReader: _tr__f4, objectReader: _or__f4)
 15 |
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:23:21: warning: static property 'namespace' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |     return or0.namespace
 22 |   }
 23 |   public static let namespace: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- warning: static property 'namespace' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'namespace' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     name: "__pk1", primaryKey: true, hasIndex: false, tableReader: _tr__f6, objectReader: _or__f6)
 25 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:35:21: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |     return s
 34 |   }
 35 |   public static let version: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'version' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     name: "f8", primaryKey: false, hasIndex: false, tableReader: _tr__f8, objectReader: _or__f8)
 37 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:45:21: warning: static property 'valueType' is not concurrency-safe because non-'Sendable' type 'FieldExpr<ValueType, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 43 |     return or0.valueType
 44 |   }
 45 |   public static let valueType: FieldExpr<ValueType, DictItem> = FieldExpr(
    |                     |- warning: static property 'valueType' is not concurrency-safe because non-'Sendable' type 'FieldExpr<ValueType, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'valueType' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     name: "f10", primaryKey: false, hasIndex: false, tableReader: _tr__f10, objectReader: _or__f10)
 47 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:55:21: warning: static property 'boolValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Bool, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 53 |     return or0.boolValue
 54 |   }
 55 |   public static let boolValue: FieldExpr<Bool, DictItem> = FieldExpr(
    |                     |- warning: static property 'boolValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Bool, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'boolValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     name: "f12", primaryKey: false, hasIndex: false, tableReader: _tr__f12, objectReader: _or__f12)
 57 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:65:21: warning: static property 'longValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Int64, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 63 |     return or0.longValue
 64 |   }
 65 |   public static let longValue: FieldExpr<Int64, DictItem> = FieldExpr(
    |                     |- warning: static property 'longValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Int64, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'longValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |     name: "f14", primaryKey: false, hasIndex: false, tableReader: _tr__f14, objectReader: _or__f14)
 67 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:75:21: warning: static property 'unsignedLongValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<UInt64, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 73 |     return or0.unsignedLongValue
 74 |   }
 75 |   public static let unsignedLongValue: FieldExpr<UInt64, DictItem> = FieldExpr(
    |                     |- warning: static property 'unsignedLongValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<UInt64, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'unsignedLongValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 |     name: "f16", primaryKey: false, hasIndex: false, tableReader: _tr__f16, objectReader: _or__f16)
 77 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:85:21: warning: static property 'floatValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Float32, DictItem>' (aka 'FieldExpr<Float, DictItem>') may have shared mutable state; this is an error in the Swift 6 language mode
 83 |     return or0.floatValue
 84 |   }
 85 |   public static let floatValue: FieldExpr<Float32, DictItem> = FieldExpr(
    |                     |- warning: static property 'floatValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Float32, DictItem>' (aka 'FieldExpr<Float, DictItem>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'floatValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 86 |     name: "f18", primaryKey: false, hasIndex: false, tableReader: _tr__f18, objectReader: _or__f18)
 87 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:95:21: warning: static property 'doubleValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Double, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 93 |     return or0.doubleValue
 94 |   }
 95 |   public static let doubleValue: FieldExpr<Double, DictItem> = FieldExpr(
    |                     |- warning: static property 'doubleValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Double, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'doubleValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |     name: "f20", primaryKey: false, hasIndex: false, tableReader: _tr__f20, objectReader: _or__f20)
 97 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:107:21: warning: static property 'stringValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
105 |     return s
106 |   }
107 |   public static let stringValue: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- warning: static property 'stringValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'stringValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 |     name: "f22", primaryKey: false, hasIndex: false, tableReader: _tr__f22, objectReader: _or__f22)
109 | }
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
[118/131] Compiling SQLiteDflat SQLiteObjectRepository.swift
[119/131] Compiling SQLiteDflat SQLitePersistenceToolbox.swift
[120/131] Compiling SQLiteDflat SQLitePublisher.swift
[121/131] Compiling SQLiteDflat SQLiteQueryBuilder.swift
[122/131] Compiling SQLiteDflat SQLiteResultPublisher.swift
[123/131] Compiling SQLiteDflat SQLiteTableSpace.swift
[124/131] Compiling SQLiteDflat dict_mutating_generated.swift
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:13:21: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |     return or0.key
 12 |   }
 13 |   public static let key: FieldExpr<String, DictItem> = FieldExpr(
    |                     `- warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |     name: "__pk0", primaryKey: true, hasIndex: false, tableReader: _tr__f4, objectReader: _or__f4)
 15 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  1 | import Dflat
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  2 | import FlatBuffers
  3 |
    :
 11 |     return or0.key
 12 |   }
 13 |   public static let key: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- note: annotate 'key' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     name: "__pk0", primaryKey: true, hasIndex: false, tableReader: _tr__f4, objectReader: _or__f4)
 15 |
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:23:21: warning: static property 'namespace' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |     return or0.namespace
 22 |   }
 23 |   public static let namespace: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- warning: static property 'namespace' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'namespace' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     name: "__pk1", primaryKey: true, hasIndex: false, tableReader: _tr__f6, objectReader: _or__f6)
 25 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:35:21: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |     return s
 34 |   }
 35 |   public static let version: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'version' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     name: "f8", primaryKey: false, hasIndex: false, tableReader: _tr__f8, objectReader: _or__f8)
 37 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:45:21: warning: static property 'valueType' is not concurrency-safe because non-'Sendable' type 'FieldExpr<ValueType, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 43 |     return or0.valueType
 44 |   }
 45 |   public static let valueType: FieldExpr<ValueType, DictItem> = FieldExpr(
    |                     |- warning: static property 'valueType' is not concurrency-safe because non-'Sendable' type 'FieldExpr<ValueType, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'valueType' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     name: "f10", primaryKey: false, hasIndex: false, tableReader: _tr__f10, objectReader: _or__f10)
 47 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:55:21: warning: static property 'boolValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Bool, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 53 |     return or0.boolValue
 54 |   }
 55 |   public static let boolValue: FieldExpr<Bool, DictItem> = FieldExpr(
    |                     |- warning: static property 'boolValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Bool, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'boolValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     name: "f12", primaryKey: false, hasIndex: false, tableReader: _tr__f12, objectReader: _or__f12)
 57 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:65:21: warning: static property 'longValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Int64, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 63 |     return or0.longValue
 64 |   }
 65 |   public static let longValue: FieldExpr<Int64, DictItem> = FieldExpr(
    |                     |- warning: static property 'longValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Int64, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'longValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |     name: "f14", primaryKey: false, hasIndex: false, tableReader: _tr__f14, objectReader: _or__f14)
 67 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:75:21: warning: static property 'unsignedLongValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<UInt64, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 73 |     return or0.unsignedLongValue
 74 |   }
 75 |   public static let unsignedLongValue: FieldExpr<UInt64, DictItem> = FieldExpr(
    |                     |- warning: static property 'unsignedLongValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<UInt64, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'unsignedLongValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 |     name: "f16", primaryKey: false, hasIndex: false, tableReader: _tr__f16, objectReader: _or__f16)
 77 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:85:21: warning: static property 'floatValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Float32, DictItem>' (aka 'FieldExpr<Float, DictItem>') may have shared mutable state; this is an error in the Swift 6 language mode
 83 |     return or0.floatValue
 84 |   }
 85 |   public static let floatValue: FieldExpr<Float32, DictItem> = FieldExpr(
    |                     |- warning: static property 'floatValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Float32, DictItem>' (aka 'FieldExpr<Float, DictItem>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'floatValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 86 |     name: "f18", primaryKey: false, hasIndex: false, tableReader: _tr__f18, objectReader: _or__f18)
 87 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:95:21: warning: static property 'doubleValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Double, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 93 |     return or0.doubleValue
 94 |   }
 95 |   public static let doubleValue: FieldExpr<Double, DictItem> = FieldExpr(
    |                     |- warning: static property 'doubleValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Double, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'doubleValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |     name: "f20", primaryKey: false, hasIndex: false, tableReader: _tr__f20, objectReader: _or__f20)
 97 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:107:21: warning: static property 'stringValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
105 |     return s
106 |   }
107 |   public static let stringValue: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- warning: static property 'stringValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'stringValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 |     name: "f22", primaryKey: false, hasIndex: false, tableReader: _tr__f22, objectReader: _or__f22)
109 | }
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
[125/131] Compiling SQLiteDflat dict_query_generated.swift
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:13:21: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |     return or0.key
 12 |   }
 13 |   public static let key: FieldExpr<String, DictItem> = FieldExpr(
    |                     `- warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |     name: "__pk0", primaryKey: true, hasIndex: false, tableReader: _tr__f4, objectReader: _or__f4)
 15 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  1 | import Dflat
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  2 | import FlatBuffers
  3 |
    :
 11 |     return or0.key
 12 |   }
 13 |   public static let key: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- note: annotate 'key' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     name: "__pk0", primaryKey: true, hasIndex: false, tableReader: _tr__f4, objectReader: _or__f4)
 15 |
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:23:21: warning: static property 'namespace' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |     return or0.namespace
 22 |   }
 23 |   public static let namespace: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- warning: static property 'namespace' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'namespace' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     name: "__pk1", primaryKey: true, hasIndex: false, tableReader: _tr__f6, objectReader: _or__f6)
 25 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:35:21: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |     return s
 34 |   }
 35 |   public static let version: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'version' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     name: "f8", primaryKey: false, hasIndex: false, tableReader: _tr__f8, objectReader: _or__f8)
 37 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:45:21: warning: static property 'valueType' is not concurrency-safe because non-'Sendable' type 'FieldExpr<ValueType, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 43 |     return or0.valueType
 44 |   }
 45 |   public static let valueType: FieldExpr<ValueType, DictItem> = FieldExpr(
    |                     |- warning: static property 'valueType' is not concurrency-safe because non-'Sendable' type 'FieldExpr<ValueType, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'valueType' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     name: "f10", primaryKey: false, hasIndex: false, tableReader: _tr__f10, objectReader: _or__f10)
 47 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:55:21: warning: static property 'boolValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Bool, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 53 |     return or0.boolValue
 54 |   }
 55 |   public static let boolValue: FieldExpr<Bool, DictItem> = FieldExpr(
    |                     |- warning: static property 'boolValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Bool, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'boolValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     name: "f12", primaryKey: false, hasIndex: false, tableReader: _tr__f12, objectReader: _or__f12)
 57 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:65:21: warning: static property 'longValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Int64, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 63 |     return or0.longValue
 64 |   }
 65 |   public static let longValue: FieldExpr<Int64, DictItem> = FieldExpr(
    |                     |- warning: static property 'longValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Int64, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'longValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |     name: "f14", primaryKey: false, hasIndex: false, tableReader: _tr__f14, objectReader: _or__f14)
 67 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:75:21: warning: static property 'unsignedLongValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<UInt64, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 73 |     return or0.unsignedLongValue
 74 |   }
 75 |   public static let unsignedLongValue: FieldExpr<UInt64, DictItem> = FieldExpr(
    |                     |- warning: static property 'unsignedLongValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<UInt64, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'unsignedLongValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 |     name: "f16", primaryKey: false, hasIndex: false, tableReader: _tr__f16, objectReader: _or__f16)
 77 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:85:21: warning: static property 'floatValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Float32, DictItem>' (aka 'FieldExpr<Float, DictItem>') may have shared mutable state; this is an error in the Swift 6 language mode
 83 |     return or0.floatValue
 84 |   }
 85 |   public static let floatValue: FieldExpr<Float32, DictItem> = FieldExpr(
    |                     |- warning: static property 'floatValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Float32, DictItem>' (aka 'FieldExpr<Float, DictItem>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'floatValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 86 |     name: "f18", primaryKey: false, hasIndex: false, tableReader: _tr__f18, objectReader: _or__f18)
 87 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:95:21: warning: static property 'doubleValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Double, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 93 |     return or0.doubleValue
 94 |   }
 95 |   public static let doubleValue: FieldExpr<Double, DictItem> = FieldExpr(
    |                     |- warning: static property 'doubleValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<Double, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'doubleValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |     name: "f20", primaryKey: false, hasIndex: false, tableReader: _tr__f20, objectReader: _or__f20)
 97 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:107:21: warning: static property 'stringValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
105 |     return s
106 |   }
107 |   public static let stringValue: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- warning: static property 'stringValue' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'stringValue' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 |     name: "f22", primaryKey: false, hasIndex: false, tableReader: _tr__f22, objectReader: _or__f22)
109 | }
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
[126/131] Compiling SQLiteDflat SQLiteWorkspace.swift
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:138:11: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
136 |         group.enter()
137 |         tableSpace.queue.async {
138 |           tableSpace.lock()
    |           `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
139 |           tableSpace.shutdown()
140 |           tableSpace.unlock()
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:506:9: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
504 |       // We don't need to prioritize this.
505 |       tableSpace.queue.async {
506 |         tableSpace.lock()
    |         `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
507 |         defer { tableSpace.unlock() }
508 |         // The publisher is manipulated after acquiring the lock.
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:507:17: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
505 |       tableSpace.queue.async {
506 |         tableSpace.lock()
507 |         defer { tableSpace.unlock() }
    |                 `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
508 |         // The publisher is manipulated after acquiring the lock.
509 |         guard let resultPublisher = tableSpace.resultPublisher else { return }
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:517:9: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
515 |       // We don't need to prioritize this.
516 |       tableSpace.queue.async {
517 |         tableSpace.lock()
    |         `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
518 |         defer { tableSpace.unlock() }
519 |         guard let resultPublisher = tableSpace.resultPublisher else { return }
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:518:17: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
516 |       tableSpace.queue.async {
517 |         tableSpace.lock()
518 |         defer { tableSpace.unlock() }
    |                 `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
519 |         guard let resultPublisher = tableSpace.resultPublisher else { return }
520 |         resultPublisher.cancel(object: rowid, identifier: identifier)
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:568:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
566 |         }
567 |         continuation.onTermination = { @Sendable _ in
568 |           cancellable.cancel()
    |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
569 |         }
570 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  1 | import Atomics
  2 | import Dflat
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  3 | import Dispatch
  4 | import FlatBuffers
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:583:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
581 |         }
582 |         continuation.onTermination = { @Sendable _ in
583 |           cancellable.cancel()
    |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
584 |         }
585 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:779:24: warning: capture of 'self' with non-sendable type 'SQLiteWorkspace?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  7 | import _SQLiteDflatOSShim
  8 |
  9 | public final class SQLiteWorkspace: Workspace {
    |                    `- note: class 'SQLiteWorkspace' does not conform to the 'Sendable' protocol
 10 |
 11 |   public enum FileProtectionLevel: Int32 {
    :
777 |     // We don't need to bump the priority for this.
778 |     tableSpace.queue.async { [weak self] in
779 |       guard let self = self else { return }
    |                        `- warning: capture of 'self' with non-sendable type 'SQLiteWorkspace?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
780 |       guard let connection = tableSpace.connect({ self.newConnection() }) else { return }
781 |       let SQLiteElement = Element.self as! SQLiteAtom.Type
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:780:30: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
778 |     tableSpace.queue.async { [weak self] in
779 |       guard let self = self else { return }
780 |       guard let connection = tableSpace.connect({ self.newConnection() }) else { return }
    |                              `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
781 |       let SQLiteElement = Element.self as! SQLiteAtom.Type
782 |       let toolbox = SQLitePersistenceToolbox(connection: connection)
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:792:48: warning: capture of 'fields' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
766 |   }
767 |
768 |   func beginRebuildIndex<Element: Atom, S: Sequence>(_ ofType: Element.Type, fields: S)
    |                                         `- note: consider making generic parameter 'S' conform to the 'Sendable' protocol
769 |   where S.Element == String {
770 |     guard
    :
790 |         tableSpace.state.tableCreated.insert(objectType)
791 |       }
792 |       let indexSurvey = connection.indexSurvey(fields, table: table)
    |                                                `- warning: capture of 'fields' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
793 |       // Obtain a exclusive lock, see discussions in SQLiteTransactionContext for why.
794 |       let begin = connection.prepareStaticStatement("BEGIN IMMEDIATE")
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:786:15: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
784 |       // It is OK to create connection, etc. before acquiring the lock as long as we don't do mutation.
785 |       tableSpace.lock()
786 |       defer { tableSpace.unlock() }
    |               `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
787 |       // Make sure the table exists before we query.
788 |       if !tableSpace.state.tableCreated.contains(objectType) {
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:821:11: warning: capture of 'self' with non-sendable type 'SQLiteWorkspace?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  7 | import _SQLiteDflatOSShim
  8 |
  9 | public final class SQLiteWorkspace: Workspace {
    |                    `- note: class 'SQLiteWorkspace' does not conform to the 'Sendable' protocol
 10 |
 11 |   public enum FileProtectionLevel: Int32 {
    :
819 |         tableSpace.queue.asyncAfter(deadline: .now() + Self.RebuildIndexDelayOnDiskFull) {
820 |           [weak self] in
821 |           self?.beginRebuildIndex(Element.self, fields: fields)
    |           `- warning: capture of 'self' with non-sendable type 'SQLiteWorkspace?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
822 |         }
823 |         return
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:821:57: warning: capture of 'fields' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
766 |   }
767 |
768 |   func beginRebuildIndex<Element: Atom, S: Sequence>(_ ofType: Element.Type, fields: S)
    |                                         `- note: consider making generic parameter 'S' conform to the 'Sendable' protocol
769 |   where S.Element == String {
770 |     guard
    :
819 |         tableSpace.queue.asyncAfter(deadline: .now() + Self.RebuildIndexDelayOnDiskFull) {
820 |           [weak self] in
821 |           self?.beginRebuildIndex(Element.self, fields: fields)
    |                                                         `- warning: capture of 'fields' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
822 |         }
823 |         return
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:21:13: warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)'
  19 |       self.namespace = namespace
  20 |       locks = UnsafeMutablePointer.allocate(capacity: Self.size)
  21 |       locks.assign(repeating: os_unfair_lock(), count: Self.size)
     |             |- warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)'
     |             `- note: use 'update(repeating:count:)' instead
  22 |       dictionaries = Array(repeating: [String: Any](), count: Self.size)
  23 |       subscriptions = Array(
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:13:21: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |     return or0.key
 12 |   }
 13 |   public static let key: FieldExpr<String, DictItem> = FieldExpr(
    |                     `- warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |     name: "__pk0", primaryKey: true, hasIndex: false, tableReader: _tr__f4, objectReader: _or__f4)
 15 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  1 | import Dflat
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  2 | import FlatBuffers
  3 |
    :
 11 |     return or0.key
 12 |   }
 13 |   public static let key: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- note: annotate 'key' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     name: "__pk0", primaryKey: true, hasIndex: false, tableReader: _tr__f4, objectReader: _or__f4)
 15 |
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:23:21: warning: static property 'namespace' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |     return or0.namespace
 22 |   }
 23 |   public static let namespace: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- warning: static property 'namespace' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'namespace' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     name: "__pk1", primaryKey: true, hasIndex: false, tableReader: _tr__f6, objectReader: _or__f6)
 25 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1155:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1153 |         }
1154 |         continuation.onTermination = { @Sendable _ in
1155 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1156 |         }
1157 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
   1 | import Atomics
   2 | import Dflat
     | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
   3 | import Dispatch
   4 | import FlatBuffers
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1176:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1174 |         }
1175 |         continuation.onTermination = { @Sendable _ in
1176 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1177 |         }
1178 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1196:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1194 |         }
1195 |         continuation.onTermination = { @Sendable _ in
1196 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1197 |         }
1198 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1216:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1214 |         }
1215 |         continuation.onTermination = { @Sendable _ in
1216 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1217 |         }
1218 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1236:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1234 |         }
1235 |         continuation.onTermination = { @Sendable _ in
1236 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1237 |         }
1238 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1257:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1255 |         }
1256 |         continuation.onTermination = { @Sendable _ in
1257 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1258 |         }
1259 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1278:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1276 |         }
1277 |         continuation.onTermination = { @Sendable _ in
1278 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1279 |         }
1280 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1299:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1297 |         }
1298 |         continuation.onTermination = { @Sendable _ in
1299 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1300 |         }
1301 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:564:26: warning: sending 'object' risks causing data races; this is an error in the Swift 6 language mode
562 |             continuation.finish()
563 |           case .updated(let object):
564 |             continuation.yield(object)
    |                          |- warning: sending 'object' risks causing data races; this is an error in the Swift 6 language mode
    |                          `- note: task-isolated 'object' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
565 |           }
566 |         }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:580:24: warning: sending 'fetchedResult' risks causing data races; this is an error in the Swift 6 language mode
578 |       AsyncStream(bufferingPolicy: bufferingPolicy) { continuation in
579 |         let cancellable = self.subscribe(fetchedResult: fetchedResult) { fetchedResult in
580 |           continuation.yield(fetchedResult)
    |                        |- warning: sending 'fetchedResult' risks causing data races; this is an error in the Swift 6 language mode
    |                        `- note: task-isolated 'fetchedResult' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
581 |         }
582 |         continuation.onTermination = { @Sendable _ in
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1149:26: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
1147 |             continuation.yield(nil)
1148 |           case .initial(let value):
1149 |             continuation.yield(value)
     |                          |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
     |                          `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
1150 |           case .updated(let value):
1151 |             continuation.yield(value)
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1151:26: warning: task-isolated value of type 'Element' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
1149 |             continuation.yield(value)
1150 |           case .updated(let value):
1151 |             continuation.yield(value)
     |                          `- warning: task-isolated value of type 'Element' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
1152 |           }
1153 |         }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1170:26: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
1168 |             continuation.yield(nil)
1169 |           case .initial(let value):
1170 |             continuation.yield(value)
     |                          |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
     |                          `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
1171 |           case .updated(let value):
1172 |             continuation.yield(value)
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1172:26: warning: task-isolated value of type 'Element' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
1170 |             continuation.yield(value)
1171 |           case .updated(let value):
1172 |             continuation.yield(value)
     |                          `- warning: task-isolated value of type 'Element' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
1173 |           }
1174 |         }
[127/131] Compiling SQLiteDflat SQLiteWorkspaceDictionary.swift
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:138:11: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
136 |         group.enter()
137 |         tableSpace.queue.async {
138 |           tableSpace.lock()
    |           `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
139 |           tableSpace.shutdown()
140 |           tableSpace.unlock()
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:506:9: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
504 |       // We don't need to prioritize this.
505 |       tableSpace.queue.async {
506 |         tableSpace.lock()
    |         `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
507 |         defer { tableSpace.unlock() }
508 |         // The publisher is manipulated after acquiring the lock.
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:507:17: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
505 |       tableSpace.queue.async {
506 |         tableSpace.lock()
507 |         defer { tableSpace.unlock() }
    |                 `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
508 |         // The publisher is manipulated after acquiring the lock.
509 |         guard let resultPublisher = tableSpace.resultPublisher else { return }
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:517:9: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
515 |       // We don't need to prioritize this.
516 |       tableSpace.queue.async {
517 |         tableSpace.lock()
    |         `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
518 |         defer { tableSpace.unlock() }
519 |         guard let resultPublisher = tableSpace.resultPublisher else { return }
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:518:17: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
516 |       tableSpace.queue.async {
517 |         tableSpace.lock()
518 |         defer { tableSpace.unlock() }
    |                 `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
519 |         guard let resultPublisher = tableSpace.resultPublisher else { return }
520 |         resultPublisher.cancel(object: rowid, identifier: identifier)
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:568:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
566 |         }
567 |         continuation.onTermination = { @Sendable _ in
568 |           cancellable.cancel()
    |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
569 |         }
570 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  1 | import Atomics
  2 | import Dflat
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  3 | import Dispatch
  4 | import FlatBuffers
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:583:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
581 |         }
582 |         continuation.onTermination = { @Sendable _ in
583 |           cancellable.cancel()
    |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
584 |         }
585 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:779:24: warning: capture of 'self' with non-sendable type 'SQLiteWorkspace?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  7 | import _SQLiteDflatOSShim
  8 |
  9 | public final class SQLiteWorkspace: Workspace {
    |                    `- note: class 'SQLiteWorkspace' does not conform to the 'Sendable' protocol
 10 |
 11 |   public enum FileProtectionLevel: Int32 {
    :
777 |     // We don't need to bump the priority for this.
778 |     tableSpace.queue.async { [weak self] in
779 |       guard let self = self else { return }
    |                        `- warning: capture of 'self' with non-sendable type 'SQLiteWorkspace?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
780 |       guard let connection = tableSpace.connect({ self.newConnection() }) else { return }
781 |       let SQLiteElement = Element.self as! SQLiteAtom.Type
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:780:30: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
778 |     tableSpace.queue.async { [weak self] in
779 |       guard let self = self else { return }
780 |       guard let connection = tableSpace.connect({ self.newConnection() }) else { return }
    |                              `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
781 |       let SQLiteElement = Element.self as! SQLiteAtom.Type
782 |       let toolbox = SQLitePersistenceToolbox(connection: connection)
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:792:48: warning: capture of 'fields' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
766 |   }
767 |
768 |   func beginRebuildIndex<Element: Atom, S: Sequence>(_ ofType: Element.Type, fields: S)
    |                                         `- note: consider making generic parameter 'S' conform to the 'Sendable' protocol
769 |   where S.Element == String {
770 |     guard
    :
790 |         tableSpace.state.tableCreated.insert(objectType)
791 |       }
792 |       let indexSurvey = connection.indexSurvey(fields, table: table)
    |                                                `- warning: capture of 'fields' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
793 |       // Obtain a exclusive lock, see discussions in SQLiteTransactionContext for why.
794 |       let begin = connection.prepareStaticStatement("BEGIN IMMEDIATE")
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:786:15: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
784 |       // It is OK to create connection, etc. before acquiring the lock as long as we don't do mutation.
785 |       tableSpace.lock()
786 |       defer { tableSpace.unlock() }
    |               `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
787 |       // Make sure the table exists before we query.
788 |       if !tableSpace.state.tableCreated.contains(objectType) {
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:821:11: warning: capture of 'self' with non-sendable type 'SQLiteWorkspace?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  7 | import _SQLiteDflatOSShim
  8 |
  9 | public final class SQLiteWorkspace: Workspace {
    |                    `- note: class 'SQLiteWorkspace' does not conform to the 'Sendable' protocol
 10 |
 11 |   public enum FileProtectionLevel: Int32 {
    :
819 |         tableSpace.queue.asyncAfter(deadline: .now() + Self.RebuildIndexDelayOnDiskFull) {
820 |           [weak self] in
821 |           self?.beginRebuildIndex(Element.self, fields: fields)
    |           `- warning: capture of 'self' with non-sendable type 'SQLiteWorkspace?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
822 |         }
823 |         return
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:821:57: warning: capture of 'fields' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
766 |   }
767 |
768 |   func beginRebuildIndex<Element: Atom, S: Sequence>(_ ofType: Element.Type, fields: S)
    |                                         `- note: consider making generic parameter 'S' conform to the 'Sendable' protocol
769 |   where S.Element == String {
770 |     guard
    :
819 |         tableSpace.queue.asyncAfter(deadline: .now() + Self.RebuildIndexDelayOnDiskFull) {
820 |           [weak self] in
821 |           self?.beginRebuildIndex(Element.self, fields: fields)
    |                                                         `- warning: capture of 'fields' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
822 |         }
823 |         return
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:21:13: warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)'
  19 |       self.namespace = namespace
  20 |       locks = UnsafeMutablePointer.allocate(capacity: Self.size)
  21 |       locks.assign(repeating: os_unfair_lock(), count: Self.size)
     |             |- warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)'
     |             `- note: use 'update(repeating:count:)' instead
  22 |       dictionaries = Array(repeating: [String: Any](), count: Self.size)
  23 |       subscriptions = Array(
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:13:21: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |     return or0.key
 12 |   }
 13 |   public static let key: FieldExpr<String, DictItem> = FieldExpr(
    |                     `- warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |     name: "__pk0", primaryKey: true, hasIndex: false, tableReader: _tr__f4, objectReader: _or__f4)
 15 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  1 | import Dflat
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  2 | import FlatBuffers
  3 |
    :
 11 |     return or0.key
 12 |   }
 13 |   public static let key: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- note: annotate 'key' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     name: "__pk0", primaryKey: true, hasIndex: false, tableReader: _tr__f4, objectReader: _or__f4)
 15 |
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:23:21: warning: static property 'namespace' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |     return or0.namespace
 22 |   }
 23 |   public static let namespace: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- warning: static property 'namespace' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'namespace' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     name: "__pk1", primaryKey: true, hasIndex: false, tableReader: _tr__f6, objectReader: _or__f6)
 25 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1155:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1153 |         }
1154 |         continuation.onTermination = { @Sendable _ in
1155 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1156 |         }
1157 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
   1 | import Atomics
   2 | import Dflat
     | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
   3 | import Dispatch
   4 | import FlatBuffers
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1176:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1174 |         }
1175 |         continuation.onTermination = { @Sendable _ in
1176 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1177 |         }
1178 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1196:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1194 |         }
1195 |         continuation.onTermination = { @Sendable _ in
1196 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1197 |         }
1198 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1216:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1214 |         }
1215 |         continuation.onTermination = { @Sendable _ in
1216 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1217 |         }
1218 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1236:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1234 |         }
1235 |         continuation.onTermination = { @Sendable _ in
1236 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1237 |         }
1238 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1257:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1255 |         }
1256 |         continuation.onTermination = { @Sendable _ in
1257 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1258 |         }
1259 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1278:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1276 |         }
1277 |         continuation.onTermination = { @Sendable _ in
1278 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1279 |         }
1280 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1299:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1297 |         }
1298 |         continuation.onTermination = { @Sendable _ in
1299 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1300 |         }
1301 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:564:26: warning: sending 'object' risks causing data races; this is an error in the Swift 6 language mode
562 |             continuation.finish()
563 |           case .updated(let object):
564 |             continuation.yield(object)
    |                          |- warning: sending 'object' risks causing data races; this is an error in the Swift 6 language mode
    |                          `- note: task-isolated 'object' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
565 |           }
566 |         }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:580:24: warning: sending 'fetchedResult' risks causing data races; this is an error in the Swift 6 language mode
578 |       AsyncStream(bufferingPolicy: bufferingPolicy) { continuation in
579 |         let cancellable = self.subscribe(fetchedResult: fetchedResult) { fetchedResult in
580 |           continuation.yield(fetchedResult)
    |                        |- warning: sending 'fetchedResult' risks causing data races; this is an error in the Swift 6 language mode
    |                        `- note: task-isolated 'fetchedResult' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
581 |         }
582 |         continuation.onTermination = { @Sendable _ in
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1149:26: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
1147 |             continuation.yield(nil)
1148 |           case .initial(let value):
1149 |             continuation.yield(value)
     |                          |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
     |                          `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
1150 |           case .updated(let value):
1151 |             continuation.yield(value)
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1151:26: warning: task-isolated value of type 'Element' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
1149 |             continuation.yield(value)
1150 |           case .updated(let value):
1151 |             continuation.yield(value)
     |                          `- warning: task-isolated value of type 'Element' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
1152 |           }
1153 |         }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1170:26: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
1168 |             continuation.yield(nil)
1169 |           case .initial(let value):
1170 |             continuation.yield(value)
     |                          |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
     |                          `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
1171 |           case .updated(let value):
1172 |             continuation.yield(value)
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1172:26: warning: task-isolated value of type 'Element' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
1170 |             continuation.yield(value)
1171 |           case .updated(let value):
1172 |             continuation.yield(value)
     |                          `- warning: task-isolated value of type 'Element' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
1173 |           }
1174 |         }
[128/131] Compiling SQLiteDflat SQLiteWorkspaceState.swift
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:138:11: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
136 |         group.enter()
137 |         tableSpace.queue.async {
138 |           tableSpace.lock()
    |           `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
139 |           tableSpace.shutdown()
140 |           tableSpace.unlock()
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:506:9: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
504 |       // We don't need to prioritize this.
505 |       tableSpace.queue.async {
506 |         tableSpace.lock()
    |         `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
507 |         defer { tableSpace.unlock() }
508 |         // The publisher is manipulated after acquiring the lock.
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:507:17: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
505 |       tableSpace.queue.async {
506 |         tableSpace.lock()
507 |         defer { tableSpace.unlock() }
    |                 `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
508 |         // The publisher is manipulated after acquiring the lock.
509 |         guard let resultPublisher = tableSpace.resultPublisher else { return }
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:517:9: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
515 |       // We don't need to prioritize this.
516 |       tableSpace.queue.async {
517 |         tableSpace.lock()
    |         `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
518 |         defer { tableSpace.unlock() }
519 |         guard let resultPublisher = tableSpace.resultPublisher else { return }
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:518:17: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
516 |       tableSpace.queue.async {
517 |         tableSpace.lock()
518 |         defer { tableSpace.unlock() }
    |                 `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
519 |         guard let resultPublisher = tableSpace.resultPublisher else { return }
520 |         resultPublisher.cancel(object: rowid, identifier: identifier)
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:568:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
566 |         }
567 |         continuation.onTermination = { @Sendable _ in
568 |           cancellable.cancel()
    |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
569 |         }
570 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  1 | import Atomics
  2 | import Dflat
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  3 | import Dispatch
  4 | import FlatBuffers
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:583:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
581 |         }
582 |         continuation.onTermination = { @Sendable _ in
583 |           cancellable.cancel()
    |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
584 |         }
585 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:779:24: warning: capture of 'self' with non-sendable type 'SQLiteWorkspace?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  7 | import _SQLiteDflatOSShim
  8 |
  9 | public final class SQLiteWorkspace: Workspace {
    |                    `- note: class 'SQLiteWorkspace' does not conform to the 'Sendable' protocol
 10 |
 11 |   public enum FileProtectionLevel: Int32 {
    :
777 |     // We don't need to bump the priority for this.
778 |     tableSpace.queue.async { [weak self] in
779 |       guard let self = self else { return }
    |                        `- warning: capture of 'self' with non-sendable type 'SQLiteWorkspace?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
780 |       guard let connection = tableSpace.connect({ self.newConnection() }) else { return }
781 |       let SQLiteElement = Element.self as! SQLiteAtom.Type
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:780:30: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
778 |     tableSpace.queue.async { [weak self] in
779 |       guard let self = self else { return }
780 |       guard let connection = tableSpace.connect({ self.newConnection() }) else { return }
    |                              `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in a `@Sendable` closure; this is an error in the Swift 6 language mode
781 |       let SQLiteElement = Element.self as! SQLiteAtom.Type
782 |       let toolbox = SQLitePersistenceToolbox(connection: connection)
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:792:48: warning: capture of 'fields' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
766 |   }
767 |
768 |   func beginRebuildIndex<Element: Atom, S: Sequence>(_ ofType: Element.Type, fields: S)
    |                                         `- note: consider making generic parameter 'S' conform to the 'Sendable' protocol
769 |   where S.Element == String {
770 |     guard
    :
790 |         tableSpace.state.tableCreated.insert(objectType)
791 |       }
792 |       let indexSurvey = connection.indexSurvey(fields, table: table)
    |                                                `- warning: capture of 'fields' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
793 |       // Obtain a exclusive lock, see discussions in SQLiteTransactionContext for why.
794 |       let begin = connection.prepareStaticStatement("BEGIN IMMEDIATE")
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:786:15: warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
784 |       // It is OK to create connection, etc. before acquiring the lock as long as we don't do mutation.
785 |       tableSpace.lock()
786 |       defer { tableSpace.unlock() }
    |               `- warning: capture of 'tableSpace' with non-sendable type 'any SQLiteTableSpace' in an isolated local function; this is an error in the Swift 6 language mode
787 |       // Make sure the table exists before we query.
788 |       if !tableSpace.state.tableCreated.contains(objectType) {
/host/spi-builder-workspace/src/sqlite/SQLiteTableSpace.swift:3:10: note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 1 | import Dispatch
 2 |
 3 | protocol SQLiteTableSpace: AnyObject {
   |          `- note: protocol 'SQLiteTableSpace' does not conform to the 'Sendable' protocol
 4 |   var queue: DispatchQueue { get }
 5 |   var state: SQLiteTableState { get }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:821:11: warning: capture of 'self' with non-sendable type 'SQLiteWorkspace?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  7 | import _SQLiteDflatOSShim
  8 |
  9 | public final class SQLiteWorkspace: Workspace {
    |                    `- note: class 'SQLiteWorkspace' does not conform to the 'Sendable' protocol
 10 |
 11 |   public enum FileProtectionLevel: Int32 {
    :
819 |         tableSpace.queue.asyncAfter(deadline: .now() + Self.RebuildIndexDelayOnDiskFull) {
820 |           [weak self] in
821 |           self?.beginRebuildIndex(Element.self, fields: fields)
    |           `- warning: capture of 'self' with non-sendable type 'SQLiteWorkspace?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
822 |         }
823 |         return
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:821:57: warning: capture of 'fields' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
766 |   }
767 |
768 |   func beginRebuildIndex<Element: Atom, S: Sequence>(_ ofType: Element.Type, fields: S)
    |                                         `- note: consider making generic parameter 'S' conform to the 'Sendable' protocol
769 |   where S.Element == String {
770 |     guard
    :
819 |         tableSpace.queue.asyncAfter(deadline: .now() + Self.RebuildIndexDelayOnDiskFull) {
820 |           [weak self] in
821 |           self?.beginRebuildIndex(Element.self, fields: fields)
    |                                                         `- warning: capture of 'fields' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
822 |         }
823 |         return
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:21:13: warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)'
  19 |       self.namespace = namespace
  20 |       locks = UnsafeMutablePointer.allocate(capacity: Self.size)
  21 |       locks.assign(repeating: os_unfair_lock(), count: Self.size)
     |             |- warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)'
     |             `- note: use 'update(repeating:count:)' instead
  22 |       dictionaries = Array(repeating: [String: Any](), count: Self.size)
  23 |       subscriptions = Array(
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:13:21: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |     return or0.key
 12 |   }
 13 |   public static let key: FieldExpr<String, DictItem> = FieldExpr(
    |                     `- warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |     name: "__pk0", primaryKey: true, hasIndex: false, tableReader: _tr__f4, objectReader: _or__f4)
 15 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  1 | import Dflat
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
  2 | import FlatBuffers
  3 |
    :
 11 |     return or0.key
 12 |   }
 13 |   public static let key: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- note: annotate 'key' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     name: "__pk0", primaryKey: true, hasIndex: false, tableReader: _tr__f4, objectReader: _or__f4)
 15 |
/host/spi-builder-workspace/src/sqlite/dict/dict_query_generated.swift:23:21: warning: static property 'namespace' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |     return or0.namespace
 22 |   }
 23 |   public static let namespace: FieldExpr<String, DictItem> = FieldExpr(
    |                     |- warning: static property 'namespace' is not concurrency-safe because non-'Sendable' type 'FieldExpr<String, DictItem>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'namespace' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |     name: "__pk1", primaryKey: true, hasIndex: false, tableReader: _tr__f6, objectReader: _or__f6)
 25 |
/host/spi-builder-workspace/src/exprs/Field.swift:102:20: note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
100 | }
101 |
102 | public final class FieldExpr<T, Element>: Expr where T: DflatFriendlyValue, Element: Atom {
    |                    `- note: generic class 'FieldExpr' does not conform to the 'Sendable' protocol
103 |   public typealias ResultType = T
104 |   public typealias Element = Element
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1155:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1153 |         }
1154 |         continuation.onTermination = { @Sendable _ in
1155 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1156 |         }
1157 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
   1 | import Atomics
   2 | import Dflat
     | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dflat'
   3 | import Dispatch
   4 | import FlatBuffers
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1176:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1174 |         }
1175 |         continuation.onTermination = { @Sendable _ in
1176 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1177 |         }
1178 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1196:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1194 |         }
1195 |         continuation.onTermination = { @Sendable _ in
1196 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1197 |         }
1198 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1216:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1214 |         }
1215 |         continuation.onTermination = { @Sendable _ in
1216 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1217 |         }
1218 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1236:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1234 |         }
1235 |         continuation.onTermination = { @Sendable _ in
1236 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1237 |         }
1238 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1257:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1255 |         }
1256 |         continuation.onTermination = { @Sendable _ in
1257 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1258 |         }
1259 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1278:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1276 |         }
1277 |         continuation.onTermination = { @Sendable _ in
1278 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1279 |         }
1280 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1299:11: warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1297 |         }
1298 |         continuation.onTermination = { @Sendable _ in
1299 |           cancellable.cancel()
     |           `- warning: capture of 'cancellable' with non-sendable type 'any WorkspaceSubscription' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1300 |         }
1301 |       }
/host/spi-builder-workspace/src/Workspace.swift:14:17: note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 12 | }
 13 |
 14 | public protocol WorkspaceSubscription {
    |                 `- note: protocol 'WorkspaceSubscription' does not conform to the 'Sendable' protocol
 15 |   /**
 16 |    * Cancel an existing subscription. It is guaranteed that no callback will happen
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:564:26: warning: sending 'object' risks causing data races; this is an error in the Swift 6 language mode
562 |             continuation.finish()
563 |           case .updated(let object):
564 |             continuation.yield(object)
    |                          |- warning: sending 'object' risks causing data races; this is an error in the Swift 6 language mode
    |                          `- note: task-isolated 'object' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
565 |           }
566 |         }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspace.swift:580:24: warning: sending 'fetchedResult' risks causing data races; this is an error in the Swift 6 language mode
578 |       AsyncStream(bufferingPolicy: bufferingPolicy) { continuation in
579 |         let cancellable = self.subscribe(fetchedResult: fetchedResult) { fetchedResult in
580 |           continuation.yield(fetchedResult)
    |                        |- warning: sending 'fetchedResult' risks causing data races; this is an error in the Swift 6 language mode
    |                        `- note: task-isolated 'fetchedResult' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
581 |         }
582 |         continuation.onTermination = { @Sendable _ in
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1149:26: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
1147 |             continuation.yield(nil)
1148 |           case .initial(let value):
1149 |             continuation.yield(value)
     |                          |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
     |                          `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
1150 |           case .updated(let value):
1151 |             continuation.yield(value)
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1151:26: warning: task-isolated value of type 'Element' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
1149 |             continuation.yield(value)
1150 |           case .updated(let value):
1151 |             continuation.yield(value)
     |                          `- warning: task-isolated value of type 'Element' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
1152 |           }
1153 |         }
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1170:26: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
1168 |             continuation.yield(nil)
1169 |           case .initial(let value):
1170 |             continuation.yield(value)
     |                          |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
     |                          `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
1171 |           case .updated(let value):
1172 |             continuation.yield(value)
/host/spi-builder-workspace/src/sqlite/SQLiteWorkspaceDictionary.swift:1172:26: warning: task-isolated value of type 'Element' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
1170 |             continuation.yield(value)
1171 |           case .updated(let value):
1172 |             continuation.yield(value)
     |                          `- warning: task-isolated value of type 'Element' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
1173 |           }
1174 |         }
[129/132] Wrapping AST for SQLiteDflat for debugging
[130/132] Write Objects.LinkFileList
[131/132] Archiving libSQLiteDflat.a
Build complete! (41.90s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "flatbuffers",
      "requirement" : {
        "revision" : [
          "c92e78a9f841a6110ec27180d68d1f7f2afda21d"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/google/flatbuffers.git"
    },
    {
      "identity" : "swift-atomics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-atomics.git"
    },
    {
      "identity" : "swift-sqlite3-support",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.39.2",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/liuliu/swift-sqlite3-support.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "Dflat",
  "name" : "Dflat",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.14"
    },
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    }
  ],
  "products" : [
    {
      "name" : "Dflat",
      "targets" : [
        "Dflat"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "SQLiteDflat",
      "targets" : [
        "SQLiteDflat"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "_SQLiteDflatOSShim",
      "module_type" : "ClangTarget",
      "name" : "_SQLiteDflatOSShim",
      "path" : "src/sqlite",
      "product_memberships" : [
        "SQLiteDflat"
      ],
      "sources" : [
        "os.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Tests",
      "module_type" : "SwiftTarget",
      "name" : "Tests",
      "path" : "src/tests",
      "sources" : [
        "AsyncTests.swift",
        "ConcurrencyTests.swift",
        "DictionaryTests.swift",
        "ExprTests.swift",
        "FetchTests.swift",
        "ObjectRepositoryTests.swift",
        "SQLiteWorkspaceCRUDTests.swift",
        "SchemaUpgradeTests.swift",
        "SerialTests.swift",
        "SubscribeTests.swift",
        "monster_data_model_generated.swift",
        "monster_generated.swift",
        "monster_mutating_generated.swift",
        "monster_query_generated.swift",
        "monster_v2_data_model_generated.swift",
        "monster_v2_generated.swift",
        "monster_v2_mutating_generated.swift",
        "monster_v2_query_generated.swift",
        "monster_v3_data_model_generated.swift",
        "monster_v3_generated.swift",
        "monster_v3_mutating_generated.swift",
        "monster_v3_query_generated.swift",
        "namespace.swift",
        "orb_weapon_data_model_generated.swift",
        "orb_weapon_generated.swift",
        "orb_weapon_mutating_generated.swift"
      ],
      "target_dependencies" : [
        "SQLiteDflat"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SQLiteDflat",
      "module_type" : "SwiftTarget",
      "name" : "SQLiteDflat",
      "path" : "src/sqlite",
      "product_dependencies" : [
        "SQLite3"
      ],
      "product_memberships" : [
        "SQLiteDflat"
      ],
      "sources" : [
        "OSShim.swift",
        "SQLiteAtom.swift",
        "SQLiteConnection.swift",
        "SQLiteConnectionPool.swift",
        "SQLiteExpr.swift",
        "SQLiteFetchedResult.swift",
        "SQLiteObjectRepository.swift",
        "SQLitePersistenceToolbox.swift",
        "SQLitePublisher.swift",
        "SQLiteQueryBuilder.swift",
        "SQLiteResultPublisher.swift",
        "SQLiteTableSpace.swift",
        "SQLiteTableState.swift",
        "SQLiteTransactionContext.swift",
        "SQLiteValue.swift",
        "SQLiteWorkspace.swift",
        "SQLiteWorkspaceDictionary.swift",
        "SQLiteWorkspaceState.swift",
        "dict/dict_data_model_generated.swift",
        "dict/dict_generated.swift",
        "dict/dict_mutating_generated.swift",
        "dict/dict_query_generated.swift"
      ],
      "target_dependencies" : [
        "Dflat",
        "_SQLiteDflatOSShim"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Dflat",
      "module_type" : "SwiftTarget",
      "name" : "Dflat",
      "path" : "src",
      "product_dependencies" : [
        "FlatBuffers",
        "Atomics"
      ],
      "product_memberships" : [
        "Dflat",
        "SQLiteDflat"
      ],
      "sources" : [
        "Atom.swift",
        "ChangeRequest.swift",
        "Expr.swift",
        "FetchedResult.swift",
        "FlatBuffersCodable.swift",
        "Publisher.swift",
        "QueryBuilder.swift",
        "SQLiteExpr.swift",
        "TransactionContext.swift",
        "Workspace.swift",
        "exprs/Addition.swift",
        "exprs/And.swift",
        "exprs/EqualTo.swift",
        "exprs/Field.swift",
        "exprs/In.swift",
        "exprs/IsNotNull.swift",
        "exprs/IsNull.swift",
        "exprs/LessThan.swift",
        "exprs/LessThanOrEqualTo.swift",
        "exprs/Mod.swift",
        "exprs/Not.swift",
        "exprs/NotEqualTo.swift",
        "exprs/NotIn.swift",
        "exprs/Or.swift",
        "exprs/Subtraction.swift",
        "exprs/Value.swift",
        "exprs/sqlite/SQLiteAddition.swift",
        "exprs/sqlite/SQLiteAnd.swift",
        "exprs/sqlite/SQLiteEqualTo.swift",
        "exprs/sqlite/SQLiteField.swift",
        "exprs/sqlite/SQLiteIn.swift",
        "exprs/sqlite/SQLiteIsNotNull.swift",
        "exprs/sqlite/SQLiteIsNull.swift",
        "exprs/sqlite/SQLiteLessThan.swift",
        "exprs/sqlite/SQLiteLessThanOrEqualTo.swift",
        "exprs/sqlite/SQLiteMod.swift",
        "exprs/sqlite/SQLiteNot.swift",
        "exprs/sqlite/SQLiteNotEqualTo.swift",
        "exprs/sqlite/SQLiteNotIn.swift",
        "exprs/sqlite/SQLiteOr.swift",
        "exprs/sqlite/SQLiteSubtraction.swift",
        "exprs/sqlite/SQLiteValue.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.