The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of ZeeQL3, reference develop (165442), with Swift 6.1 for macOS (SPM) on 11 Sep 2025 15:55:52 UTC.

Swift 6 data race errors: 38

Build Command

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

Build Log

 42 |                         Selector.caseInsensitiveDescending
 43 |     @available(*, deprecated, message: "Use `.other(value)` instead.")
[81/105] Compiling ZeeQL StoreKeyValueCoding.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:32:23: warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 30 |     // backwards compat
 31 |     @available(*, deprecated, message: "Use `.ascending` instead.")
 32 |     public static let CompareAscending  = Selector.ascending
    |                       |- warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareAscending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     @available(*, deprecated, message: "Use `.descending` instead.")
 34 |     public static let CompareDescending = Selector.descending
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:34:23: warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 32 |     public static let CompareAscending  = Selector.ascending
 33 |     @available(*, deprecated, message: "Use `.descending` instead.")
 34 |     public static let CompareDescending = Selector.descending
    |                       |- warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareDescending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     @available(*, deprecated,
 36 |                 message: "Use `.caseInsensitiveAscending` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:37:23: warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 35 |     @available(*, deprecated,
 36 |                 message: "Use `.caseInsensitiveAscending` instead.")
 37 |     public static let CompareCaseInsensitiveAscending =
    |                       |- warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveAscending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |                         Selector.caseInsensitiveAscending
 39 |     @available(*, deprecated,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:41:23: warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 39 |     @available(*, deprecated,
 40 |                 message: "Use `.caseInsensitiveDescending` instead.")
 41 |     public static let CompareCaseInsensitiveDescending =
    |                       |- warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveDescending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |                         Selector.caseInsensitiveDescending
 43 |     @available(*, deprecated, message: "Use `.other(value)` instead.")
[82/105] Compiling ZeeQL AnyOptional.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:32:23: warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 30 |     // backwards compat
 31 |     @available(*, deprecated, message: "Use `.ascending` instead.")
 32 |     public static let CompareAscending  = Selector.ascending
    |                       |- warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareAscending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     @available(*, deprecated, message: "Use `.descending` instead.")
 34 |     public static let CompareDescending = Selector.descending
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:34:23: warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 32 |     public static let CompareAscending  = Selector.ascending
 33 |     @available(*, deprecated, message: "Use `.descending` instead.")
 34 |     public static let CompareDescending = Selector.descending
    |                       |- warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareDescending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     @available(*, deprecated,
 36 |                 message: "Use `.caseInsensitiveAscending` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:37:23: warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 35 |     @available(*, deprecated,
 36 |                 message: "Use `.caseInsensitiveAscending` instead.")
 37 |     public static let CompareCaseInsensitiveAscending =
    |                       |- warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveAscending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |                         Selector.caseInsensitiveAscending
 39 |     @available(*, deprecated,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:41:23: warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 39 |     @available(*, deprecated,
 40 |                 message: "Use `.caseInsensitiveDescending` instead.")
 41 |     public static let CompareCaseInsensitiveDescending =
    |                       |- warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveDescending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |                         Selector.caseInsensitiveDescending
 43 |     @available(*, deprecated, message: "Use `.other(value)` instead.")
[83/105] Compiling ZeeQL Dictionary+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:32:23: warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 30 |     // backwards compat
 31 |     @available(*, deprecated, message: "Use `.ascending` instead.")
 32 |     public static let CompareAscending  = Selector.ascending
    |                       |- warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareAscending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     @available(*, deprecated, message: "Use `.descending` instead.")
 34 |     public static let CompareDescending = Selector.descending
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:34:23: warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 32 |     public static let CompareAscending  = Selector.ascending
 33 |     @available(*, deprecated, message: "Use `.descending` instead.")
 34 |     public static let CompareDescending = Selector.descending
    |                       |- warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareDescending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     @available(*, deprecated,
 36 |                 message: "Use `.caseInsensitiveAscending` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:37:23: warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 35 |     @available(*, deprecated,
 36 |                 message: "Use `.caseInsensitiveAscending` instead.")
 37 |     public static let CompareCaseInsensitiveAscending =
    |                       |- warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveAscending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |                         Selector.caseInsensitiveAscending
 39 |     @available(*, deprecated,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:41:23: warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 39 |     @available(*, deprecated,
 40 |                 message: "Use `.caseInsensitiveDescending` instead.")
 41 |     public static let CompareCaseInsensitiveDescending =
    |                       |- warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveDescending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |                         Selector.caseInsensitiveDescending
 43 |     @available(*, deprecated, message: "Use `.other(value)` instead.")
[84/105] Compiling ZeeQL EquatableType.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:32:23: warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 30 |     // backwards compat
 31 |     @available(*, deprecated, message: "Use `.ascending` instead.")
 32 |     public static let CompareAscending  = Selector.ascending
    |                       |- warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareAscending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     @available(*, deprecated, message: "Use `.descending` instead.")
 34 |     public static let CompareDescending = Selector.descending
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:34:23: warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 32 |     public static let CompareAscending  = Selector.ascending
 33 |     @available(*, deprecated, message: "Use `.descending` instead.")
 34 |     public static let CompareDescending = Selector.descending
    |                       |- warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareDescending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     @available(*, deprecated,
 36 |                 message: "Use `.caseInsensitiveAscending` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:37:23: warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 35 |     @available(*, deprecated,
 36 |                 message: "Use `.caseInsensitiveAscending` instead.")
 37 |     public static let CompareCaseInsensitiveAscending =
    |                       |- warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveAscending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |                         Selector.caseInsensitiveAscending
 39 |     @available(*, deprecated,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:41:23: warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 39 |     @available(*, deprecated,
 40 |                 message: "Use `.caseInsensitiveDescending` instead.")
 41 |     public static let CompareCaseInsensitiveDescending =
    |                       |- warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveDescending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |                         Selector.caseInsensitiveDescending
 43 |     @available(*, deprecated, message: "Use `.other(value)` instead.")
[85/105] Compiling ZeeQL KeyValueStringFormatter.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:32:23: warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 30 |     // backwards compat
 31 |     @available(*, deprecated, message: "Use `.ascending` instead.")
 32 |     public static let CompareAscending  = Selector.ascending
    |                       |- warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareAscending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     @available(*, deprecated, message: "Use `.descending` instead.")
 34 |     public static let CompareDescending = Selector.descending
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:34:23: warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 32 |     public static let CompareAscending  = Selector.ascending
 33 |     @available(*, deprecated, message: "Use `.descending` instead.")
 34 |     public static let CompareDescending = Selector.descending
    |                       |- warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareDescending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     @available(*, deprecated,
 36 |                 message: "Use `.caseInsensitiveAscending` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:37:23: warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 35 |     @available(*, deprecated,
 36 |                 message: "Use `.caseInsensitiveAscending` instead.")
 37 |     public static let CompareCaseInsensitiveAscending =
    |                       |- warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveAscending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |                         Selector.caseInsensitiveAscending
 39 |     @available(*, deprecated,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:41:23: warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | {
 21 |
 22 |   public enum Selector: RawRepresentable, Equatable {
    |               `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
 23 |
 24 |     case ascending
    :
 39 |     @available(*, deprecated,
 40 |                 message: "Use `.caseInsensitiveDescending` instead.")
 41 |     public static let CompareCaseInsensitiveDescending =
    |                       |- warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveDescending' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |                         Selector.caseInsensitiveDescending
 43 |     @available(*, deprecated, message: "Use `.other(value)` instead.")
[86/105] Compiling ZeeQL CodableModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift:101:10: warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 99 |
100 |     /// Should never happen, internal error
101 |     case unexpectedRelationshipType(Relationship)
    |          `- warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
102 |
103 |     /// This can happen for very complex models, or in cases where the types
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:19:10: warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 17 |   enum Error : Swift.Error {
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
    |          `- warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:20:10: warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:21:10: warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
    |          `- warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:23:10: warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 24 |   }
 25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 42 |  * - ``CodeValueAttribute``
 43 |  */
 44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
    |                 `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 45 |                             SmartDescription
 46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |
214 | fileprivate let fakeEntity = ModelEntity(name: "FAKE")
    |                 |- warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'fakeEntity' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |
216 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:468:12: note: class 'ModelEntity' does not conform to the 'Sendable' protocol
466 |  * database.
467 |  */
468 | open class ModelEntity : Entity, Equatable {
    |            `- note: class 'ModelEntity' does not conform to the 'Sendable' protocol
469 |
470 |   /*
[87/105] Compiling ZeeQL CodableModelDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift:101:10: warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 99 |
100 |     /// Should never happen, internal error
101 |     case unexpectedRelationshipType(Relationship)
    |          `- warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
102 |
103 |     /// This can happen for very complex models, or in cases where the types
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:19:10: warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 17 |   enum Error : Swift.Error {
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
    |          `- warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:20:10: warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:21:10: warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
    |          `- warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:23:10: warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 24 |   }
 25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 42 |  * - ``CodeValueAttribute``
 43 |  */
 44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
    |                 `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 45 |                             SmartDescription
 46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |
214 | fileprivate let fakeEntity = ModelEntity(name: "FAKE")
    |                 |- warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'fakeEntity' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |
216 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:468:12: note: class 'ModelEntity' does not conform to the 'Sendable' protocol
466 |  * database.
467 |  */
468 | open class ModelEntity : Entity, Equatable {
    |            `- note: class 'ModelEntity' does not conform to the 'Sendable' protocol
469 |
470 |   /*
[88/105] Compiling ZeeQL CodableModelEntityDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift:101:10: warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 99 |
100 |     /// Should never happen, internal error
101 |     case unexpectedRelationshipType(Relationship)
    |          `- warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
102 |
103 |     /// This can happen for very complex models, or in cases where the types
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:19:10: warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 17 |   enum Error : Swift.Error {
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
    |          `- warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:20:10: warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:21:10: warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
    |          `- warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:23:10: warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 24 |   }
 25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 42 |  * - ``CodeValueAttribute``
 43 |  */
 44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
    |                 `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 45 |                             SmartDescription
 46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |
214 | fileprivate let fakeEntity = ModelEntity(name: "FAKE")
    |                 |- warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'fakeEntity' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |
216 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:468:12: note: class 'ModelEntity' does not conform to the 'Sendable' protocol
466 |  * database.
467 |  */
468 | open class ModelEntity : Entity, Equatable {
    |            `- note: class 'ModelEntity' does not conform to the 'Sendable' protocol
469 |
470 |   /*
[89/105] Compiling ZeeQL CodableModelPostProcessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift:101:10: warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 99 |
100 |     /// Should never happen, internal error
101 |     case unexpectedRelationshipType(Relationship)
    |          `- warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
102 |
103 |     /// This can happen for very complex models, or in cases where the types
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:19:10: warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 17 |   enum Error : Swift.Error {
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
    |          `- warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:20:10: warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:21:10: warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
    |          `- warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:23:10: warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 24 |   }
 25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 42 |  * - ``CodeValueAttribute``
 43 |  */
 44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
    |                 `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 45 |                             SmartDescription
 46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |
214 | fileprivate let fakeEntity = ModelEntity(name: "FAKE")
    |                 |- warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'fakeEntity' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |
216 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:468:12: note: class 'ModelEntity' does not conform to the 'Sendable' protocol
466 |  * database.
467 |  */
468 | open class ModelEntity : Entity, Equatable {
    |            `- note: class 'ModelEntity' does not conform to the 'Sendable' protocol
469 |
470 |   /*
[90/105] Compiling ZeeQL CodableRelationship.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift:101:10: warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 99 |
100 |     /// Should never happen, internal error
101 |     case unexpectedRelationshipType(Relationship)
    |          `- warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
102 |
103 |     /// This can happen for very complex models, or in cases where the types
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:19:10: warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 17 |   enum Error : Swift.Error {
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
    |          `- warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:20:10: warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:21:10: warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
    |          `- warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:23:10: warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 24 |   }
 25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 42 |  * - ``CodeValueAttribute``
 43 |  */
 44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
    |                 `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 45 |                             SmartDescription
 46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |
214 | fileprivate let fakeEntity = ModelEntity(name: "FAKE")
    |                 |- warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'fakeEntity' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |
216 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:468:12: note: class 'ModelEntity' does not conform to the 'Sendable' protocol
466 |  * database.
467 |  */
468 | open class ModelEntity : Entity, Equatable {
    |            `- note: class 'ModelEntity' does not conform to the 'Sendable' protocol
469 |
470 |   /*
[91/105] Compiling ZeeQL EntityPropertyReflectionContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift:101:10: warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 99 |
100 |     /// Should never happen, internal error
101 |     case unexpectedRelationshipType(Relationship)
    |          `- warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
102 |
103 |     /// This can happen for very complex models, or in cases where the types
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:19:10: warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 17 |   enum Error : Swift.Error {
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
    |          `- warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:20:10: warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:21:10: warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
    |          `- warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:23:10: warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 24 |   }
 25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 42 |  * - ``CodeValueAttribute``
 43 |  */
 44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
    |                 `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 45 |                             SmartDescription
 46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |
214 | fileprivate let fakeEntity = ModelEntity(name: "FAKE")
    |                 |- warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'fakeEntity' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |
216 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:468:12: note: class 'ModelEntity' does not conform to the 'Sendable' protocol
466 |  * database.
467 |  */
468 | open class ModelEntity : Entity, Equatable {
    |            `- note: class 'ModelEntity' does not conform to the 'Sendable' protocol
469 |
470 |   /*
[92/105] Compiling ZeeQL CodeAttribute.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift:101:10: warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 99 |
100 |     /// Should never happen, internal error
101 |     case unexpectedRelationshipType(Relationship)
    |          `- warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
102 |
103 |     /// This can happen for very complex models, or in cases where the types
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:19:10: warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 17 |   enum Error : Swift.Error {
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
    |          `- warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:20:10: warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:21:10: warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
    |          `- warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:23:10: warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 24 |   }
 25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 42 |  * - ``CodeValueAttribute``
 43 |  */
 44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
    |                 `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 45 |                             SmartDescription
 46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |
214 | fileprivate let fakeEntity = ModelEntity(name: "FAKE")
    |                 |- warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'fakeEntity' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |
216 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:468:12: note: class 'ModelEntity' does not conform to the 'Sendable' protocol
466 |  * database.
467 |  */
468 | open class ModelEntity : Entity, Equatable {
    |            `- note: class 'ModelEntity' does not conform to the 'Sendable' protocol
469 |
470 |   /*
[93/105] Compiling ZeeQL CodeEntity.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift:101:10: warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 99 |
100 |     /// Should never happen, internal error
101 |     case unexpectedRelationshipType(Relationship)
    |          `- warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
102 |
103 |     /// This can happen for very complex models, or in cases where the types
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:19:10: warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 17 |   enum Error : Swift.Error {
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
    |          `- warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:20:10: warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:21:10: warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
    |          `- warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:23:10: warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 24 |   }
 25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 42 |  * - ``CodeValueAttribute``
 43 |  */
 44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
    |                 `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 45 |                             SmartDescription
 46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |
214 | fileprivate let fakeEntity = ModelEntity(name: "FAKE")
    |                 |- warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'fakeEntity' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |
216 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:468:12: note: class 'ModelEntity' does not conform to the 'Sendable' protocol
466 |  * database.
467 |  */
468 | open class ModelEntity : Entity, Equatable {
    |            `- note: class 'ModelEntity' does not conform to the 'Sendable' protocol
469 |
470 |   /*
[94/105] Compiling ZeeQL CodeRelationship.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift:101:10: warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 99 |
100 |     /// Should never happen, internal error
101 |     case unexpectedRelationshipType(Relationship)
    |          `- warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
102 |
103 |     /// This can happen for very complex models, or in cases where the types
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:19:10: warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 17 |   enum Error : Swift.Error {
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
    |          `- warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:20:10: warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:21:10: warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
    |          `- warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:23:10: warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 24 |   }
 25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 42 |  * - ``CodeValueAttribute``
 43 |  */
 44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
    |                 `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 45 |                             SmartDescription
 46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |
214 | fileprivate let fakeEntity = ModelEntity(name: "FAKE")
    |                 |- warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'fakeEntity' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |
216 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:468:12: note: class 'ModelEntity' does not conform to the 'Sendable' protocol
466 |  * database.
467 |  */
468 | open class ModelEntity : Entity, Equatable {
    |            `- note: class 'ModelEntity' does not conform to the 'Sendable' protocol
469 |
470 |   /*
[95/105] Compiling ZeeQL CodeValueAttribute.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift:101:10: warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 99 |
100 |     /// Should never happen, internal error
101 |     case unexpectedRelationshipType(Relationship)
    |          `- warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
102 |
103 |     /// This can happen for very complex models, or in cases where the types
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:19:10: warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 17 |   enum Error : Swift.Error {
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
    |          `- warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:20:10: warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 18 |     case notImplemented
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:21:10: warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 19 |     case missingDestinationEntity(relationship: Relationship)
 20 |     case reverseRelationshipMissesJoins(relationship: Relationship)
 21 |     case missingPrimaryKey(entity: Entity)
    |          `- warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:23:10: warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 21 |     case missingPrimaryKey(entity: Entity)
 22 |     case couldNotFindOrCreateReverseRelationship
 23 |     case reverseRelationshipHasNoJoins(relationship: Relationship)
    |          `- warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
 24 |   }
 25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 12 |  * so you need to have separate `Relationship` objects for each direction.
 13 |  */
 14 | public protocol Relationship : Property, ExpressionEvaluation,
    |                 `- note: protocol 'Relationship' does not conform to the 'Sendable' protocol
 15 |                                SmartDescription
 16 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 42 |  * - ``CodeValueAttribute``
 43 |  */
 44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
    |                 `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
 45 |                             SmartDescription
 46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 54 |   enum JoinCalculationError : Swift.Error {
 55 |     case toManyHasNoSourceAttribute
 56 |     case toManyCouldNotDeriveTargetAttribute(entityName: String,
    |          `- warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
 57 |                                              column: String,
 58 |                                              sourceAttribute: Attribute,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
 18 |  * involve incomplete attribute sets or a pattern name.
 19 |  */
 20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
    |                 `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
 21 |
 22 |   var name                     : String              { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |
214 | fileprivate let fakeEntity = ModelEntity(name: "FAKE")
    |                 |- warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'fakeEntity' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |
216 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:468:12: note: class 'ModelEntity' does not conform to the 'Sendable' protocol
466 |  * database.
467 |  */
468 | open class ModelEntity : Entity, Equatable {
    |            `- note: class 'ModelEntity' does not conform to the 'Sendable' protocol
469 |
470 |   /*
[96/105] Compiling ZeeQL Logger.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 58 |  * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
 59 |  */
 60 | public var globalZeeQLLogger : ZeeQLLogger = {
    |            |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   #if DEBUG
 62 |     let defaultLevel = ZeeQLLoggerLogLevel.Log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | }
 41 |
 42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
    |             `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
 43 |   case Error
 44 |   case Warn
    :
 88 | #endif
 89 |
 90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
    |                 |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:69:10: warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 67 |   public enum Error : Swift.Error {
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
    |          `- warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 70 |     case CannotCoerceValue(Any.Type, Any?)
 71 |     case EmptyKeyPath
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:70:10: warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
 70 |     case CannotCoerceValue(Any.Type, Any?)
    |          `- warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 71 |     case EmptyKeyPath
 72 |     case CannotTakeValueForKey(String)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:84:10: warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 82 |
 83 |   public enum Error : Swift.Error {
 84 |     case OpenFailed(errorCode: Int32, message: String?,
    |          `- warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 85 |                     path: String, mode: OpenMode)
 86 |   }
 87 |
 88 |   public enum OpenMode {
    |               `- note: consider making enum 'OpenMode' conform to the 'Sendable' protocol
 89 |
 90 |     case readOnly
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift:29:10: warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 27 |     case CannotPrepareSQL(Int32, String?)
 28 |     case RowFetchFailed  (Int32, String?)
 29 |     case BindFailed      (Int32, String?, SQLExpression.BindVariable)
    |          `- warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 30 |   }
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift:107:17: note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 105 |    * @return a List of bind records.
 106 |    */
 107 |   public struct BindVariable {
     |                 `- note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 108 |     public var attribute   : Attribute? = nil
 109 |     public var placeholder = "?"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | // MARK: - Expressions
10 |
11 | open class SQLite3ExpressionFactory: SQLExpressionFactory {
   |            `- note: class 'SQLite3ExpressionFactory' does not conform to the 'Sendable' protocol
12 |
13 |   static let shared = SQLite3ExpressionFactory()
   |              |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |   override open func createExpression(_ entity: Entity?) -> SQLExpression {
[97/105] Compiling ZeeQL OpenDateInterval.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 58 |  * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
 59 |  */
 60 | public var globalZeeQLLogger : ZeeQLLogger = {
    |            |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   #if DEBUG
 62 |     let defaultLevel = ZeeQLLoggerLogLevel.Log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | }
 41 |
 42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
    |             `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
 43 |   case Error
 44 |   case Warn
    :
 88 | #endif
 89 |
 90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
    |                 |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:69:10: warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 67 |   public enum Error : Swift.Error {
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
    |          `- warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 70 |     case CannotCoerceValue(Any.Type, Any?)
 71 |     case EmptyKeyPath
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:70:10: warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
 70 |     case CannotCoerceValue(Any.Type, Any?)
    |          `- warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 71 |     case EmptyKeyPath
 72 |     case CannotTakeValueForKey(String)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:84:10: warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 82 |
 83 |   public enum Error : Swift.Error {
 84 |     case OpenFailed(errorCode: Int32, message: String?,
    |          `- warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 85 |                     path: String, mode: OpenMode)
 86 |   }
 87 |
 88 |   public enum OpenMode {
    |               `- note: consider making enum 'OpenMode' conform to the 'Sendable' protocol
 89 |
 90 |     case readOnly
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift:29:10: warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 27 |     case CannotPrepareSQL(Int32, String?)
 28 |     case RowFetchFailed  (Int32, String?)
 29 |     case BindFailed      (Int32, String?, SQLExpression.BindVariable)
    |          `- warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 30 |   }
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift:107:17: note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 105 |    * @return a List of bind records.
 106 |    */
 107 |   public struct BindVariable {
     |                 `- note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 108 |     public var attribute   : Attribute? = nil
 109 |     public var placeholder = "?"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | // MARK: - Expressions
10 |
11 | open class SQLite3ExpressionFactory: SQLExpressionFactory {
   |            `- note: class 'SQLite3ExpressionFactory' does not conform to the 'Sendable' protocol
12 |
13 |   static let shared = SQLite3ExpressionFactory()
   |              |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |   override open func createExpression(_ entity: Entity?) -> SQLExpression {
[98/105] Compiling ZeeQL Pluralize.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 58 |  * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
 59 |  */
 60 | public var globalZeeQLLogger : ZeeQLLogger = {
    |            |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   #if DEBUG
 62 |     let defaultLevel = ZeeQLLoggerLogLevel.Log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | }
 41 |
 42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
    |             `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
 43 |   case Error
 44 |   case Warn
    :
 88 | #endif
 89 |
 90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
    |                 |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:69:10: warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 67 |   public enum Error : Swift.Error {
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
    |          `- warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 70 |     case CannotCoerceValue(Any.Type, Any?)
 71 |     case EmptyKeyPath
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:70:10: warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
 70 |     case CannotCoerceValue(Any.Type, Any?)
    |          `- warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 71 |     case EmptyKeyPath
 72 |     case CannotTakeValueForKey(String)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:84:10: warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 82 |
 83 |   public enum Error : Swift.Error {
 84 |     case OpenFailed(errorCode: Int32, message: String?,
    |          `- warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 85 |                     path: String, mode: OpenMode)
 86 |   }
 87 |
 88 |   public enum OpenMode {
    |               `- note: consider making enum 'OpenMode' conform to the 'Sendable' protocol
 89 |
 90 |     case readOnly
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift:29:10: warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 27 |     case CannotPrepareSQL(Int32, String?)
 28 |     case RowFetchFailed  (Int32, String?)
 29 |     case BindFailed      (Int32, String?, SQLExpression.BindVariable)
    |          `- warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 30 |   }
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift:107:17: note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 105 |    * @return a List of bind records.
 106 |    */
 107 |   public struct BindVariable {
     |                 `- note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 108 |     public var attribute   : Attribute? = nil
 109 |     public var placeholder = "?"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | // MARK: - Expressions
10 |
11 | open class SQLite3ExpressionFactory: SQLExpressionFactory {
   |            `- note: class 'SQLite3ExpressionFactory' does not conform to the 'Sendable' protocol
12 |
13 |   static let shared = SQLite3ExpressionFactory()
   |              |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |   override open func createExpression(_ entity: Entity?) -> SQLExpression {
[99/105] Compiling ZeeQL SimpleKVC.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 58 |  * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
 59 |  */
 60 | public var globalZeeQLLogger : ZeeQLLogger = {
    |            |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   #if DEBUG
 62 |     let defaultLevel = ZeeQLLoggerLogLevel.Log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | }
 41 |
 42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
    |             `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
 43 |   case Error
 44 |   case Warn
    :
 88 | #endif
 89 |
 90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
    |                 |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:69:10: warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 67 |   public enum Error : Swift.Error {
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
    |          `- warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 70 |     case CannotCoerceValue(Any.Type, Any?)
 71 |     case EmptyKeyPath
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:70:10: warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
 70 |     case CannotCoerceValue(Any.Type, Any?)
    |          `- warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 71 |     case EmptyKeyPath
 72 |     case CannotTakeValueForKey(String)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:84:10: warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 82 |
 83 |   public enum Error : Swift.Error {
 84 |     case OpenFailed(errorCode: Int32, message: String?,
    |          `- warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 85 |                     path: String, mode: OpenMode)
 86 |   }
 87 |
 88 |   public enum OpenMode {
    |               `- note: consider making enum 'OpenMode' conform to the 'Sendable' protocol
 89 |
 90 |     case readOnly
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift:29:10: warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 27 |     case CannotPrepareSQL(Int32, String?)
 28 |     case RowFetchFailed  (Int32, String?)
 29 |     case BindFailed      (Int32, String?, SQLExpression.BindVariable)
    |          `- warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 30 |   }
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift:107:17: note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 105 |    * @return a List of bind records.
 106 |    */
 107 |   public struct BindVariable {
     |                 `- note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 108 |     public var attribute   : Attribute? = nil
 109 |     public var placeholder = "?"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | // MARK: - Expressions
10 |
11 | open class SQLite3ExpressionFactory: SQLExpressionFactory {
   |            `- note: class 'SQLite3ExpressionFactory' does not conform to the 'Sendable' protocol
12 |
13 |   static let shared = SQLite3ExpressionFactory()
   |              |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |   override open func createExpression(_ entity: Entity?) -> SQLExpression {
[100/105] Compiling ZeeQL SmartDescription.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 58 |  * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
 59 |  */
 60 | public var globalZeeQLLogger : ZeeQLLogger = {
    |            |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   #if DEBUG
 62 |     let defaultLevel = ZeeQLLoggerLogLevel.Log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | }
 41 |
 42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
    |             `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
 43 |   case Error
 44 |   case Warn
    :
 88 | #endif
 89 |
 90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
    |                 |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:69:10: warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 67 |   public enum Error : Swift.Error {
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
    |          `- warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 70 |     case CannotCoerceValue(Any.Type, Any?)
 71 |     case EmptyKeyPath
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:70:10: warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
 70 |     case CannotCoerceValue(Any.Type, Any?)
    |          `- warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 71 |     case EmptyKeyPath
 72 |     case CannotTakeValueForKey(String)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:84:10: warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 82 |
 83 |   public enum Error : Swift.Error {
 84 |     case OpenFailed(errorCode: Int32, message: String?,
    |          `- warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 85 |                     path: String, mode: OpenMode)
 86 |   }
 87 |
 88 |   public enum OpenMode {
    |               `- note: consider making enum 'OpenMode' conform to the 'Sendable' protocol
 89 |
 90 |     case readOnly
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift:29:10: warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 27 |     case CannotPrepareSQL(Int32, String?)
 28 |     case RowFetchFailed  (Int32, String?)
 29 |     case BindFailed      (Int32, String?, SQLExpression.BindVariable)
    |          `- warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 30 |   }
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift:107:17: note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 105 |    * @return a List of bind records.
 106 |    */
 107 |   public struct BindVariable {
     |                 `- note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 108 |     public var attribute   : Attribute? = nil
 109 |     public var placeholder = "?"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | // MARK: - Expressions
10 |
11 | open class SQLite3ExpressionFactory: SQLExpressionFactory {
   |            `- note: class 'SQLite3ExpressionFactory' does not conform to the 'Sendable' protocol
12 |
13 |   static let shared = SQLite3ExpressionFactory()
   |              |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |   override open func createExpression(_ entity: Entity?) -> SQLExpression {
[101/105] Compiling ZeeQL SQLite3Adaptor.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 58 |  * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
 59 |  */
 60 | public var globalZeeQLLogger : ZeeQLLogger = {
    |            |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   #if DEBUG
 62 |     let defaultLevel = ZeeQLLoggerLogLevel.Log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | }
 41 |
 42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
    |             `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
 43 |   case Error
 44 |   case Warn
    :
 88 | #endif
 89 |
 90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
    |                 |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:69:10: warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 67 |   public enum Error : Swift.Error {
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
    |          `- warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 70 |     case CannotCoerceValue(Any.Type, Any?)
 71 |     case EmptyKeyPath
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:70:10: warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
 70 |     case CannotCoerceValue(Any.Type, Any?)
    |          `- warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 71 |     case EmptyKeyPath
 72 |     case CannotTakeValueForKey(String)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:84:10: warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 82 |
 83 |   public enum Error : Swift.Error {
 84 |     case OpenFailed(errorCode: Int32, message: String?,
    |          `- warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 85 |                     path: String, mode: OpenMode)
 86 |   }
 87 |
 88 |   public enum OpenMode {
    |               `- note: consider making enum 'OpenMode' conform to the 'Sendable' protocol
 89 |
 90 |     case readOnly
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift:29:10: warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 27 |     case CannotPrepareSQL(Int32, String?)
 28 |     case RowFetchFailed  (Int32, String?)
 29 |     case BindFailed      (Int32, String?, SQLExpression.BindVariable)
    |          `- warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 30 |   }
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift:107:17: note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 105 |    * @return a List of bind records.
 106 |    */
 107 |   public struct BindVariable {
     |                 `- note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 108 |     public var attribute   : Attribute? = nil
 109 |     public var placeholder = "?"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | // MARK: - Expressions
10 |
11 | open class SQLite3ExpressionFactory: SQLExpressionFactory {
   |            `- note: class 'SQLite3ExpressionFactory' does not conform to the 'Sendable' protocol
12 |
13 |   static let shared = SQLite3ExpressionFactory()
   |              |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |   override open func createExpression(_ entity: Entity?) -> SQLExpression {
[102/105] Compiling ZeeQL SQLite3AdaptorChannel.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 58 |  * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
 59 |  */
 60 | public var globalZeeQLLogger : ZeeQLLogger = {
    |            |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   #if DEBUG
 62 |     let defaultLevel = ZeeQLLoggerLogLevel.Log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | }
 41 |
 42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
    |             `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
 43 |   case Error
 44 |   case Warn
    :
 88 | #endif
 89 |
 90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
    |                 |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:69:10: warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 67 |   public enum Error : Swift.Error {
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
    |          `- warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 70 |     case CannotCoerceValue(Any.Type, Any?)
 71 |     case EmptyKeyPath
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:70:10: warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
 70 |     case CannotCoerceValue(Any.Type, Any?)
    |          `- warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 71 |     case EmptyKeyPath
 72 |     case CannotTakeValueForKey(String)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:84:10: warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 82 |
 83 |   public enum Error : Swift.Error {
 84 |     case OpenFailed(errorCode: Int32, message: String?,
    |          `- warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 85 |                     path: String, mode: OpenMode)
 86 |   }
 87 |
 88 |   public enum OpenMode {
    |               `- note: consider making enum 'OpenMode' conform to the 'Sendable' protocol
 89 |
 90 |     case readOnly
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift:29:10: warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 27 |     case CannotPrepareSQL(Int32, String?)
 28 |     case RowFetchFailed  (Int32, String?)
 29 |     case BindFailed      (Int32, String?, SQLExpression.BindVariable)
    |          `- warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 30 |   }
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift:107:17: note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 105 |    * @return a List of bind records.
 106 |    */
 107 |   public struct BindVariable {
     |                 `- note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 108 |     public var attribute   : Attribute? = nil
 109 |     public var placeholder = "?"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | // MARK: - Expressions
10 |
11 | open class SQLite3ExpressionFactory: SQLExpressionFactory {
   |            `- note: class 'SQLite3ExpressionFactory' does not conform to the 'Sendable' protocol
12 |
13 |   static let shared = SQLite3ExpressionFactory()
   |              |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |   override open func createExpression(_ entity: Entity?) -> SQLExpression {
[103/105] Compiling ZeeQL SQLite3Expression.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 58 |  * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
 59 |  */
 60 | public var globalZeeQLLogger : ZeeQLLogger = {
    |            |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   #if DEBUG
 62 |     let defaultLevel = ZeeQLLoggerLogLevel.Log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | }
 41 |
 42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
    |             `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
 43 |   case Error
 44 |   case Warn
    :
 88 | #endif
 89 |
 90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
    |                 |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:69:10: warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 67 |   public enum Error : Swift.Error {
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
    |          `- warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 70 |     case CannotCoerceValue(Any.Type, Any?)
 71 |     case EmptyKeyPath
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:70:10: warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
 70 |     case CannotCoerceValue(Any.Type, Any?)
    |          `- warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 71 |     case EmptyKeyPath
 72 |     case CannotTakeValueForKey(String)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:84:10: warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 82 |
 83 |   public enum Error : Swift.Error {
 84 |     case OpenFailed(errorCode: Int32, message: String?,
    |          `- warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 85 |                     path: String, mode: OpenMode)
 86 |   }
 87 |
 88 |   public enum OpenMode {
    |               `- note: consider making enum 'OpenMode' conform to the 'Sendable' protocol
 89 |
 90 |     case readOnly
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift:29:10: warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 27 |     case CannotPrepareSQL(Int32, String?)
 28 |     case RowFetchFailed  (Int32, String?)
 29 |     case BindFailed      (Int32, String?, SQLExpression.BindVariable)
    |          `- warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 30 |   }
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift:107:17: note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 105 |    * @return a List of bind records.
 106 |    */
 107 |   public struct BindVariable {
     |                 `- note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 108 |     public var attribute   : Attribute? = nil
 109 |     public var placeholder = "?"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | // MARK: - Expressions
10 |
11 | open class SQLite3ExpressionFactory: SQLExpressionFactory {
   |            `- note: class 'SQLite3ExpressionFactory' does not conform to the 'Sendable' protocol
12 |
13 |   static let shared = SQLite3ExpressionFactory()
   |              |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |   override open func createExpression(_ entity: Entity?) -> SQLExpression {
[104/105] Compiling ZeeQL SQLite3ModelFetch.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 58 |  * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
 59 |  */
 60 | public var globalZeeQLLogger : ZeeQLLogger = {
    |            |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   #if DEBUG
 62 |     let defaultLevel = ZeeQLLoggerLogLevel.Log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | }
 41 |
 42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
    |             `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
 43 |   case Error
 44 |   case Warn
    :
 88 | #endif
 89 |
 90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
    |                 |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:69:10: warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 67 |   public enum Error : Swift.Error {
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
    |          `- warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 70 |     case CannotCoerceValue(Any.Type, Any?)
 71 |     case EmptyKeyPath
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:70:10: warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
 70 |     case CannotCoerceValue(Any.Type, Any?)
    |          `- warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 71 |     case EmptyKeyPath
 72 |     case CannotTakeValueForKey(String)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:84:10: warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 82 |
 83 |   public enum Error : Swift.Error {
 84 |     case OpenFailed(errorCode: Int32, message: String?,
    |          `- warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 85 |                     path: String, mode: OpenMode)
 86 |   }
 87 |
 88 |   public enum OpenMode {
    |               `- note: consider making enum 'OpenMode' conform to the 'Sendable' protocol
 89 |
 90 |     case readOnly
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift:29:10: warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 27 |     case CannotPrepareSQL(Int32, String?)
 28 |     case RowFetchFailed  (Int32, String?)
 29 |     case BindFailed      (Int32, String?, SQLExpression.BindVariable)
    |          `- warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 30 |   }
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift:107:17: note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 105 |    * @return a List of bind records.
 106 |    */
 107 |   public struct BindVariable {
     |                 `- note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 108 |     public var attribute   : Attribute? = nil
 109 |     public var placeholder = "?"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | // MARK: - Expressions
10 |
11 | open class SQLite3ExpressionFactory: SQLExpressionFactory {
   |            `- note: class 'SQLite3ExpressionFactory' does not conform to the 'Sendable' protocol
12 |
13 |   static let shared = SQLite3ExpressionFactory()
   |              |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |   override open func createExpression(_ entity: Entity?) -> SQLExpression {
[105/105] Compiling ZeeQL SQLite3SchemaSynchronizationFactory.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 58 |  * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
 59 |  */
 60 | public var globalZeeQLLogger : ZeeQLLogger = {
    |            |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   #if DEBUG
 62 |     let defaultLevel = ZeeQLLoggerLogLevel.Log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
 40 | }
 41 |
 42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
    |             `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
 43 |   case Error
 44 |   case Warn
    :
 88 | #endif
 89 |
 90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
    |                 |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
    |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:69:10: warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 67 |   public enum Error : Swift.Error {
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
    |          `- warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 70 |     case CannotCoerceValue(Any.Type, Any?)
 71 |     case EmptyKeyPath
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:70:10: warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 68 |     case UnsupportedDictionaryKeyType(Any.Type)
 69 |     case CannotCoerceValueForKey(Any.Type, Any?, String)
 70 |     case CannotCoerceValue(Any.Type, Any?)
    |          `- warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 71 |     case EmptyKeyPath
 72 |     case CannotTakeValueForKey(String)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:84:10: warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 82 |
 83 |   public enum Error : Swift.Error {
 84 |     case OpenFailed(errorCode: Int32, message: String?,
    |          `- warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
 85 |                     path: String, mode: OpenMode)
 86 |   }
 87 |
 88 |   public enum OpenMode {
    |               `- note: consider making enum 'OpenMode' conform to the 'Sendable' protocol
 89 |
 90 |     case readOnly
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift:29:10: warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 27 |     case CannotPrepareSQL(Int32, String?)
 28 |     case RowFetchFailed  (Int32, String?)
 29 |     case BindFailed      (Int32, String?, SQLExpression.BindVariable)
    |          `- warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
 30 |   }
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift:107:17: note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 105 |    * @return a List of bind records.
 106 |    */
 107 |   public struct BindVariable {
     |                 `- note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
 108 |     public var attribute   : Attribute? = nil
 109 |     public var placeholder = "?"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | // MARK: - Expressions
10 |
11 | open class SQLite3ExpressionFactory: SQLExpressionFactory {
   |            `- note: class 'SQLite3ExpressionFactory' does not conform to the 'Sendable' protocol
12 |
13 |   static let shared = SQLite3ExpressionFactory()
   |              |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |   override open func createExpression(_ entity: Entity?) -> SQLExpression {
Build complete! (6.10s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "csqlite3",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.3",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ZeeQL/CSQLite3.git"
    }
  ],
  "manifest_display_name" : "ZeeQL3",
  "name" : "ZeeQL3",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ZeeQL",
      "targets" : [
        "ZeeQL"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ZeeQLTests",
      "module_type" : "SwiftTarget",
      "name" : "ZeeQLTests",
      "path" : "Tests/ZeeQLTests",
      "sources" : [
        "AdaptorActiveRecordTestCase.swift",
        "AdaptorOGoTestCase.swift",
        "CodableModelTests.swift",
        "CodeEntityModelTests.swift",
        "CodeObjectModelTests.swift",
        "ContactsDBModel.swift",
        "EquatableTypeTests.swift",
        "FakeAdaptor.swift",
        "FormatterTests.swift",
        "ModelLoaderTests.swift",
        "ModelTests.swift",
        "QualifierEvaluationTests.swift",
        "QualifierParserTests.swift",
        "SQLExpressionTests.swift",
        "SQLite3ActiveRecordTests.swift",
        "SQLite3AdaptorTests.swift",
        "SQLite3CodableTests.swift",
        "SQLite3ExpressionTests.swift",
        "SQLite3ModelTests.swift",
        "SQLite3OGoAdaptorTests.swift",
        "SchemaGenerationTests.swift",
        "SchemaSyncTests.swift"
      ],
      "target_dependencies" : [
        "ZeeQL"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ZeeQL",
      "module_type" : "SwiftTarget",
      "name" : "ZeeQL",
      "path" : "Sources/ZeeQL",
      "product_dependencies" : [
        "CSQLite3"
      ],
      "product_memberships" : [
        "ZeeQL"
      ],
      "sources" : [
        "Access/AccessDataSource.swift",
        "Access/AccessDataSourceError.swift",
        "Access/AccessDataSourceFinders.swift",
        "Access/ActiveDataSource.swift",
        "Access/ActiveRecord.swift",
        "Access/ActiveRecordType.swift",
        "Access/Adaptor.swift",
        "Access/AdaptorChannel.swift",
        "Access/AdaptorChannelPool.swift",
        "Access/AdaptorDataSource.swift",
        "Access/AdaptorError.swift",
        "Access/AdaptorModelFetch.swift",
        "Access/AdaptorOperation.swift",
        "Access/AdaptorQueryColumnRepresentable.swift",
        "Access/AdaptorQueryType.swift",
        "Access/AdaptorRecord.swift",
        "Access/AdaptorRecordSchema.swift",
        "Access/Attribute.swift",
        "Access/AttributeKey.swift",
        "Access/AttributeValue.swift",
        "Access/Codable/AdaptorRecordDecoder.swift",
        "Access/Codable/CodableEntity.swift",
        "Access/Codable/CodableModel.swift",
        "Access/Codable/CodableModelDecoder.swift",
        "Access/Codable/CodableModelEntityDecoder.swift",
        "Access/Codable/CodableModelPostProcessor.swift",
        "Access/Codable/CodableRelationship.swift",
        "Access/Codable/EntityPropertyReflectionContainer.swift",
        "Access/CodeAttribute.swift",
        "Access/CodeEntity.swift",
        "Access/CodeRelationship.swift",
        "Access/CodeValueAttribute.swift",
        "Access/Database.swift",
        "Access/DatabaseChannel.swift",
        "Access/DatabaseChannelBase.swift",
        "Access/DatabaseChannelFetchHelper.swift",
        "Access/DatabaseContext.swift",
        "Access/DatabaseDataSource.swift",
        "Access/DatabaseObject.swift",
        "Access/DatabaseOperation.swift",
        "Access/Entity.swift",
        "Access/FancyModelMaker.swift",
        "Access/Join.swift",
        "Access/MirrorHelpers.swift",
        "Access/Model.swift",
        "Access/ModelLoader.swift",
        "Access/ModelPattern.swift",
        "Access/ModelSQLizer.swift",
        "Access/Property.swift",
        "Access/Relationship.swift",
        "Access/SQLAttributeChange.swift",
        "Access/SQLExpression.swift",
        "Access/SQLExpressionFactory.swift",
        "Access/SQLForeignKey.swift",
        "Access/SQLTableGroups.swift",
        "Access/SchemaGeneration.swift",
        "Access/SchemaSynchronization.swift",
        "Access/SchemaSynchronizationFactory.swift",
        "Access/TypedDatabaseChannel.swift",
        "Access/TypedFetchSpecification.swift",
        "Access/ZeeQLTypes.swift",
        "Control/ArrayDataSource.swift",
        "Control/BooleanQualifier.swift",
        "Control/ComparisonOperation.swift",
        "Control/CompoundQualifier.swift",
        "Control/Constant.swift",
        "Control/DataSource.swift",
        "Control/EntityType+Builder.swift",
        "Control/EntityType.swift",
        "Control/Expression.swift",
        "Control/ExpressionEvaluation.swift",
        "Control/FetchSpecification+Builder.swift",
        "Control/FetchSpecification.swift",
        "Control/GlobalID.swift",
        "Control/Key.swift",
        "Control/KeyComparisonQualifier.swift",
        "Control/KeyValueQualifier.swift",
        "Control/ModelFetchSpecification.swift",
        "Control/NotQualifier.swift",
        "Control/ObjectStore.swift",
        "Control/ObjectTrackingContext.swift",
        "Control/Qualifier.swift",
        "Control/QualifierEvaluation.swift",
        "Control/QualifierParser.swift",
        "Control/QualifierVariable.swift",
        "Control/SQLQualifier.swift",
        "Control/SortOrdering.swift",
        "Control/StoreKeyValueCoding.swift",
        "Foundation/AnyOptional.swift",
        "Foundation/Dictionary+Extensions.swift",
        "Foundation/EquatableType.swift",
        "Foundation/KeyValueStringFormatter.swift",
        "Foundation/Logger.swift",
        "Foundation/OpenDateInterval.swift",
        "Foundation/Pluralize.swift",
        "Foundation/SimpleKVC.swift",
        "Foundation/SmartDescription.swift",
        "SQLite3Adaptor/SQLite3Adaptor.swift",
        "SQLite3Adaptor/SQLite3AdaptorChannel.swift",
        "SQLite3Adaptor/SQLite3Expression.swift",
        "SQLite3Adaptor/SQLite3ModelFetch.swift",
        "SQLite3Adaptor/SQLite3SchemaSynchronizationFactory.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.